commit 5be06c4e085d97bff46ccc3499536c11b5a045c7 Author: Xéfir Destiny Date: Tue Aug 20 13:00:42 2013 +0200 Adding files - Rebirth from a dead project to finish his life in hell diff --git a/bbcode.php b/bbcode.php new file mode 100644 index 0000000..247c264 --- /dev/null +++ b/bbcode.php @@ -0,0 +1,144 @@ +\1', + '
  • \1
  • ', + '\1', + '\1', + '\1', + '\1', + '\1', + '\2', + '\1', + '', + '\1', + '\1', + '\1', + '\2', + 'Image', + '\2', + '\2', + '
    \2
    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '

    \1

    ', + '', + '', + '', + '', + '
    \1
    ', + '
    \1
    ' + ); + + function bbc2html($subject) + { + $codes = array(array(), array()); + preg_match_all('/\[code\](.+)\[\/code\]/Uis', $subject, $codes); + + foreach ($codes[0] as $num => $code) { + $subject = str_replace($code, "[code$num]", $subject); + } + + $subject = preg_replace($this->patterns, $this->replacements, $subject); + + foreach ($codes[1] as $num => $code) { + $subject = str_replace("[code$num]", '
    '.$code.'
    ', $subject); + } + + return $subject; + } + + function get_editor($text='') { + global $mingleforum; + + function mingle_get_editor_mce_external_plugins($plugins) { + $plugins['bbcodev2'] = plugins_url('/js/plugins/bbcodev2/editor_plugin_src.js', __FILE__); + $plugins['emotions'] = plugins_url('/js/plugins/emotions/editor_plugin_src.js', __FILE__); + return $plugins; + } + add_filter('mce_external_plugins', 'mingle_get_editor_mce_external_plugins'); + + ob_start(); + wp_editor($text, 'message', array( + 'wpautop' => false, + 'tinymce' => array( + 'plugins' => 'bbcodev2,emotions', + 'theme_advanced_buttons1' => 'bold,italic,underline,strikethrough,pre,blockquote,spoil,justifyleft,justifycenter,justifyright,justifyfull,bullist,link,unlink,image,forecolor,yt,map,emotions', + 'theme_advanced_buttons2' => '', + 'apply_source_formatting' => false, + 'setup' => 'function (ed) { + ed.addButton("pre", { + title: "'.__("Code").'", + image: "'.$mingleforum->skin_url.'/images/bbc/code.png" + }) + ed.addButton("yt", { + title: "'.__("Embed YouTube Video").'", + image: "'.$mingleforum->skin_url.'/images/bbc/yt.png" + }) + ed.addButton("map", { + title: "'.__("Embed Google Map").'", + image: "'.$mingleforum->skin_url.'/images/bbc/gm.png" + }) + ed.addButton("spoil", { + title: "'.__("Spoiler").'", + image: "'.$mingleforum->skin_url.'/images/bbc/spoil.png" + }) + }' + ) + )); + return ob_get_clean(); + } + + } +} diff --git a/captcha/captcha_code.php b/captcha/captcha_code.php new file mode 100644 index 0000000..1af0aae --- /dev/null +++ b/captcha/captcha_code.php @@ -0,0 +1,49 @@ +font, $code) or die('Error in imagettfbbox function'); + $x = ($width - $textbox[4])/2; + $y = ($height - $textbox[5])/2; + imagettftext($image, $font_size, 0, $x, $y, $text_color, $this->font , $code) or die('Error in imagettftext function'); + /* output captcha image to browser */ + header('Content-Type: image/jpeg'); + imagejpeg($image); + imagedestroy($image); + + } + +} + +$width = isset($_GET['width']) ? $_GET['width'] : '120'; +$height = isset($_GET['height']) ? $_GET['height'] : '40'; +$code = isset($_GET['code']) ? $_GET['code'] : ''; + +if (isset($_GET['code'])) +{ +$captcha = new CaptchaSecurityImages(); +$captcha-> GenerateImage($width,$height,wpf_str_decrypt($code)); +} diff --git a/captcha/monofont.ttf b/captcha/monofont.ttf new file mode 100644 index 0000000..ec6c51b Binary files /dev/null and b/captcha/monofont.ttf differ diff --git a/captcha/shared.php b/captcha/shared.php new file mode 100644 index 0000000..16077ea --- /dev/null +++ b/captcha/shared.php @@ -0,0 +1,95 @@ +options['forum_use_rss']) +{ + $mingleforum->setup_links(); + + if(is_numeric($_GET['topic'])) //is_numeric will prevent SQL injections + $topic = $_GET['topic']; + else + $topic = 'all'; + + if($topic == "all"){ + $posts = $wpdb->get_results("SELECT * FROM {$mingleforum->t_posts} ORDER BY `date` DESC LIMIT 20"); + $title = get_bloginfo('name')." ".__("Forum Feed", "mingleforum").""; + $description = __("Forum Feed", "mingleforum"); + } + else{ + $posts = $wpdb->get_results("SELECT * FROM $mingleforum->t_posts WHERE parent_id = $topic ORDER BY `date` DESC LIMIT 20"); + $description = __("Forum Topic:", "mingleforum")." - ".$mingleforum->get_subject($topic); + $title = get_bloginfo('name')." ".__("Forum", "mingleforum")." - ".__("Topic: ", "mingleforum")." ".$mingleforum->get_subject($topic); + } + $link = $mingleforum->home_url; + + header ("Content-type: application/rss+xml"); + + echo ("\n"); + ?> + + + <?php echo $title; ?> + + + + forum_get_group_from_post($post->parent_id); + $groups = $wpdb->get_var("select usergroups from {$mingleforum->t_forums} where id = {$catid}"); + $groups = maybe_unserialize($groups); + if(empty($groups)) //don't show protected group posts in the feed + { + $link = $mingleforum->get_paged_threadlink($post->parent_id); + $title = $post->subject; + + echo "\n + ".htmlspecialchars($title)."\n + ".htmlspecialchars($mingleforum->output_filter($post->text, ENT_NOQUOTES))."\n + ".htmlspecialchars($link)."\n + feeds@r.us\n + ".date("r", strtotime($post->date))."\n + ".htmlspecialchars($link."&guid=$post->id")." + \n\n"; + } + } + echo " + "; +} +else + echo "".__("Feeds are disabled", "mingleforum").""; diff --git a/fs-admin/fs-admin.php b/fs-admin/fs-admin.php new file mode 100644 index 0000000..d3abbb2 --- /dev/null +++ b/fs-admin/fs-admin.php @@ -0,0 +1,1145 @@ +query("DELETE FROM ".$table_prefix."forum_usergroups WHERE id = {$delete_usrgrp[$i]}"); + $wpdb->query("DELETE FROM ".$table_prefix."forum_usergroup2user WHERE `group` = {$delete_usrgrp[$i]}"); + } + } + return true; + } + return false; + } + function add_usergroup(){ + if(isset($_GET['do']) && $_GET['do'] == "addusergroup" && !isset($_POST['add_usergroup'])){ + include("wpf-add-usergroup.php"); + return false; + } + + global $wpdb, $table_prefix; + $name = isset($_POST['group_name'])?$wpdb->escape($_POST['group_name']):""; + $desc = isset($_POST['group_description'])?$wpdb->escape($_POST['group_description']):""; + if (isset($_POST['add_usergroup'])){ + if($_POST['group_name'] == null || $_POST['group_name'] == "") + return __("You must specify a user group name.", "mingleforum"); + else if($wpdb->get_var("SELECT id FROM ".$table_prefix."forum_usergroups WHERE name = '$name'")) + return __("You have choosen a name that already exists in the database, please specify another", "mingleforum"); + $wpdb->query("INSERT INTO ".$table_prefix."forum_usergroups (name, description) VALUES('$name', '$desc')"); + return __("User Group successfully added.", "mingleforum"); + } + return false; + } + + function add_user_togroup(){ + global $wpdb, $table_prefix, $mingleforum; + if(isset($_GET['do']) && $_GET['do'] == "add_user_togroup" && !isset($_POST['add_user_togroup'])){ + include("wpf-addusers.php"); + return false; + } + $warnings = 0; + $errors = 0; + $added = 0; + if (isset($_POST['add_user_togroup'])){ + $users = explode(",", $_POST['togroupusers']); + + if($_POST['togroupusers'] == ""){ + return __("You haven't specified any user to add:", "mingleforum"); + } + $group = (is_numeric($_POST['usergroup']))?$_POST['usergroup']:"add_user_null"; + if($group == "add_user_null") + return __("You must choose a user group", "mingleforum"); + + foreach($users as $user){ + if($user){ + trim($user); + $id = username_exists($user); + if(!$id){ + $user = htmlentities($user, ENT_QUOTES); + $msg = "".__("Error", "mingleforum")." - ".__("No such user:", "mingleforum")." \"{$user}\"
    "; + ++$errors; + } + elseif($mingleforum->is_user_ingroup($id, $group)){ + $user = htmlentities($user, ENT_QUOTES); + $msg = "".__("Warning", "mingleforum")." - ".__("User", "mingleforum")." \"{$user}\" ".__("is already in this group", "mingleforum")."
    "; + ++$warnings; + } + else{ + $user = htmlentities($user, ENT_QUOTES); + $msg = __("User", "mingleforum")." \"{$user}\" ".__("added successfully", "mingleforum")."
    "; + $sql = "INSERT INTO ".$table_prefix."forum_usergroup2user (user_id, `group`) VALUES('$id', '$group')"; + $wpdb->query($sql); + ++$added; + } + } + } + return + __("Errors:","mingleforum")." $errors, + ".__("Warnings:", "mingleforum")." $warnings, + ".__("Users added:", "mingleforum")." $added +
    -------------------------------
    $msg"; + } + return false; + + } + + function usergroups(){ + global $wpdb, $mingleforum, $table_prefix; + + echo "
    "; + + if($this->delete_usergroups()) + echo '

    ' . __('User Group(s) successfully deleted.', 'mingleforum') . '

    '; + if($msg = $this->add_usergroup()) + echo "

    $msg

    "; + + if($msg = $this->add_user_togroup()) + echo "

    $msg

    "; + if(isset($_GET['do']) && $_GET['do'] == "removemember" && is_numeric($_GET['memberid']) && is_numeric($_GET['groupid'])){ + $wpdb->query("DELETE FROM ".$table_prefix."forum_usergroup2user WHERE user_id = {$_GET['memberid']} AND `group` = {$_GET['groupid']}"); + echo "

    " . __("Member successfully removed.", "mingleforum") . "

    "; + } + if(isset($_GET['do']) && $_GET['do'] == "edit_usergroup"){ + include("wpf-usergroup-edit.php"); + } +$image = WPFURL."images/user.png"; + echo "

    ".__("Mingle Forum >> Manage User Groups", "mingleforum")." ".__("add new", "mingleforum")."

    "; + $usergroups = $mingleforum->get_usergroups(); +/*****************************************/ + if($usergroups){ + echo "
    "; + echo "
    +
    + +
    +
    +
    +
    "; + + foreach($usergroups as $usergroup){ + echo " + + + + + + + "; + + $members = $mingleforum->get_members($usergroup->id); + if($members){ + echo " + "; + } + else{ + echo ""; + echo ""; + + } + echo "
    ".stripslashes($usergroup->name)."".stripslashes($usergroup->description)."
    + + + + + + "; + foreach($members as $member){ + $user = get_userdata($member->user_id); + echo " + + + "; + } + echo " + +
    ".__("Members", "mingleforum")."NameInfo
    ".$user->user_login." (".__("Remove", "mingleforum").")".get_user_meta($member->user_id, "first_name", true)." ".get_user_meta($member->user_id, "last_name", true)."".__("View profile", "mingleforum")."
    ".__("Add members", "mingleforum")."
    +
    ". __("No members in this group", "mingleforum")."
    ".__("Add members", "mingleforum")."


    "; + + } + echo "
    "; + } + + + echo "
    "; + } + + function activate_skin(){ + if (isset($_GET['action']) && $_GET['action'] == "activateskin"){ + $op = get_option('mingleforum_options'); + + $options = array( 'wp_posts_to_forum' => $op['wp_posts_to_forum'], + 'forum_posts_per_page' => $op['forum_posts_per_page'], + 'forum_threads_per_page' => $op['forum_threads_per_page'], + 'forum_require_registration' => $op['forum_require_registration'], + 'forum_show_login_form' => $op['forum_show_login_form'], + 'forum_date_format' => $op['forum_date_format'], + 'forum_use_gravatar' => $op['forum_use_gravatar'], + 'forum_show_bio' => $op['forum_show_bio'], + 'forum_skin' => $_GET['skin'], + 'forum_use_rss' => $op['forum_use_rss'], + 'forum_use_seo_friendly_urls' => $op['forum_use_seo_friendly_urls'], + 'forum_allow_image_uploads' => $op['forum_allow_image_uploads'], + 'notify_admin_on_new_posts' => $op['notify_admin_on_new_posts'], + 'set_sort' => $op['set_sort'], + 'forum_use_spam' => $op['forum_use_spam'], + 'forum_use_bbcode' => $op['forum_use_bbcode'], + 'forum_captcha' => $op['forum_captcha'], + 'hot_topic' => $op['hot_topic'], + 'veryhot_topic' => $op['veryhot_topic'], + 'forum_display_name' => $op['forum_display_name'], + 'level_one' => $op['level_one'], + 'level_two' => $op['level_two'], + 'level_three' => $op['level_three'], + 'level_newb_name' => $op['level_newb_name'], + 'level_one_name' => $op['level_one_name'], + 'level_two_name' => $op['level_two_name'], + 'level_three_name' => $op['level_three_name'], + 'forum_db_version' => $op['forum_db_version'], + 'forum_disabled_cats' => $op['forum_disabled_cats'], + 'allow_user_replies_locked_cats' => $op['allow_user_replies_locked_cats'], + 'forum_posting_time_limit' => $op['forum_posting_time_limit'], + 'forum_hide_branding' => $op['forum_hide_branding'], + 'forum_last_posts' => $op['forum_last_posts'] + ); + + update_option('mingleforum_options', $options); + + return true; + } + return false; + } + function skins(){ + $class = ""; + // Find all skins within directory + // Open a known directory, and proceed to read its contents + if($this->activate_skin()) + echo '

    ' . __('Skin successfully activated.', 'mingleforum') . '

    '; + + $op = get_option('mingleforum_options'); + if (is_dir(SKINDIR)) { + if ($dh = opendir(SKINDIR)) { + $image = WPFURL."images/logomain.png"; + echo "

    ".__("Mingle Forum >> Skin options", "mingleforum")."


    +

    ".__("Get More Skins", "mingleforum")."

    + + + + + + + + + + + "; + while (($file = readdir($dh)) !== false) { + if(filetype(SKINDIR . $file) == "dir" && $file != ".." && $file != "." && substr($file, 0, 1) != "."){ + $p = file_get_contents(SKINDIR.$file."/style.css"); + $class = ($class == "alternate")?"":"alternate"; + + echo " + + + + "; + if($op['forum_skin'] == $file) + echo ""; + else + echo ""; + } + } + } + } + echo "
    ".__("Screenshot", "mingleforum")."".__("Name", "mingleforum")."".__("Version", "mingleforum")."".__("Description", "mingleforum")."".__("Action", "mingleforum")."
    ".$this->get_skinscreenshot($file)."".$this->get_skinmeta('Name', $p)."".$this->get_skinmeta('Version', $p)."".$this->get_skinmeta('Description', $p)."".__("In Use", "mingleforum")."
    ".__("Activate", "mingleforum")."
    "; + + } + // PNG | JPG | GIF | only + function get_skinscreenshot($file){ + $exts = array("png", "jpg", "gif"); + foreach($exts as $ext){ + if(file_exists(SKINDIR."$file/screenshot.$ext")){ + $image = SKINURL."$file/screenshot.$ext"; + return ""; + } + } + return ""; + } + function get_skinmeta($field, $data){ + $match = ''; + if (preg_match("|$field:(.*)|i", $data, $match)) { + $match = $match[1]; + } + return $match; + } + function about(){ + $image = WPFURL."images/logomain.png"; + echo "
    +

    ".__("About Mingle Forum", "mingleforum")."

    + + + + + + +
    ".__("Current Version: ", "mingleforum")."".$this->get_version()."
    +

    ".__("Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script.", "mingleforum")."

    + +
    +
    "; + } + + function get_usercount(){ + global $wpdb, $table_prefix; + return $wpdb->get_var("SELECT count(*) from ".$table_prefix."users"); + } + + function get_dbsize(){ + global $wpdb; + $size = ''; + $res = $wpdb->get_results("SHOW TABLE STATUS"); + foreach($res as $r) + $size += $r->Data_length + $r->Index_length; + + return $this->formatfilesize($size); + } + + function formatfilesize( $data ) { + // bytes + if( $data < 1024 ) { + return $data . " bytes"; + } + // kilobytes + else if( $data < 1024000 ) { + return round( ( $data / 1024 ), 1 ) . "k"; + } + // megabytes + else { + return round( ( $data / 1024000 ), 1 ) . " MB"; + } + + } + + function get_version(){ + $plugin_data = implode('', file(ABSPATH."wp-content/plugins/".WPFPLUGIN."/wpf-main.php")); + $version = ''; + if (preg_match("|Version:(.*)|i", $plugin_data, $version)) { + $version = $version[1]; + } + return $version; + } + function options(){ + if ($this->option_save()) + echo '

    ' . __('Options successfully saved.', 'mingleforum') . '

    '; + global $mingleforum; + $op = get_option('mingleforum_options'); + $image = WPFURL."images/chart.png"; + echo '
    +

    '.__("Mingle Forum", "mingleforum").'


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    '.__("Statistic", "mingleforum").''.__("Value", "mingleforum").'
    '.__("Number of posts:", "mingleforum").''.$mingleforum->num_posts_total().'
    '.__("Number of threads:", "mingleforum").''.$mingleforum->num_threads_total().'
    '.__("Number of users:", "mingleforum").''.$this->get_usercount().'
    '.__("Total database size:", "mingleforum").''.$this->get_dbsize().'
    '.__("Database server:", "mingleforum").''.mysql_get_server_info().'
    '.__("Mingle Forum version:", "mingleforum").''.$this->get_version().'
    '; + $image = WPFURL."images/logomain.png"; + echo '

    '.__("Mingle Forum >> General Options", "mingleforum").'

    '; + echo '
    '; + + if (function_exists('wp_nonce_field')) + wp_nonce_field('mingleforum-manage_option'); + $defStr = __("default ", "mingleforum"); + echo " + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "; + + if (function_exists("gd_info")){ + $gd = gd_info(); + $status = ""; + $lib = "
    ".__("Installed version:", "mingleforum")." {$gd['GD Version']}"; + } + else { + $status = "disabled"; + $lib = "
    ".__("GD Library is not installed", "mingleforum").""; + } + echo " + + + "; + + echo " + + "; + + echo " + + + + + + "; + + echo " + + "; + + echo " + + "; + + echo " + + "; + + echo " + +
    ".__("Option Name", "mingleforum")."".__("Option Input", "mingleforum")."
    ".__("Integrate WordPress Posts with Forum:", "mingleforum")." ($defStr = ".__('Off', 'mingleforum').")
    ".__("Posts per page:", "mingleforum")." ($defStr = 10)
    ".__("Threads per page:", "mingleforum")." ($defStr = 20)
    ".__("Number of posts for Hot Topic:", "mingleforum")." ($defStr = 15)
    ".__("Number of posts for Very Hot Topic:", "mingleforum")." ($defStr = 25)
    ".__("Username Display:", "mingleforum")." + ($defStr = user_login) +
    ".__("New User's Title:", "mingleforum")." ($defStr = ".__('Newbie', 'mingleforum').")
    ".__("User Level 1 Title:", "mingleforum")." ($defStr = ".__('Beginner', 'mingleforum').")
    ".__("User Level 1 Count:", "mingleforum")." ($defStr = ".__('25', 'mingleforum').")
    ".__("User Level 2 Title:", "mingleforum")." ($defStr = ".__('Advanced', 'mingleforum').")
    ".__("User Level 2 Count:", "mingleforum")." ($defStr = ".__('50', 'mingleforum').")
    ".__("User Level 3 Title:", "mingleforum")." ($defStr = ".__('Pro', 'mingleforum').")
    ".__("User Level 3 Count:", "mingleforum")." ($defStr = ".__('100', 'mingleforum').")
    ".__("Notify Admin on new posts:", "mingleforum")." ($defStr = ".__('Off', 'mingleforum').")
    ".__("Show Forum Login Form:", "mingleforum")." ($defStr = ".__('On', 'mingleforum').")
    ".__("Show Avatars in the forum:", "mingleforum")." ($defStr = ".__('On', 'mingleforum').")
    ".__("Allow Images to be uploaded:", "mingleforum")." ($defStr = ".__('Off', 'mingleforum').")
    ".__("Show users Signature at the bottom of posts:", "mingleforum")." ($defStr = ".__('On', 'mingleforum').")
    ".__("Use Forum RSS:", "mingleforum")." ($defStr = ".__('On', 'mingleforum').")
    ".__("Use SEO friendly URLs:", "mingleforum")."
    ".__("IMPORTANT: Leave this option off if your permalinks are set to 'default'", "mingleforum")."
    ($defStr = ".__('Off', 'mingleforum').")
    ".__("Registration required to post:", "mingleforum")." ($defStr = ".__('On', 'mingleforum').")
    ".__("Use Captcha for unregistered users:", "mingleforum")." (".__("Requires ", "mingleforum")."GD library - ".__("If you have 'Registration required to post' above enabled, leave this off", "mingleforum").") $lib
    ".__("Date format:", "mingleforum")."

    ".__("Default date:", "mingleforum")." \"F j, Y, H:i\".
    ".__("Check ", "mingleforum")."http://www.php.net ".__("for date formatting.", "mingleforum")."

    ".__("Closed Categories (Admin posting only):", "mingleforum")."
    ".__("Comma separated list of Category ID's (Ex: 1, 2, 3)", "mingleforum")."
    ".__("Users can reply in locked categories", "mingleforum")." ($defStr = ".__('Off', 'mingleforum').")
    ".__("Time limit between posting:", "mingleforum")."
    ".__("Prevent lots of SPAM by making users wait a time period between posts.", "mingleforum")."
    ".__('seconds', 'mingleforum')."
    ".__("Number of last posts on home:", "mingleforum")."
    ".__("0 to disable", "mingleforum")."
    ".__("Disable Branding:", "mingleforum")." ($defStr = ".__('Off', 'mingleforum').")
    + + cartpauj.com +
    +
    "; + + } + + function option_save(){ + if (isset($_POST['mingleforum_option_save'])) { + $op = get_option('mingleforum_options'); + global $wpdb; + $options = array( 'wp_posts_to_forum' => $_POST['wp_posts_to_forum'], + 'forum_posts_per_page' => $wpdb->escape($_POST['forum_posts_per_page']), + 'forum_threads_per_page' => $wpdb->escape($_POST['forum_threads_per_page']), + 'forum_require_registration' => $_POST['forum_require_registration'], + 'forum_show_login_form' => $_POST['forum_show_login_form'], + 'forum_date_format' => $wpdb->escape($_POST['forum_date_format']), + 'forum_use_gravatar' => $_POST['forum_use_gravatar'], + 'forum_show_bio' => $_POST['forum_show_bio'], + 'forum_skin' => $op['forum_skin'], + 'forum_use_rss' => $_POST['forum_use_rss'], + 'forum_use_seo_friendly_urls' => $_POST['forum_use_seo_friendly_urls'], + 'forum_allow_image_uploads' => $_POST['forum_allow_image_uploads'], + 'notify_admin_on_new_posts' => $_POST['notify_admin_on_new_posts'], + 'set_sort' => $op['set_sort'], + 'forum_use_spam' => $_POST['forum_use_spam'], + 'forum_use_bbcode' => $_POST['forum_use_bbcode'], + 'forum_captcha' => $_POST['forum_captcha'], + 'hot_topic' => $wpdb->escape($_POST['hot_topic']), + 'veryhot_topic' => $wpdb->escape($_POST['veryhot_topic']), + 'forum_display_name' => $_POST['forum_display_name'], + 'level_one' => $wpdb->escape($_POST['level_one']), + 'level_two' => $wpdb->escape($_POST['level_two']), + 'level_three' => $wpdb->escape($_POST['level_three']), + 'level_newb_name' => $wpdb->escape($_POST['level_newb_name']), + 'level_one_name' => $wpdb->escape($_POST['level_one_name']), + 'level_two_name' => $wpdb->escape($_POST['level_two_name']), + 'level_three_name' => $wpdb->escape($_POST['level_three_name']), + 'forum_db_version' => $op['forum_db_version'], + 'forum_disabled_cats' => explode(",",$wpdb->escape($_POST['forum_disabled_cats'])), + 'allow_user_replies_locked_cats' => $_POST['allow_user_replies_locked_cats'], + 'forum_posting_time_limit' => $wpdb->escape($_POST['forum_posting_time_limit']), + 'forum_hide_branding' => $_POST['forum_hide_branding'], + 'forum_last_posts' => $wpdb->escape($_POST['forum_last_posts']) + ); + + update_option('mingleforum_options', $options); + + return true; + } + return false; + } + + function delete_forum_group(){ + if(isset($_POST['delete_forum_groups'])){ + global $wpdb, $table_prefix; + $msg = ""; + $table_forums = $table_prefix."forum_forums"; + $table_threads = $table_prefix."forum_threads"; + $table_posts = $table_prefix."forum_posts"; + $thread_count = 0; + $post_count = 0; + $forum_count = 0; + + $groups = $_POST['delete_groups']; + $group_num = count($groups); + + // Delete marked groups + for($i = 0; $i < $group_num; $i++){ + + // Get all forums + $forumsb = $wpdb->get_results("select id from $table_forums where parent_id = {$groups[$i]}"); + + // Loop trough the forums + foreach($forumsb as $forum){ + + // Get all threads + $threads = $wpdb->get_results("select id from $table_threads where parent_id = $forum->id"); + + // Delete threads + $thread_count += $wpdb->query("DELETE FROM $table_threads WHERE parent_id = $forum->id"); + + // Loop through the threads + foreach($threads as $thread){ + + // Delete posts + $post_count += $wpdb->query("DELETE FROM $table_posts WHERE parent_id = $thread->id"); + } + // Delete forums + $forum_count += $wpdb->query("DELETE FROM $table_forums WHERE parent_id = {$groups[$i]}"); + } + // Delete the group + $forum_count += $wpdb->query("DELETE FROM $table_forums WHERE id = {$groups[$i]}"); + } + + $msg .= __("Forums deleted:", "mingleforum")." ".$forum_count."
    " + .__("Threads deleted:", "mingleforum")." ".$thread_count."
    " + .__("Posts deleted:", "mingleforum")." ".$post_count."
    "; + + return $msg; + } + return false; + } + + function edit_forum_group(){ + if(isset($_GET['do']) && $_GET['do'] == "editgroup"){ + include("wpf-edit-forum-group.php"); + } + } + function add_group(){ + if(isset($_POST['add_group_submit'])){ + global $wpdb, $table_prefix; + + $add_group_description = $wpdb->escape($_POST['add_group_description']); + $add_group_name = $wpdb->escape($_POST['add_group_name']); + + if($add_group_name == "") + return __("You must enter a name", "mingleforum"); + if($wpdb->get_var("SELECT id FROM ".$table_prefix."forum_forums WHERE name = '$add_group_name'")) + return __("You have choosen a name that already exists in the database, please specify another", "mingleforum"); + + $max = $wpdb->get_var("SELECT MAX(sort) from ".$table_prefix."forum_forums") + 1; + + $wpdb->query("INSERT INTO ".$table_prefix."forum_forums (name, description, sort) + VALUES('$add_group_name', '$add_group_description', '$max')"); + + return __("Category added successfully", "mingleforum"); + } + return false; + } + + function add_forum(){ + if(isset($_POST['add_forum_submit'])){ + global $wpdb, $table_prefix; + $add_forum_description = $wpdb->escape(strip_tags($_POST['add_forum_description'])); + $add_forum_name = $wpdb->escape(strip_tags($_POST['add_forum_name'])); + $add_forum_group_id = $wpdb->escape($_POST['add_forum_group_id']); + if($_POST['add_forum_group_id'] == "add_forum_null") + return __("You must select a category", "mingleforum"); + + if($_POST['add_forum_name'] == "") + return __("You must enter a name", "mingleforum"); + + if($wpdb->get_var("select id from ".$table_prefix."forum_forums where name = '$add_forum_name' and parent_id = $add_forum_group_id")) + return __("You have choosen a forum name that already exists in this group, please specify another", "mingleforum"); + + $max = $wpdb->get_var("SELECT MAX(sort) from ".$table_prefix."forum_forums WHERE parent_id = $add_forum_group_id") + 1; + + $wpdb->query("INSERT INTO ".$table_prefix."forum_forums (name, description, parent_id, sort) + VALUES('$add_forum_name', '$add_forum_description', '$add_forum_group_id', '$max')"); + + return __("Forum added successfully", "mingleforum"); + } + return false; + } + + function subforums($forumid, $level = 0) { + global $mingleforum; + $forums = $mingleforum->get_forums($forumid); + + if($forums){ + foreach($forums as $forum){ + $up_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=forum_up&id=$forum->id"; + $down_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=forum_down&id=$forum->id"; + $edit_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=editgroup&groupid=$forum->id"; + $sub_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=addforum&groupid=$forum->id"; + + echo " + + "; + + for ($i = 0; $i < $level; $i++) { + echo " -- "; + } + + echo " -- ".stripslashes($forum->name)." + | + ".stripslashes($forum->description)." + ".__("Modify", "mingleforum")." | ".__("Add forum", "mingleforum")." + "; + + $this->subforums($forum->id, ++$level); + $level = 0; + } // foreach($forums as $forum) + } // if($forums) + } + +function structure(){ + global $mingleforum; + if($msg = $this->delete_forum_group()) + echo "

    $msg

    "; + if($msg = $this->move_up_down()) + echo "

    $msg

    "; + if($msg = $this->add_group()) + echo "

    $msg

    "; + if($msg = $this->add_forum()) + echo "

    $msg

    "; + + if(isset($_GET['do']) && $_GET['do'] == "addforum") + include('wpf-add-forum.php'); + + // Check if group/forum update is nessesrary + $image = WPFURL."images/table.png"; + $this->edit_forum_group(); + echo "
    "; + echo "

    ".__("Mingle Forum >> Categories and Forums ", "mingleforum")."

    "; + + + + $groups = $mingleforum->get_forums(); + + echo "".__("add new", "mingleforum").""; + + echo "
    "; + + foreach($groups as $group){ + $up_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=group_up&id=$group->id"; + $down_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=group_down&id=$group->id"; + $edit_link = "admin.php?page=mfstructure&mingleforum_action=structure&do=editgroup&groupid=$group->id"; + + echo ""; + echo " + + + + + + "; + + $this->subforums($group->id); + + echo " + + + +
    ".stripslashes($group->name)." ".__("Modify", "mingleforum")." |
    ".__("Add forum", "mingleforum")."

    "; + + } // foreach($groups as $group) + + + + echo "
    "; + +} + function move_up_down(){ + global $wpdb, $table_prefix; + $msg = ""; + if(isset($_GET['do'], $_GET['id']) && is_numeric($_GET['id'])){ + switch($_GET['do']){ +/*------------------------------------------------------------------------------------------------------------------------*/ + case "group_down": + $ginfo = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE id = '".($_GET['id']*1)."'", ARRAY_A); + $above = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE sort < '".$ginfo['sort']."' ORDER BY sort DESC", ARRAY_A); + if ($above['id']>0){ + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$above['sort']."' WHERE id = '".($_GET['id']*1)."'"); + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$ginfo['sort']."' WHERE id = '".$above['id']."'"); + } + $msg = __("Group Moved Down", "mingleforum"); + break; +/*------------------------------------------------------------------------------------------------------------------------*/ + case "forum_down": + $ginfo = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE id = '".($_GET['id']*1)."'", ARRAY_A); + $above = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE parent_id = '".$ginfo['parent_id']."' && sort < '".$ginfo['sort']."' ORDER BY sort DESC", ARRAY_A); + if ($above['id']>0){ + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$above['sort']."' WHERE id = '".($_GET['id']*1)."'"); + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$ginfo['sort']."' WHERE id = '".$above['id']."'"); + } + $msg = __("Forum Moved Down", "mingleforum"); + break; +/*------------------------------------------------------------------------------------------------------------------------*/ + case "group_up": + $ginfo = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE id = '".($_GET['id']*1)."'", ARRAY_A); + $above = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE sort > '".$ginfo['sort']."' ORDER BY sort ASC", ARRAY_A); + if ($above['id']>0){ + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$above['sort']."' WHERE id = '".($_GET['id']*1)."'"); + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$ginfo['sort']."' WHERE id = '".$above['id']."'"); + } + $msg = __("Group Moved Up", "mingleforum"); + break; +/*------------------------------------------------------------------------------------------------------------------------*/ + case "forum_up": + $ginfo = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE id = '".($_GET['id']*1)."'", ARRAY_A); + $above = $wpdb->get_row("SELECT * FROM {$table_prefix}forum_forums WHERE parent_id = '".$ginfo['parent_id']."' && sort > '".$ginfo['sort']."' ORDER BY sort ASC", ARRAY_A); + if ($above['id']>0){ + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$above['sort']."' WHERE id = '".($_GET['id']*1)."'"); + $wpdb->query("UPDATE {$table_prefix}forum_forums SET sort = '".$ginfo['sort']."' WHERE id = '".$above['id']."'"); + } + $msg = __("Forum Moved Up", "mingleforum"); + break; +/*------------------------------------------------------------------------------------------------------------------------*/ + } + return $msg; + + } + return false; + } + function update_usergroups($new_groups, $group_id){ + global $wpdb, $table_prefix; + $new_groups = maybe_serialize($new_groups); + $wpdb->query("UPDATE ".$table_prefix."forum_forums SET usergroups = '$new_groups' WHERE id = $group_id"); + } + + function update_usercanpost($new_groups, $group_id){ + global $wpdb, $table_prefix; + $new_groups = maybe_serialize($new_groups); + $wpdb->query("UPDATE ".$table_prefix."forum_forums SET usercanpost = '$new_groups' WHERE id = $group_id"); + } + + function get_usersgroups_with_access_to_group($groupid){ + global $wpdb, $table_prefix; + $string = $wpdb->get_var("select usergroups from ".$table_prefix."forum_forums where id = $groupid"); + return maybe_unserialize( $string ); + } + + function get_usersgroups_with_access_to_post($groupid){ + global $wpdb, $table_prefix; + $string = $wpdb->get_var("select usercanpost from ".$table_prefix."forum_forums where id = $groupid"); + return maybe_unserialize( $string ); + } + + function edit_moderator(){ + if(isset($_POST['update_mod'])){ + $forums = (isset($_POST['mod_forum_id']))?$_POST['mod_forum_id']:array(); + $forums = maybe_unserialize($forums); + + $global = (isset($_POST['mod_global']))?true:false; + $user_id = $_POST['update_mod_user_id']; + if($global){ + update_user_meta($user_id, "wpf_moderator", "mod_global"); + } + else + update_user_meta($user_id, "wpf_moderator", $forums); + + if(empty($forums)) + return __('Moderator successfully removed.', 'mingleforum'); + else + return __('Moderator successfully saved.', 'mingleforum'); + } + if(isset($_POST['delete_mod'])){ + $user_id = $_POST['update_mod_user_id']; + if(delete_user_meta($user_id, "wpf_moderator")) + return __('Moderator successfully removed.', 'mingleforum'); + else + return __('Moderator NOT removed.', 'mingleforum'); + } + + return false; + } + function add_moderator(){ + if(isset($_POST['add_mod_submit'])){ + $user_id = $_POST['addmod_user_id']; + $forums = (isset($_POST['mod_forum_id']))?$_POST['mod_forum_id']:array(); + $forums = maybe_unserialize($forums); + $global = (isset($_POST['mod_global']))?true:false; + if($user_id == "add_mod_null") + return __("You must select a user", "mingleforum"); + + if($global){ + update_user_meta($user_id, "wpf_moderator", "mod_global"); + return __("Global Moderator added successfully", "mingleforum"); + } + else + update_user_meta($user_id, "wpf_moderator", $forums); + return __("Moderator added successfully", "mingleforum"); + } + return false; + } + function moderators(){ + global $mingleforum; + + $groups = $mingleforum->get_forums(); + + if($msg = $this->edit_moderator()) + echo "

    $msg

    "; + + if($msg = $this->add_moderator()) + echo "

    $msg

    "; + echo "
    "; + + if(isset($_GET['do']) && $_GET['do'] == "add_moderator"){ + include('wpf-moderator.php'); + } + $mods = $mingleforum->get_moderators(); + $image = WPFURL."images/user.png"; + echo "

    ".__("Mingle Forum >> Manage Moderators", "mingleforum")." (".__("add new", "mingleforum").")

    "; + + if($mods){ + foreach($mods as $mod){ + echo "
    + + + + + + + + + + + +
    $mod->user_login".__("Currently moderating", "mingleforum")."

    + +
    "; + if(get_user_meta($mod->user_id, "wpf_moderator", true) == "mod_global") + $global_checked = "checked='checked'"; + else + $global_checked = ""; + + echo "

    ".__("Global moderator: (User can moderate all forums)", "mingleforum")."

    "; + foreach($groups as $group){ + $forums = $mingleforum->get_forums($group->id); + echo "

    ".stripslashes($group->name)."

    "; + foreach($forums as $forum){ + if($mingleforum->is_moderator($mod->user_id, $forum->id)) + $checked = "checked='checked'"; + else + $checked = ""; + echo "

    $forum->name

    + "; + } + } + echo "

    "; + } + } + else + echo "

    ".__("No moderators yet", "mingleforum")."

    "; + echo "
    "; + } + + function convert_moderators(){ + global $wpdb; + if(!get_option('wpf_mod_option_vers')){ + $mods = $wpdb->get_results("SELECT user_id, user_login, meta_value FROM $wpdb->usermeta + INNER JOIN $wpdb->users ON $wpdb->usermeta.user_id=$wpdb->users.ID WHERE meta_key = 'moderator' AND meta_value <> ''"); + foreach($mods as $mod){ + $string = explode(",", substr_replace($mod->meta_value, "", 0, 1)); + update_user_meta($mod->user_id, 'wpf_moderator', maybe_serialize($string)); + update_option('wpf_mod_option_vers', '2'); + } + } + else echo "Moderators updated"; + + } + + function ads(){ + global $mingleforum; + $image = WPFURL."images/logomain.png"; + if($this->save_mf_ads()) + { + ?> +

    + +
    +

    > options", "mingleforum"); ?>

    +
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + ads_options['mf_ad_above_forum_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-above-forum +
    + ads_options['mf_ad_below_forum_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-below-forum +
    + ads_options['mf_ad_above_branding_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-above-branding +
    + ads_options['mf_ad_above_info_center_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-above-info-center +
    + ads_options['mf_ad_above_breadcrumbs_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-above-breadcrumbs +
    + ads_options['mf_ad_above_quick_reply_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-above-quick-reply +
    + ads_options['mf_ad_below_first_post_on']){echo 'checked="checked"';} ?> /> +
    +
    + div.mf-ad-below-first-post +
    +
    +
    + +
    + + + +
    +
    +
    + ads_options = array( 'mf_ad_above_forum_on' => $_POST['mf_ad_above_forum_on'], + 'mf_ad_above_forum' => $_POST['mf_ad_above_forum_text'], + 'mf_ad_below_forum_on' => $_POST['mf_ad_below_forum_on'], + 'mf_ad_below_forum' => $_POST['mf_ad_below_forum_text'], + 'mf_ad_above_branding_on' => $_POST['mf_ad_above_branding_on'], + 'mf_ad_above_branding' => $_POST['mf_ad_above_branding_text'], + 'mf_ad_above_info_center_on' => $_POST['mf_ad_above_info_center_on'], + 'mf_ad_above_info_center' => $_POST['mf_ad_above_info_center_text'], + 'mf_ad_above_quick_reply_on' => $_POST['mf_ad_above_quick_reply_on'], + 'mf_ad_above_quick_reply' => $_POST['mf_ad_above_quick_reply_text'], + 'mf_ad_above_breadcrumbs_on' => $_POST['mf_ad_above_breadcrumbs_on'], + 'mf_ad_above_breadcrumbs' => $_POST['mf_ad_above_breadcrumbs_text'], + 'mf_ad_below_first_post_on' => $_POST['mf_ad_below_first_post_on'], + 'mf_ad_below_first_post' => $_POST['mf_ad_below_first_post_text'], + 'mf_ad_custom_css' => strip_tags($_POST['mf_ad_custom_css']) + ); + update_option('mingleforum_ads_options', $mingleforum->ads_options); + return true; + } + return false; + } +}// End class diff --git a/fs-admin/wpf-add-forum.php b/fs-admin/wpf-add-forum.php new file mode 100644 index 0000000..26d3ff7 --- /dev/null +++ b/fs-admin/wpf-add-forum.php @@ -0,0 +1,35 @@ +get_groupname($groupmane)); + $groupname = empty($groupname) ? __("Add category", "mingleforum") : __("Add forum to", "mingleforum").' "'.$groupname.'"'; + echo "

    $groupname

    "; + + echo "
    "; + echo " + + + + + + + + + "; + + $gr_id = (isset($_GET['groupid']) && is_numeric($_GET['groupid']))?$_GET['groupid']:0; + echo " + + + + "; + echo "
    ".__("Name:", "mingleforum")."
    ".__("Description:", "mingleforum")."
    "; +/**********************************************************/ +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/fs-admin/wpf-add-usergroup.php b/fs-admin/wpf-add-usergroup.php new file mode 100644 index 0000000..ba418d6 --- /dev/null +++ b/fs-admin/wpf-add-usergroup.php @@ -0,0 +1,32 @@ +

    "; +echo "

    ".__("Add User Group", "mingleforum")."

    "; +echo '
    '; +if (function_exists('wp_nonce_field')) + wp_nonce_field('mingleforum-add_usergroup'); + echo " + + + + + + + + + + + + + +
    NameDescription
    +
    "; +/*********************************************************************/ +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/fs-admin/wpf-addusers.php b/fs-admin/wpf-addusers.php new file mode 100644 index 0000000..e8a9cc2 --- /dev/null +++ b/fs-admin/wpf-addusers.php @@ -0,0 +1,41 @@ +get_usergroups(); +$image = WPFURL."images/user.png"; + +echo "
    +

    ".__("Add users", "mingleforum")."

    "; +echo "
    + + + + + + + + + + + + + + +
    User names User group

    + separate user names by comma sign
    "; echo "
    +
    +
    "; +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/fs-admin/wpf-edit-forum-group.php b/fs-admin/wpf-edit-forum-group.php new file mode 100644 index 0000000..7660d3f --- /dev/null +++ b/fs-admin/wpf-edit-forum-group.php @@ -0,0 +1,143 @@ +escape($_POST['edit_group_name']):""; + $edit_group_description = isset($_POST['edit_group_description'])?$wpdb->escape($_POST['edit_group_description']):""; + $edit_group_id = isset($_POST['edit_group_id'])?$_POST['edit_group_id']:""; + + if($_POST['edit_group_name'] == "") + echo "

    ".__("You must specify a forum name", "mingleforum")."

    "; + + global $wpdb, $table_prefix; + $wpdb->query("UPDATE ".$table_prefix."forum_forums SET name = '$edit_group_name', description = '$edit_group_description' WHERE id = $edit_group_id" ); + + $this->update_usergroups($usergroups, $edit_group_id); + $this->update_usercanpost($usercanpost, $edit_group_id); + echo "

    ".__("Forum updated successfully", "mingleforum")."

    "; +} + +if(($_GET['do'] == "editgroup") && (!isset($_POST['edit_save_group']))){ + $gr_id = (is_numeric($_GET['groupid']))?$_GET['groupid']:0; + global $mingleforum; + $usergroups = $mingleforum->get_usergroups(); + $usergroups_with_access = $this->get_usersgroups_with_access_to_group($gr_id); + $usergroups_can_post = $this->get_usersgroups_with_access_to_post($gr_id); + $group_name = stripslashes($mingleforum->get_groupname($gr_id)); + global $wpdb, $table_prefix; + + echo "

    ".__("Edit forum", "mingleforum")." \"$group_name\"

    "; + + echo "
    "; + + echo " + + + + + + + + + + + + + + + + + + + + + + "; + + echo "
    ".__("Name:", "mingleforum")."
    ".__("Description", "mingleforum")."
    ".__("User Groups:", "mingleforum").""; + + echo "".__("Members of the checked User Groups have access to the forums in this category:", "mingleforum")." "; + if($usergroups){ + $i = 0; + echo ""; + echo ""; + + foreach($usergroups as $usergroup){ + $col = 4; + if($mingleforum->array_search($usergroup->id, $usergroups_with_access)) + $checked = "checked='checked'"; + else + $checked = ""; + $e = "

    ".stripslashes($usergroup->name)."

    \n\r"; + + if($i == 0){ + echo ""; + $i = 0; + } + + } + echo "
    $e"; + ++$i; + } + elseif($i < $col){ + echo "$e"; + ++$i; + } + else{ + echo "$e
    "; + } + + else + echo __("There are no User Groups", "mingleforum"); + + + echo "
    ".__("User Groups:", "mingleforum").""; + + echo "".__("Members of the checked User Groups can post to the forums in this category:", "mingleforum")." "; + if($usergroups){ + $i = 0; + echo ""; + echo ""; + + foreach($usergroups as $usergroup){ + $col = 4; + $checked = ""; + if($mingleforum->array_search($usergroup->id, $usergroups_can_post)) + $checked = "checked='checked'"; + $e = "

    ".stripslashes($usergroup->name)."

    \n\r"; + + if($i == 0){ + echo ""; + $i = 0; + } + + } + echo "
    $e"; + ++$i; + } + elseif($i < $col){ + echo "$e"; + ++$i; + } + else{ + echo "$e
    "; + } + + else + echo __("There are no User Groups", "mingleforum"); + + + echo "
    "; + + echo "
    "; + +} + +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/fs-admin/wpf-moderator.php b/fs-admin/wpf-moderator.php new file mode 100644 index 0000000..bae115a --- /dev/null +++ b/fs-admin/wpf-moderator.php @@ -0,0 +1,43 @@ +get_users(); +$groups = $mingleforum->get_forums(); +$image = WPFURL."images/user.png"; +echo "

    ".__("Add moderator", "mingleforum")."

    +
    + + + + + + + + + + + + + +
    UserModerate
    + "; + echo ""; + echo "

    ".__("Global moderator: (User can moderate all forums)", "mingleforum")."

    "; + foreach($groups as $group){ + $forums = $mingleforum->get_forums($group->id); + echo "

    ".stripslashes($group->name)."

    "; + foreach($forums as $forum){ + echo "

    $forum->name

    "; + } + } + echo "
    + cartpauj.com
    "; +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/fs-admin/wpf-usergroup-edit.php b/fs-admin/wpf-usergroup-edit.php new file mode 100644 index 0000000..31eb3c5 --- /dev/null +++ b/fs-admin/wpf-usergroup-edit.php @@ -0,0 +1,52 @@ +escape($_POST['edit_usergroup_name']); + $edit_usergroup_description = $wpdb->escape($_POST['edit_usergroup_description']); + $edit_usergroup_id = $wpdb->escape($_POST['edit_usergroup_id']); + + if(!$edit_usergroup_name) + echo "

    ".__("You must specify a name for the User Group", "mingleforum")."

    "; + + else if($wpdb->get_var("SELECT id FROM ".$table_prefix."forum_usergroups WHERE name = '$edit_usergroup_name' AND id <> $edit_usergroup_id")) + echo "

    ".__("You have choosen a name that already exists in the database, please specify another", "mingleforum")."

    "; + + else{ + $wpdb->query("UPDATE ".$table_prefix."forum_usergroups SET name = '$edit_usergroup_name', description = '$edit_usergroup_description' WHERE id = $edit_usergroup_id" ); + echo "

    ".__("User Group updated successfully", "mingleforum")."

    "; + } +} + + +else{ + $ug_id = (is_numeric($_GET['usergroup_id']))?$_GET['usergroup_id']:0; + global $mingleforum; + $name = $mingleforum->get_usergroup_name($ug_id); + echo "

    ".__("Edit User Group", "mingleforum"). " \"$name\"

    "; + echo ""; + + echo " + + + + + + + + + + + + + "; + echo "
    ".__("Name:", "mingleforum")."
    ".__("Description:", "mingleforum")."
    +
    "; +} + +} +else +{ + echo '

    Nice TRY!

    '; +} diff --git a/i18n/Template.pot b/i18n/Template.pot new file mode 100644 index 0000000..345924c --- /dev/null +++ b/i18n/Template.pot @@ -0,0 +1,1533 @@ +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-01-20 21:23-0700\n" +"PO-Revision-Date: 2013-01-20 21:23-0700\n" +"Last-Translator: Cartpauj \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Generator: Poedit 1.5.4\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\fs-admin\n" + +#: feed.php:24 feed.php:25 +msgid "Forum Feed" +msgstr "" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "" + +#: feed.php:30 wpf.class.php:1803 wpf_define.php:34 +msgid "Forum" +msgstr "" + +#: feed.php:30 wpf.class.php:882 +msgid "Topic: " +msgstr "" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:11 +msgid "No such user" +msgstr "" + +#: wpf-edit-profile.php:27 +msgid "You have no Topic subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:37 +msgid "You have no Forum subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:41 +msgid "Edit forum options" +msgstr "" + +#: wpf-edit-profile.php:46 +msgid "Allow others to view my profile?" +msgstr "" + +#: wpf-edit-profile.php:49 +msgid "Edit Signature:" +msgstr "" + +#: wpf-edit-profile.php:54 +msgid "You have email notifications for these Forums:" +msgstr "" + +#: wpf-edit-profile.php:57 +msgid "You have email notifications for these Topics:" +msgstr "" + +#: wpf-edit-profile.php:60 fs-admin/fs-admin.php:596 +#: .\fs-admin/fs-admin.php:596 +msgid "Save options" +msgstr "" + +#: wpf-edit-profile.php:66 wpf.class.php:634 wpf.class.php:2065 +#: wpf.class.php:2090 wpf.class.php:2106 wpf.class.php:2127 wpf.class.php:2135 +#: wpf.class.php:2269 +msgid "An unknown error has occured. Please try again." +msgstr "" + +#: wpf-insert.php:26 +msgid "Oops only Administrators can post in this Forum!" +msgstr "" + +#: wpf-insert.php:35 +msgid "To help prevent spam, we require that you wait" +msgstr "" + +#: wpf-insert.php:35 +msgid "" +"minutes before posting again. Please use your browsers back button to return." +msgstr "" + +#: wpf-insert.php:134 +msgid "Security code does not match" +msgstr "" + +#: wpf-insert.php:149 wpf-insert.php:154 wpf-insert.php:227 wpf-insert.php:232 +#: wpf-insert.php:287 wpf-insert.php:292 wpf-insert.php:298 +msgid "An error occured" +msgstr "" + +#: wpf-insert.php:150 wpf-insert.php:228 wpf-insert.php:288 +msgid "You must enter a subject" +msgstr "" + +#: wpf-insert.php:155 wpf-insert.php:233 wpf-insert.php:293 +msgid "You must enter a message" +msgstr "" + +#: wpf-insert.php:175 +msgid "created the forum topic:" +msgstr "" + +#: wpf-insert.php:244 +msgid "replied to the forum topic:" +msgstr "" + +#: wpf-insert.php:299 +msgid "You do not have permission to edit this post!" +msgstr "" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "" + +#: wpf-post.php:10 wpf.class.php:702 wpf.class.php:711 wpf.class.php:1201 +msgid "on" +msgstr "" + +#: wpf-post.php:20 wpf.class.php:1326 wpf.class.php:1849 +msgid "Post Reply" +msgstr "" + +#: wpf-post.php:23 wpf-post.php:76 wpf-thread.php:13 +msgid "Subject:" +msgstr "" + +#: wpf-post.php:24 wpf.class.php:937 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 wpf-post.php:80 wpf-thread.php:17 +msgid "Message:" +msgstr "" + +#: wpf-post.php:40 wpf-thread.php:30 +msgid "Images:" +msgstr "" + +#: wpf-post.php:51 wpf-thread.php:41 +msgid "Submit" +msgstr "" + +#: wpf-post.php:73 wpf.class.php:1323 wpf.class.php:1852 +msgid "Edit Post" +msgstr "" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "" + +#: wpf.class.php:156 fs-admin/fs-admin.php:458 .\fs-admin/fs-admin.php:458 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:157 fs-admin/fs-admin.php:462 .\fs-admin/fs-admin.php:462 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:158 fs-admin/fs-admin.php:470 .\fs-admin/fs-admin.php:470 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:159 fs-admin/fs-admin.php:478 .\fs-admin/fs-admin.php:478 +msgid "Pro" +msgstr "" + +#: wpf.class.php:181 wpf.class.php:182 +msgid "Mingle Forum - Options" +msgstr "" + +#: wpf.class.php:182 +msgid "Options" +msgstr "" + +#: wpf.class.php:183 +msgid "Ads" +msgstr "" + +#: wpf.class.php:184 +msgid "Skins" +msgstr "" + +#: wpf.class.php:185 +msgid "Forum Structure - Categories & Forums" +msgstr "" + +#: wpf.class.php:185 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:186 +msgid "Moderators" +msgstr "" + +#: wpf.class.php:187 +msgid "User Groups" +msgstr "" + +#: wpf.class.php:188 +msgid "About" +msgstr "" + +#: wpf.class.php:199 wpf.class.php:200 +msgid "Forums Latest Activity" +msgstr "" + +#: wpf.class.php:219 wpf.class.php:239 +msgid "by:" +msgstr "" + +#: wpf.class.php:256 +msgid "Title to display in the sidebar:" +msgstr "" + +#: wpf.class.php:258 +msgid "How many items would you like to display?" +msgstr "" + +#: wpf.class.php:665 +msgid "Page loaded in:" +msgstr "" + +#: wpf.class.php:665 +msgid "seconds." +msgstr "" + +#: wpf.class.php:671 +msgid "Mingle Forum " +msgstr "" + +#: wpf.class.php:672 +msgid "Version:" +msgstr "" + +#: wpf.class.php:693 wpf.class.php:2333 +msgid "Guest" +msgstr "" + +#: wpf.class.php:702 wpf.class.php:1200 +msgid "by" +msgstr "" + +#: wpf.class.php:711 +msgid "Latest Post by" +msgstr "" + +#: wpf.class.php:730 +msgid "Remove this Forum from your email notifications?" +msgstr "" + +#: wpf.class.php:732 +msgid "" +"This will notify you of all new Topics created in this Forum. Are you sure " +"that is what you want to do?" +msgstr "" + +#: wpf.class.php:738 wpf.class.php:864 +msgid "Sorry, but you don't have access to this forum" +msgstr "" + +#: wpf.class.php:748 wpf.class.php:2398 +msgid "Status" +msgstr "" + +#: wpf.class.php:749 wpf.class.php:2399 +msgid "Topic Title" +msgstr "" + +#: wpf.class.php:750 wpf.class.php:2400 wpf.class.php:2513 +msgid "Started by" +msgstr "" + +#: wpf.class.php:751 wpf.class.php:2401 +msgid "Replies" +msgstr "" + +#: wpf.class.php:752 +msgid "Views" +msgstr "" + +#: wpf.class.php:753 wpf.class.php:1200 wpf.class.php:2402 +msgid "Last post" +msgstr "" + +#: wpf.class.php:757 +msgid "Sticky Topics" +msgstr "" + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +#: wpf.class.php:1667 wpf.class.php:1675 +msgid "Move Topic" +msgstr "" + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +msgid "Delete Topic" +msgstr "" + +#: wpf.class.php:773 wpf.class.php:802 +msgid "New posts since last visit" +msgstr "" + +#: wpf.class.php:790 +msgid "Forum Topics" +msgstr "" + +#: wpf.class.php:854 +msgid "Remove this Topic from your email notifications?" +msgstr "" + +#: wpf.class.php:856 +msgid "" +" This will notify you of all responses to this Topic. Are you sure that is " +"what you want to do?" +msgstr "" + +#: wpf.class.php:875 +msgid "TOPIC CLOSED" +msgstr "" + +#: wpf.class.php:881 +msgid "Author" +msgstr "" + +#: wpf.class.php:897 wpf.class.php:2457 +msgid "Posts:" +msgstr "" + +#: wpf.class.php:935 +msgid "Quick Reply" +msgstr "" + +#: wpf.class.php:944 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:967 wpf_define.php:36 +msgid "Post" +msgstr "" + +#: wpf.class.php:970 +msgid "on:" +msgstr "" + +#: wpf.class.php:976 wpf.class.php:985 wpf.class.php:2344 +msgid "Quote" +msgstr "" + +#: wpf.class.php:978 wpf.class.php:987 fs-admin/fs-admin.php:157 +#: fs-admin/fs-admin.php:1016 .\fs-admin/fs-admin.php:157 +#: .\fs-admin/fs-admin.php:1016 +msgid "Remove" +msgstr "" + +#: wpf.class.php:980 wpf.class.php:989 +msgid "Edit" +msgstr "" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Topics: " +msgstr "" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Posts: " +msgstr "" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "New posts" +msgstr "" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "No new posts" +msgstr "" + +#: wpf.class.php:1079 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1198 +msgid "No topics yet" +msgstr "" + +#: wpf.class.php:1201 +msgid "in" +msgstr "" + +#: wpf.class.php:1252 +msgid "Forums RSS" +msgstr "" + +#: wpf.class.php:1263 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1317 wpf.class.php:1842 +msgid "Search Results" +msgstr "" + +#: wpf.class.php:1320 +msgid "Profile" +msgstr "" + +#: wpf.class.php:1329 wpf.class.php:1548 wpf.class.php:1855 +msgid "New Topic" +msgstr "" + +#: wpf.class.php:1396 +msgid "Moderators:" +msgstr "" + +#: wpf.class.php:1552 wpf.class.php:1612 +msgid "Unsubscribe" +msgstr "" + +#: wpf.class.php:1554 wpf.class.php:1614 +msgid "Subscribe" +msgstr "" + +#: wpf.class.php:1578 wpf.class.php:1591 +msgid "Undo Sticky" +msgstr "" + +#: wpf.class.php:1580 wpf.class.php:1593 +msgid "Sticky" +msgstr "" + +#: wpf.class.php:1583 wpf.class.php:1596 +msgid "Re-open" +msgstr "" + +#: wpf.class.php:1585 wpf.class.php:1598 +msgid "Close" +msgstr "" + +#: wpf.class.php:1607 +msgid "Reply" +msgstr "" + +#: wpf.class.php:1617 +msgid "RSS feed" +msgstr "" + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My profile" +msgstr "" + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My Profile" +msgstr "" + +#: wpf.class.php:1665 wpf.class.php:1673 +msgid "Forum Home" +msgstr "" + +#: wpf.class.php:1717 +msgid "You are logged in as:" +msgstr "" + +#: wpf.class.php:1723 +msgid "Username: " +msgstr "" + +#: wpf.class.php:1724 +msgid "Password: " +msgstr "" + +#: wpf.class.php:1726 +msgid "Remember Me" +msgstr "" + +#: wpf.class.php:1762 +msgid "Administrator" +msgstr "" + +#: wpf.class.php:1766 +msgid "Moderator" +msgstr "" + +#: wpf.class.php:1836 +msgid "New Topics since last visit" +msgstr "" + +#: wpf.class.php:1846 +msgid "Profile Info" +msgstr "" + +#: wpf.class.php:1910 +msgid "Edit Profile" +msgstr "" + +#: wpf.class.php:1914 wpf.class.php:1926 +msgid "Welcome" +msgstr "" + +#: wpf.class.php:1915 +msgid "Your last visit was:" +msgstr "" + +#: wpf.class.php:1917 +msgid "Show new topics since your last visit" +msgstr "" + +#: wpf.class.php:1918 +msgid "Edit your forum options" +msgstr "" + +#: wpf.class.php:1920 +msgid "Log out" +msgstr "" + +#: wpf.class.php:1925 +msgid "Welcome Guest, please login or" +msgstr "" + +#: wpf.class.php:1925 +msgid "register." +msgstr "" + +#: wpf.class.php:1930 +msgid "Welcome Guest, posting in this forum requires" +msgstr "" + +#: wpf.class.php:1930 +msgid "registration." +msgstr "" + +#: wpf.class.php:1938 +msgid "Show/Hide Header" +msgstr "" + +#: wpf.class.php:1952 +msgid "Search forums" +msgstr "" + +#: wpf.class.php:1987 wpf.class.php:2018 +msgid "Pages:" +msgstr "" + +#: wpf.class.php:2000 wpf.class.php:2031 +msgid "First" +msgstr "" + +#: wpf.class.php:2011 wpf.class.php:2042 +msgid "Last" +msgstr "" + +#: wpf.class.php:2125 +msgid "Post deleted" +msgstr "" + +#: wpf.class.php:2326 wpf.class.php:2330 fs-admin/fs-admin.php:159 +#: .\fs-admin/fs-admin.php:159 +msgid "View profile" +msgstr "" + +#: wpf.class.php:2344 +msgid "Bold" +msgstr "" + +#: wpf.class.php:2344 +msgid "Italic" +msgstr "" + +#: wpf.class.php:2344 +msgid "Underline" +msgstr "" + +#: wpf.class.php:2344 +msgid "Strikethrough" +msgstr "" + +#: wpf.class.php:2344 +msgid "Code" +msgstr "" + +#: wpf.class.php:2344 +msgid "List" +msgstr "" + +#: wpf.class.php:2344 +msgid "List item" +msgstr "" + +#: wpf.class.php:2344 +msgid "Link" +msgstr "" + +#: wpf.class.php:2344 +msgid "Image" +msgstr "" + +#: wpf.class.php:2344 +msgid "Email" +msgstr "" + +#: wpf.class.php:2344 +msgid "Add Hex Color" +msgstr "" + +#: wpf.class.php:2344 +msgid "Embed YouTube Video" +msgstr "" + +#: wpf.class.php:2344 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2350 +msgid "Smile" +msgstr "" + +#: wpf.class.php:2350 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2350 +msgid "Sad" +msgstr "" + +#: wpf.class.php:2350 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2350 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2350 +msgid "Mad" +msgstr "" + +#: wpf.class.php:2350 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2350 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2350 +msgid "Wink" +msgstr "" + +#: wpf.class.php:2350 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2350 +msgid "Cool" +msgstr "" + +#: wpf.class.php:2362 +msgid "Info Center" +msgstr "" + +#: wpf.class.php:2369 +msgid "Posts in" +msgstr "" + +#: wpf.class.php:2369 +msgid "Topics Made by" +msgstr "" + +#: wpf.class.php:2369 fs-admin/fs-admin.php:151 .\fs-admin/fs-admin.php:151 +msgid "Members" +msgstr "" + +#: wpf.class.php:2369 +msgid "Latest Member:" +msgstr "" + +#: wpf.class.php:2395 +msgid "New topics since your last visit" +msgstr "" + +#: wpf.class.php:2442 +msgid "Summary" +msgstr "" + +#: wpf.class.php:2448 wpf.class.php:2656 wpf.class.php:2678 wpf.class.php:2700 +#: fs-admin/wpf-add-forum.php:10 fs-admin/wpf-edit-forum-group.php:55 +#: fs-admin/wpf-edit-forum-group.php:125 fs-admin/wpf-usergroup-edit.php:31 +#: .\fs-admin/wpf-add-forum.php:10 .\fs-admin/wpf-edit-forum-group.php:55 +#: .\fs-admin/wpf-edit-forum-group.php:125 +#: .\fs-admin/wpf-usergroup-edit.php:31 +msgid "Name:" +msgstr "" + +#: wpf.class.php:2453 +msgid "Registered:" +msgstr "" + +#: wpf.class.php:2461 +msgid "Position:" +msgstr "" + +#: wpf.class.php:2464 +msgid "Website:" +msgstr "" + +#: wpf.class.php:2468 +msgid "AIM:" +msgstr "" + +#: wpf.class.php:2472 +msgid "Yahoo:" +msgstr "" + +#: wpf.class.php:2475 +msgid "Jabber/google Talk:" +msgstr "" + +#: wpf.class.php:2479 +msgid "Biographical Info:" +msgstr "" + +#: wpf.class.php:2511 +msgid "Subject" +msgstr "" + +#: wpf.class.php:2512 +msgid "Relevance" +msgstr "" + +#: wpf.class.php:2514 +msgid "Posted" +msgstr "" + +#: wpf.class.php:2579 +msgid "Closed topic" +msgstr "" + +#: wpf.class.php:2582 +msgid "Normal topic" +msgstr "" + +#: wpf.class.php:2585 +msgid "Hot topic" +msgstr "" + +#: wpf.class.php:2588 +msgid "Very Hot topic" +msgstr "" + +#: wpf.class.php:2620 +msgid "Security Code:" +msgstr "" + +#: wpf.class.php:2640 +msgid "Enter Security Code: (required)" +msgstr "" + +#: wpf.class.php:2654 wpf.class.php:2676 +msgid "Forum post - " +msgstr "" + +#: wpf.class.php:2655 wpf.class.php:2677 wpf.class.php:2699 +msgid "DETAILS:" +msgstr "" + +#: wpf.class.php:2658 wpf.class.php:2680 wpf.class.php:2702 +msgid "Date:" +msgstr "" + +#: wpf.class.php:2659 wpf.class.php:2681 wpf.class.php:2703 +msgid "Reply Content:" +msgstr "" + +#: wpf.class.php:2660 wpf.class.php:2682 wpf.class.php:2704 +msgid "View Post Here:" +msgstr "" + +#: wpf.class.php:2698 +msgid "New Forum content - " +msgstr "" + +#: wpf.class.php:2701 +msgid "Email:" +msgstr "" + +#: wpf.class.php:2740 wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2767 wpf.class.php:2780 +msgid "Send Message" +msgstr "" + +#: wpf.class.php:2956 +msgid "Mingle Forum Post Options" +msgstr "" + +#: wpf.class.php:2962 +msgid "Add this post to" +msgstr "" + +#: wpf.class.php:2966 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "" + +#: wpf.class.php:2998 +msgid "Join the Forum discussion on this post" +msgstr "" + +#: wpf_define.php:33 +msgid "Category" +msgstr "" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "" + +#: fs-admin/fs-admin.php:34 .\fs-admin/fs-admin.php:34 +msgid "You must specify a user group name." +msgstr "" + +#: fs-admin/fs-admin.php:36 fs-admin/fs-admin.php:740 +#: fs-admin/wpf-edit-forum-group.php:17 fs-admin/wpf-usergroup-edit.php:14 +#: .\fs-admin/fs-admin.php:36 .\fs-admin/fs-admin.php:740 +#: .\fs-admin/wpf-edit-forum-group.php:17 .\fs-admin/wpf-usergroup-edit.php:14 +msgid "" +"You have choosen a name that already exists in the database, please specify " +"another" +msgstr "" + +#: fs-admin/fs-admin.php:38 .\fs-admin/fs-admin.php:38 +msgid "User Group successfully added." +msgstr "" + +#: fs-admin/fs-admin.php:56 .\fs-admin/fs-admin.php:56 +msgid "You haven't specified any user to add:" +msgstr "" + +#: fs-admin/fs-admin.php:60 .\fs-admin/fs-admin.php:60 +msgid "You must choose a user group" +msgstr "" + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "Error" +msgstr "" + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "No such user:" +msgstr "" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "Warning" +msgstr "" + +#: fs-admin/fs-admin.php:73 fs-admin/fs-admin.php:78 +#: .\fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:78 +msgid "User" +msgstr "" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "is already in this group" +msgstr "" + +#: fs-admin/fs-admin.php:78 .\fs-admin/fs-admin.php:78 +msgid "added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:86 .\fs-admin/fs-admin.php:86 +msgid "Errors:" +msgstr "" + +#: fs-admin/fs-admin.php:87 .\fs-admin/fs-admin.php:87 +msgid "Warnings:" +msgstr "" + +#: fs-admin/fs-admin.php:88 .\fs-admin/fs-admin.php:88 +msgid "Users added:" +msgstr "" + +#: fs-admin/fs-admin.php:102 .\fs-admin/fs-admin.php:102 +msgid "User Group(s) successfully deleted." +msgstr "" + +#: fs-admin/fs-admin.php:110 .\fs-admin/fs-admin.php:110 +msgid "Member successfully removed." +msgstr "" + +#: fs-admin/fs-admin.php:116 .\fs-admin/fs-admin.php:116 +msgid "Mingle Forum >> Manage User Groups" +msgstr "" + +#: fs-admin/fs-admin.php:116 fs-admin/fs-admin.php:805 +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:116 +#: .\fs-admin/fs-admin.php:805 .\fs-admin/fs-admin.php:1002 +msgid "add new" +msgstr "" + +#: fs-admin/fs-admin.php:123 fs-admin/fs-admin.php:859 +#: .\fs-admin/fs-admin.php:123 .\fs-admin/fs-admin.php:859 +msgid "Delete" +msgstr "" + +#: fs-admin/fs-admin.php:163 fs-admin/fs-admin.php:169 +#: .\fs-admin/fs-admin.php:163 .\fs-admin/fs-admin.php:169 +msgid "Add members" +msgstr "" + +#: fs-admin/fs-admin.php:168 .\fs-admin/fs-admin.php:168 +msgid "No members in this group" +msgstr "" + +#: fs-admin/fs-admin.php:231 .\fs-admin/fs-admin.php:231 +msgid "Skin successfully activated." +msgstr "" + +#: fs-admin/fs-admin.php:237 .\fs-admin/fs-admin.php:237 +msgid "Mingle Forum >> Skin options" +msgstr "" + +#: fs-admin/fs-admin.php:238 .\fs-admin/fs-admin.php:238 +msgid "Get More Skins" +msgstr "" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "" +"IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-" +"content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "Why did you change it?" +msgstr "" + +#: fs-admin/fs-admin.php:242 .\fs-admin/fs-admin.php:242 +msgid "Screenshot" +msgstr "" + +#: fs-admin/fs-admin.php:243 fs-admin/wpf-add-group.php:12 +#: .\fs-admin/fs-admin.php:243 .\fs-admin/wpf-add-group.php:12 +msgid "Name" +msgstr "" + +#: fs-admin/fs-admin.php:244 .\fs-admin/fs-admin.php:244 +msgid "Version" +msgstr "" + +#: fs-admin/fs-admin.php:245 fs-admin/wpf-add-group.php:13 +#: fs-admin/wpf-edit-forum-group.php:59 .\fs-admin/fs-admin.php:245 +#: .\fs-admin/wpf-add-group.php:13 .\fs-admin/wpf-edit-forum-group.php:59 +msgid "Description" +msgstr "" + +#: fs-admin/fs-admin.php:246 .\fs-admin/fs-admin.php:246 +msgid "Action" +msgstr "" + +#: fs-admin/fs-admin.php:260 fs-admin/fs-admin.php:275 +#: .\fs-admin/fs-admin.php:260 .\fs-admin/fs-admin.php:275 +msgid "In Use" +msgstr "" + +#: fs-admin/fs-admin.php:262 fs-admin/fs-admin.php:277 +#: .\fs-admin/fs-admin.php:262 .\fs-admin/fs-admin.php:277 +msgid "Activate" +msgstr "" + +#: fs-admin/fs-admin.php:305 .\fs-admin/fs-admin.php:305 +msgid "About Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:308 .\fs-admin/fs-admin.php:308 +msgid "Current Version: " +msgstr "" + +#: fs-admin/fs-admin.php:312 .\fs-admin/fs-admin.php:312 +msgid "" +"Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over " +"from WP Forum and has been improved upon GREATLY. It now fully supports " +"integration with or without the Mingle plugin (by Blair Williams). Also I " +"want to give a big thanks to Eric Hamby for his previous work on the forum " +"script." +msgstr "" + +#: fs-admin/fs-admin.php:314 .\fs-admin/fs-admin.php:314 +msgid "Author: " +msgstr "" + +#: fs-admin/fs-admin.php:315 .\fs-admin/fs-admin.php:315 +msgid "Plugin Page:" +msgstr "" + +#: fs-admin/fs-admin.php:316 .\fs-admin/fs-admin.php:316 +msgid "Support Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:317 .\fs-admin/fs-admin.php:317 +msgid "Mingle Forum Skins:" +msgstr "" + +#: fs-admin/fs-admin.php:364 .\fs-admin/fs-admin.php:364 +msgid "Options successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:369 .\fs-admin/fs-admin.php:369 +msgid "Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:373 .\fs-admin/fs-admin.php:373 +msgid "Statistic" +msgstr "" + +#: fs-admin/fs-admin.php:374 .\fs-admin/fs-admin.php:374 +msgid "Value" +msgstr "" + +#: fs-admin/fs-admin.php:378 .\fs-admin/fs-admin.php:378 +msgid "Number of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:382 .\fs-admin/fs-admin.php:382 +msgid "Number of threads:" +msgstr "" + +#: fs-admin/fs-admin.php:386 .\fs-admin/fs-admin.php:386 +msgid "Number of users:" +msgstr "" + +#: fs-admin/fs-admin.php:390 .\fs-admin/fs-admin.php:390 +msgid "Total database size:" +msgstr "" + +#: fs-admin/fs-admin.php:394 .\fs-admin/fs-admin.php:394 +msgid "Database server:" +msgstr "" + +#: fs-admin/fs-admin.php:398 .\fs-admin/fs-admin.php:398 +msgid "Mingle Forum version:" +msgstr "" + +#: fs-admin/fs-admin.php:403 .\fs-admin/fs-admin.php:403 +msgid "Mingle Forum >> General Options" +msgstr "" + +#: fs-admin/fs-admin.php:408 .\fs-admin/fs-admin.php:408 +msgid "default " +msgstr "" + +#: fs-admin/fs-admin.php:412 .\fs-admin/fs-admin.php:412 +msgid "Option Name" +msgstr "" + +#: fs-admin/fs-admin.php:413 .\fs-admin/fs-admin.php:413 +msgid "Option Input" +msgstr "" + +#: fs-admin/fs-admin.php:418 .\fs-admin/fs-admin.php:418 +msgid "Integrate WordPress Posts with Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:422 fs-admin/fs-admin.php:489 +#: fs-admin/fs-admin.php:512 fs-admin/fs-admin.php:536 +#: fs-admin/fs-admin.php:579 fs-admin/fs-admin.php:592 +#: .\fs-admin/fs-admin.php:422 .\fs-admin/fs-admin.php:489 +#: .\fs-admin/fs-admin.php:512 .\fs-admin/fs-admin.php:536 +#: .\fs-admin/fs-admin.php:579 .\fs-admin/fs-admin.php:592 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:426 .\fs-admin/fs-admin.php:426 +msgid "Posts per page:" +msgstr "" + +#: fs-admin/fs-admin.php:430 .\fs-admin/fs-admin.php:430 +msgid "Threads per page:" +msgstr "" + +#: fs-admin/fs-admin.php:436 .\fs-admin/fs-admin.php:436 +msgid "Number of posts for Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:440 .\fs-admin/fs-admin.php:440 +msgid "Number of posts for Very Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:444 .\fs-admin/fs-admin.php:444 +msgid "Username Display:" +msgstr "" + +#: fs-admin/fs-admin.php:457 .\fs-admin/fs-admin.php:457 +msgid "New User's Title:" +msgstr "" + +#: fs-admin/fs-admin.php:461 .\fs-admin/fs-admin.php:461 +msgid "User Level 1 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:465 .\fs-admin/fs-admin.php:465 +msgid "User Level 1 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:466 .\fs-admin/fs-admin.php:466 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:469 .\fs-admin/fs-admin.php:469 +msgid "User Level 2 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:473 .\fs-admin/fs-admin.php:473 +msgid "User Level 2 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:474 .\fs-admin/fs-admin.php:474 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:477 .\fs-admin/fs-admin.php:477 +msgid "User Level 3 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:481 .\fs-admin/fs-admin.php:481 +msgid "User Level 3 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:482 .\fs-admin/fs-admin.php:482 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:485 .\fs-admin/fs-admin.php:485 +msgid "Notify Admin on new posts:" +msgstr "" + +#: fs-admin/fs-admin.php:492 .\fs-admin/fs-admin.php:492 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:496 fs-admin/fs-admin.php:504 +#: fs-admin/fs-admin.php:520 fs-admin/fs-admin.php:528 +#: fs-admin/fs-admin.php:544 .\fs-admin/fs-admin.php:496 +#: .\fs-admin/fs-admin.php:504 .\fs-admin/fs-admin.php:520 +#: .\fs-admin/fs-admin.php:528 .\fs-admin/fs-admin.php:544 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:500 .\fs-admin/fs-admin.php:500 +msgid "Show Avatars in the forum:" +msgstr "" + +#: fs-admin/fs-admin.php:508 .\fs-admin/fs-admin.php:508 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:516 .\fs-admin/fs-admin.php:516 +msgid "Show users Signature at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:524 .\fs-admin/fs-admin.php:524 +msgid "Use Forum RSS:" +msgstr "" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "" +"IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:540 .\fs-admin/fs-admin.php:540 +msgid "Registration required to post:" +msgstr "" + +#: fs-admin/fs-admin.php:549 .\fs-admin/fs-admin.php:549 +msgid "Installed version:" +msgstr "" + +#: fs-admin/fs-admin.php:553 .\fs-admin/fs-admin.php:553 +msgid "GD Library is not installed" +msgstr "" + +#: fs-admin/fs-admin.php:556 .\fs-admin/fs-admin.php:556 +msgid "Use Captcha for unregistered users:" +msgstr "" + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "Requires " +msgstr "" + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "" +"If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Date format:" +msgstr "" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Default date:" +msgstr "" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Check " +msgstr "" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "for date formatting." +msgstr "" + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Closed Categories (Admin posting only):" +msgstr "" + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Comma separated list of Category ID's (Ex: 1, 2, 3)" +msgstr "" + +#: fs-admin/fs-admin.php:571 .\fs-admin/fs-admin.php:571 +msgid "Users can reply in locked categories" +msgstr "" + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Time limit between posting:" +msgstr "" + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Prevent lots of SPAM by making users wait a time period between posts." +msgstr "" + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "seconds" +msgstr "" + +#: fs-admin/fs-admin.php:588 .\fs-admin/fs-admin.php:588 +msgid "Disable Branding:" +msgstr "" + +#: fs-admin/fs-admin.php:711 .\fs-admin/fs-admin.php:711 +msgid "Groups deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:712 .\fs-admin/fs-admin.php:712 +msgid "Forums deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:713 .\fs-admin/fs-admin.php:713 +msgid "Threads deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:714 .\fs-admin/fs-admin.php:714 +msgid "Posts deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:738 fs-admin/fs-admin.php:762 +#: .\fs-admin/fs-admin.php:738 .\fs-admin/fs-admin.php:762 +msgid "You must enter a name" +msgstr "" + +#: fs-admin/fs-admin.php:747 .\fs-admin/fs-admin.php:747 +msgid "Category added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:759 .\fs-admin/fs-admin.php:759 +msgid "You must select a category" +msgstr "" + +#: fs-admin/fs-admin.php:765 .\fs-admin/fs-admin.php:765 +msgid "" +"You have choosen a forum name that already exists in this group, please " +"specify another" +msgstr "" + +#: fs-admin/fs-admin.php:772 .\fs-admin/fs-admin.php:772 +msgid "Forum added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:799 .\fs-admin/fs-admin.php:799 +msgid "Mingle Forum >> Categories and Forums " +msgstr "" + +#: fs-admin/fs-admin.php:821 fs-admin/fs-admin.php:851 +#: .\fs-admin/fs-admin.php:821 .\fs-admin/fs-admin.php:851 +msgid "Modify" +msgstr "" + +#: fs-admin/fs-admin.php:860 .\fs-admin/fs-admin.php:860 +msgid "Add forum" +msgstr "" + +#: fs-admin/fs-admin.php:884 .\fs-admin/fs-admin.php:884 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:894 .\fs-admin/fs-admin.php:894 +msgid "Forum Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:904 .\fs-admin/fs-admin.php:904 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:914 .\fs-admin/fs-admin.php:914 +msgid "Forum Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:950 fs-admin/fs-admin.php:957 +#: .\fs-admin/fs-admin.php:950 .\fs-admin/fs-admin.php:957 +msgid "Moderator successfully removed." +msgstr "" + +#: fs-admin/fs-admin.php:952 .\fs-admin/fs-admin.php:952 +msgid "Moderator successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:959 .\fs-admin/fs-admin.php:959 +msgid "Moderator NOT removed." +msgstr "" + +#: fs-admin/fs-admin.php:972 .\fs-admin/fs-admin.php:972 +msgid "You must select a user" +msgstr "" + +#: fs-admin/fs-admin.php:976 .\fs-admin/fs-admin.php:976 +msgid "Global Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:980 .\fs-admin/fs-admin.php:980 +msgid "Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:1002 +msgid "Mingle Forum >> Manage Moderators" +msgstr "" + +#: fs-admin/fs-admin.php:1011 .\fs-admin/fs-admin.php:1011 +msgid "Currently moderating" +msgstr "" + +#: fs-admin/fs-admin.php:1015 .\fs-admin/fs-admin.php:1015 +msgid "Update" +msgstr "" + +#: fs-admin/fs-admin.php:1025 fs-admin/wpf-moderator.php:25 +#: .\fs-admin/fs-admin.php:1025 .\fs-admin/wpf-moderator.php:25 +msgid "Global moderator: (User can moderate all forums)" +msgstr "" + +#: fs-admin/fs-admin.php:1044 .\fs-admin/fs-admin.php:1044 +msgid "No moderators yet" +msgstr "" + +#: fs-admin/fs-admin.php:1069 .\fs-admin/fs-admin.php:1069 +msgid "Ads saved successfully" +msgstr "" + +#: fs-admin/fs-admin.php:1074 .\fs-admin/fs-admin.php:1074 +msgid "Mingle Forum Ads >> options" +msgstr "" + +#: fs-admin/fs-admin.php:1076 .\fs-admin/fs-admin.php:1076 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1080 .\fs-admin/fs-admin.php:1080 +msgid "Ads Option" +msgstr "" + +#: fs-admin/fs-admin.php:1087 .\fs-admin/fs-admin.php:1087 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1089 fs-admin/fs-admin.php:1097 +#: fs-admin/fs-admin.php:1105 fs-admin/fs-admin.php:1113 +#: fs-admin/fs-admin.php:1121 fs-admin/fs-admin.php:1129 +#: fs-admin/fs-admin.php:1137 .\fs-admin/fs-admin.php:1089 +#: .\fs-admin/fs-admin.php:1097 .\fs-admin/fs-admin.php:1105 +#: .\fs-admin/fs-admin.php:1113 .\fs-admin/fs-admin.php:1121 +#: .\fs-admin/fs-admin.php:1129 .\fs-admin/fs-admin.php:1137 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1095 .\fs-admin/fs-admin.php:1095 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1103 .\fs-admin/fs-admin.php:1103 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1111 .\fs-admin/fs-admin.php:1111 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1119 .\fs-admin/fs-admin.php:1119 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1127 .\fs-admin/fs-admin.php:1127 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1135 .\fs-admin/fs-admin.php:1135 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1142 .\fs-admin/fs-admin.php:1142 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1143 .\fs-admin/fs-admin.php:1143 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1150 .\fs-admin/fs-admin.php:1150 +msgid "Save Options" +msgstr "" + +#: fs-admin/wpf-add-forum.php:5 .\fs-admin/wpf-add-forum.php:5 +msgid "Add forum to" +msgstr "" + +#: fs-admin/wpf-add-forum.php:14 fs-admin/wpf-edit-forum-group.php:129 +#: fs-admin/wpf-usergroup-edit.php:35 .\fs-admin/wpf-add-forum.php:14 +#: .\fs-admin/wpf-edit-forum-group.php:129 +#: .\fs-admin/wpf-usergroup-edit.php:35 +msgid "Description:" +msgstr "" + +#: fs-admin/wpf-add-forum.php:31 fs-admin/wpf-edit-forum-group.php:134 +#: .\fs-admin/wpf-add-forum.php:31 .\fs-admin/wpf-edit-forum-group.php:134 +msgid "Save forum" +msgstr "" + +#: fs-admin/wpf-add-group.php:7 .\fs-admin/wpf-add-group.php:7 +msgid "Add category" +msgstr "" + +#: fs-admin/wpf-add-group.php:21 .\fs-admin/wpf-add-group.php:21 +msgid "Save category" +msgstr "" + +#: fs-admin/wpf-add-usergroup.php:23 .\fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "" + +#: fs-admin/wpf-addusers.php:21 .\fs-admin/wpf-addusers.php:21 +msgid "Select User group" +msgstr "" + +#: fs-admin/wpf-addusers.php:31 .\fs-admin/wpf-addusers.php:31 +msgid "Add users" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:12 .\fs-admin/wpf-edit-forum-group.php:12 +msgid "You must specify a group name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:24 .\fs-admin/wpf-edit-forum-group.php:24 +msgid "Group updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:34 .\fs-admin/wpf-edit-forum-group.php:34 +msgid "You must specify a forum name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:37 .\fs-admin/wpf-edit-forum-group.php:37 +msgid "Forum updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:49 .\fs-admin/wpf-edit-forum-group.php:49 +msgid "Edit category" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:63 .\fs-admin/wpf-edit-forum-group.php:63 +msgid "User Groups:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:66 .\fs-admin/wpf-edit-forum-group.php:66 +msgid "" +"Members of the checked User Groups have access to the forums in this " +"category:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:98 .\fs-admin/wpf-edit-forum-group.php:98 +msgid "There are no User Groups" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:105 +#: .\fs-admin/wpf-edit-forum-group.php:105 +msgid "Save group" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:121 +#: .\fs-admin/wpf-edit-forum-group.php:121 +msgid "Edit forum" +msgstr "" + +#: fs-admin/wpf-moderator.php:19 .\fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "" + +#: fs-admin/wpf-moderator.php:36 .\fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:11 .\fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:18 .\fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:26 .\fs-admin/wpf-usergroup-edit.php:26 +msgid "Edit User Group" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:40 .\fs-admin/wpf-usergroup-edit.php:40 +msgid "Save User Group" +msgstr "" diff --git a/i18n/mingleforum-ar.mo b/i18n/mingleforum-ar.mo new file mode 100644 index 0000000..8ffe15a Binary files /dev/null and b/i18n/mingleforum-ar.mo differ diff --git a/i18n/mingleforum-ar.po b/i18n/mingleforum-ar.po new file mode 100644 index 0000000..ad12e60 --- /dev/null +++ b/i18n/mingleforum-ar.po @@ -0,0 +1,1927 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: 2011-04-15 16:03-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Poedit-Basepath: .\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" + +# @ mingleforum +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "مغذّي المنتدى" + +# @ mingleforum +#: feed.php:29 +msgid "Forum Topic:" +msgstr "موضوع المنتدى:" + +# @ mingleforum +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "منتدى" + +# @ mingleforum +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "موضوع: " + +# @ mingleforum +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "المغذّيات غير مفعّلة" + +# @ mingleforum +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "هذا المستخدم غير موجود" + +# @ mingleforum +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "لا يوجد لديك اشتراك في الوقت الحالي" + +# @ mingleforum +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "تحرير خيارات المنتدى" + +# @ mingleforum +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "السماح للآخرين لرؤية ملفي الشخصي؟" + +# @ mingleforum +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "لديك بريد الكتروني لهذه المواضيع:" + +# @ mingleforum +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "حفظ الخيارات" + +# @ mingleforum +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "نغش، اليس كذلك؟" + +# @ mingleforum +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "رمز الأمان لا يتطابق" + +# @ mingleforum +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "حدث خطأ" + +# @ mingleforum +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "يجب إدخال موضوع" + +# @ mingleforum +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "يجب إدخال رسالة" + +# @ mingleforum +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "إنشاء مواضيع المنتدى:" + +# @ mingleforum +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "الرد على موضوع المنتدى:" + +# @ mingleforum +#: wpf-post.php:10 +msgid "Quote from" +msgstr "إقتباس من" + +# @ mingleforum +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr "على" + +# @ mingleforum +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "إضافة رد" + +# @ mingleforum +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "الموضوع:" + +# @ mingleforum +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "بخصوص:" + +# @ mingleforum +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "الرسالة:" + +# @ mingleforum +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "صورة" + +# @ mingleforum +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "تسليم" + +# @ mingleforum +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "تحرير المقال" + +# @ mingleforum +#: wpf-post.php:89 +msgid "Save Post" +msgstr "حفظ المقال" + +# @ mingleforum +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "إضافة موضوع جديد" + +# @ mingleforum +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "نأسف، لا توجد لديك صلاحيات لإضافة مقالة." + +# @ mingleforum +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "مستجد" + +# @ mingleforum +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "مبتدئ" + +# @ mingleforum +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "متقدم" + +# @ mingleforum +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "محترف" + +# @ mingleforum +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "إختيارات - منتدى Mingle" + +# @ mingleforum +#: wpf.class.php:173 +msgid "Options" +msgstr "إختيارات" + +# @ mingleforum +#: wpf.class.php:174 +msgid "Ads" +msgstr "الإعلانات" + +# @ mingleforum +#: wpf.class.php:175 +msgid "Skins" +msgstr "الجلود" + +# @ mingleforum +#: wpf.class.php:176 +msgid "Forum Structure - Categories & Forums" +msgstr "هيكل المنتدى - التصنيفات والمنتديات" + +# @ mingleforum +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "هيكل المنتدى" + +# @ mingleforum +#: wpf.class.php:177 +msgid "Moderators" +msgstr "الملطّفين" + +# @ mingleforum +#: wpf.class.php:178 +msgid "User Groups" +msgstr "مجموعات المستخدمين" + +# @ mingleforum +#: wpf.class.php:179 +msgid "About" +msgstr "عــن" + +# @ mingleforum +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "آخر أنشطة المنتدى" + +# @ mingleforum +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "بواسطة:" + +# @ mingleforum +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "العنوان المراد عرضه في القائمة الجانبية:" + +# @ mingleforum +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "كم من المواد ترغب بعرضها؟" + +# @ mingleforum +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "تم تحميل الصفحة في:" + +# @ mingleforum +#: wpf.class.php:646 +msgid "seconds." +msgstr "ثواني." + +# @ mingleforum +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "منتدى Mingle " + +# @ mingleforum +#: wpf.class.php:650 +msgid "Version:" +msgstr "الإصدارة:" + +# @ mingleforum +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "ضيف" + +# @ mingleforum +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "عن طريق" + +# @ mingleforum +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "آخر مقالة بواسطة " + +# @ mingleforum +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "نأسف، فليس لديك ولوج إلى هذا المنتدى" + +# @ mingleforum +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "الوضعية" + +# @ mingleforum +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "عنوان الموضوع" + +# @ mingleforum +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "بُدأت بواسطة" + +# @ mingleforum +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "الردود" + +# @ mingleforum +#: wpf.class.php:724 +msgid "Views" +msgstr "مشاهدات" + +# @ mingleforum +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "آخر مقالة" + +# @ mingleforum +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "مواضيع مثبّتة" + +# @ mingleforum +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "نقل موضوع" + +# @ mingleforum +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "حذف موضوع" + +# @ mingleforum +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "المواضيع الجديدة منذ آخر زيارة" + +# @ mingleforum +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "مواضيع المنتدى" + +# @ mingleforum +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "إزالة هذا الموضوع من تنبيهات البريد الالكتروني؟" + +# @ mingleforum +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "إضافة هذا الموضوع إلى تنبيهات البريد الالكتروني" + +# @ mingleforum +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "الموضوع مغلق" + +# @ mingleforum +#: wpf.class.php:858 +msgid "Author" +msgstr "المؤلف" + +# @ mingleforum +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "المواضيع:" + +# @ mingleforum +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "رد سريع" + +# @ mingleforum +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "تسليم الرد السريع" + +# @ mingleforum +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "موضوع" + +# @ mingleforum +#: wpf.class.php:941 +msgid "on:" +msgstr "في:" + +# @ mingleforum +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "إقتباس" + +# @ mingleforum +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "أزالة" + +# @ mingleforum +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "تحرير" + +# @ mingleforum +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "مواضيع: " + +# @ mingleforum +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "مقالات: " + +# @ mingleforum +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "مقالات جديدة" + +# @ mingleforum +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "لا توجد مقالات جديدة" + +# @ mingleforum +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "وضع علامة: الكل مقرئ" + +# @ mingleforum +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "لا توجد مواضيع بعد" + +# @ mingleforum +#: wpf.class.php:1156 +msgid "in" +msgstr "في" + +# @ mingleforum +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "مغذي RSS للمنتديات" + +# @ mingleforum +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "هل أنت متأكد لإزالة هذه؟" + +# @ mingleforum +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "نتائج البحث" + +# @ mingleforum +#: wpf.class.php:1275 +msgid "Profile" +msgstr "الملف الشخصي" + +# @ mingleforum +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "موضوع جديد" + +# @ mingleforum +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "المُلطّفين:" + +# @ mingleforum +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "التراجع عن التثبيت" + +# @ mingleforum +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "تثبيت" + +# @ mingleforum +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "إعادة فتح" + +# @ mingleforum +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "إغلاق" + +# @ mingleforum +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "رد" + +# @ mingleforum +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "إلغاء الإشتراك" + +# @ mingleforum +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "إشتراك" + +# @ mingleforum +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "مغذي RSS" + +# @ mingleforum +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "مغذي RSS" + +# @ mingleforum +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "ملفي الشخصي" + +# @ mingleforum +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "ملفي الشخصي" + +# @ mingleforum +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "الصفحة الرئيسية للمنتدى" + +# @ mingleforum +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "تسجيل الخروج" + +# @ mingleforum +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "بحث" + +# @ mingleforum +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "تم تسجيل دخولك بإسم: " + +# @ mingleforum +#: wpf.class.php:1728 +msgid "Username: " +msgstr "إسم المستخدم: " + +# @ mingleforum +#: wpf.class.php:1729 +msgid "Password: " +msgstr "كلمة المرور: " + +# @ mingleforum +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "تذكرني" + +# @ mingleforum +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "المدير" + +# @ mingleforum +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "ملطّف" + +# @ mingleforum +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "عدد المواضيع منذ الزيارة الأخيرة" + +# @ mingleforum +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "بينات الملف الشخصي" + +# @ mingleforum +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "تعديل الملف الشخصي" + +# @ mingleforum +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "مـرحبــاً" + +# @ mingleforum +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "زيارتك الأخيرة كانت في: " + +# @ mingleforum +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "عرض جميع المواضيع منذ زيارتك الأخيرة" + +# @ mingleforum +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "تحرير إختيارات المنتدى الخاص بك" + +# @ mingleforum +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "مرحبـاً بضيفنا الكريم، يرجى تسجيل الدخول، أو " + +# @ mingleforum +#: wpf.class.php:1930 +msgid "register." +msgstr "التـسجيـل" + +# @ mingleforum +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "مرحبـاً بالضيف الكريم، الكتابة في هذا المنتدى يتطلب " + +# @ mingleforum +#: wpf.class.php:1935 +msgid "registration." +msgstr "الـتسجيــل." + +# @ mingleforum +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "عرض/إخفاء الترويسة" + +# @ mingleforum +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "البحث في المنتدى" + +# @ mingleforum +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "الصفحات:" + +# @ mingleforum +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "الأول" + +# @ mingleforum +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "الأخير" + +# @ mingleforum +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "تم إلغاء المقالة" + +# @ mingleforum +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "مشاهدة الملف الشخصي" + +# @ mingleforum +#: wpf.class.php:2279 +msgid "Bold" +msgstr "غامق" + +# @ mingleforum +#: wpf.class.php:2280 +msgid "Italic" +msgstr "مائل" + +# @ mingleforum +#: wpf.class.php:2281 +msgid "Underline" +msgstr "تسطير" + +# @ mingleforum +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "يتوسطه خط" + +# @ mingleforum +#: wpf.class.php:2283 +msgid "Code" +msgstr "رمز" + +# @ mingleforum +#: wpf.class.php:2285 +msgid "List" +msgstr "قائمة" + +# @ mingleforum +#: wpf.class.php:2286 +msgid "List item" +msgstr "عرض مادة" + +# @ mingleforum +#: wpf.class.php:2287 +msgid "Link" +msgstr "رابط" + +# @ mingleforum +#: wpf.class.php:2288 +msgid "Image" +msgstr "صورة" + +# @ mingleforum +#: wpf.class.php:2289 +msgid "Email" +msgstr "بريد الكتروني" + +# @ mingleforum +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "إضافة لون (عشري)" + +# @ mingleforum +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "تضمين فيديو \\\"يوتيوب\\\"" + +# @ mingleforum +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "تضمين خريطة جوجل" + +# @ mingleforum +#: wpf.class.php:2298 +msgid "Smile" +msgstr "ابتسامة" + +# @ mingleforum +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "ابتسامة كبيرة" + +# @ mingleforum +#: wpf.class.php:2300 +msgid "Sad" +msgstr "حزين" + +# @ mingleforum +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "محايد" + +# @ mingleforum +#: wpf.class.php:2302 +msgid "Razz" +msgstr "اشجب" + +# @ mingleforum +#: wpf.class.php:2303 +msgid "Mad" +msgstr "مجنون" + +# @ mingleforum +#: wpf.class.php:2304 +msgid "Confused" +msgstr "مشوّش" + +# @ mingleforum +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "يعع!" + +# @ mingleforum +#: wpf.class.php:2306 +msgid "Wink" +msgstr "غمزة" + +# @ mingleforum +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "متفاجئ" + +# @ mingleforum +#: wpf.class.php:2308 +msgid "Cool" +msgstr "عجيب!!" + +# @ mingleforum +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "مركز المعلومات" + +# @ mingleforum +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "مقالات في" + +# @ mingleforum +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "إنشاء المواضيح بواسطة" + +# @ mingleforum +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "أعضاء" + +# @ mingleforum +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "آخر الأعضاء: " + +# @ mingleforum +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "المواضيع الجديدة منذ زيارتك الأخيرة" + +# @ mingleforum +#: wpf.class.php:2397 +msgid "Summary" +msgstr "ملخص" + +# @ mingleforum +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "الاسم:" + +# @ mingleforum +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "المسجلين:" + +# @ mingleforum +#: wpf.class.php:2416 +msgid "Position:" +msgstr "الوضع:" + +# @ mingleforum +#: wpf.class.php:2419 +msgid "Website:" +msgstr "صفحة ويب:" + +# @ mingleforum +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "AIM:" + +# @ mingleforum +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "Yahoo:" + +# @ mingleforum +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +# @ mingleforum +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "المعلومات الشخصية:" + +# @ mingleforum +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "بحث عن:" + +# @ mingleforum +#: wpf.class.php:2463 +msgid "By user:" +msgstr "بواسطة المستخدم:" + +# @ mingleforum +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "عمر الرسالة:" + +# @ mingleforum +#: wpf.class.php:2469 +msgid "Between" +msgstr "بين" + +# @ mingleforum +#: wpf.class.php:2469 +msgid "and" +msgstr "و" + +# @ mingleforum +#: wpf.class.php:2469 +msgid "days" +msgstr "أيام" + +# @ mingleforum +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "اختر المنتدى/المنتديات للبحث فيها" + +# @ mingleforum +#: wpf.class.php:2497 +msgid "Check all" +msgstr "اختيار الكل" + +# @ mingleforum +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "ابدأ البحث" + +# @ mingleforum +#: wpf.class.php:2544 +msgid "Subject" +msgstr "الموضوع" + +# @ mingleforum +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "الصلة" + +# @ mingleforum +#: wpf.class.php:2547 +msgid "Posted" +msgstr "منشورة" + +# @ mingleforum +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "موضوع مغلق" + +# @ mingleforum +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "موضوع عادي" + +# @ mingleforum +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "موضوع ساخن" + +# @ mingleforum +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "موضوع ساخن جداً" + +# @ mingleforum +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "رمز الأمان:" + +# @ mingleforum +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "أدخل رمز الأمان (مطلوب):" + +# @ mingleforum +#: wpf.class.php:2687 +msgid "New post in forum:" +msgstr "مواضيع جديدة في المنتدى:" + +# @ mingleforum +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "التفاصيل:" + +# @ mingleforum +#: wpf.class.php:2691 +msgid "Date:" +msgstr "التاريخ:" + +# @ mingleforum +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "محتويات الرد:" + +# @ mingleforum +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "عرض موضوع هنا:" + +# @ mingleforum +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "صندوق الوارد" + +# @ mingleforum +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "إرسال الرسالة" + +# @ mingleforum +#: wpf_define.php:33 +msgid "Category" +msgstr "التصنيف" + +# @ mingleforum +#: wpf_define.php:35 +msgid "Topic" +msgstr "الموضوع" + +# @ mingleforum +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "يجب تحديد اسم مجموعة المستخدم." + +# @ mingleforum +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "لقد قمت باختيار اسم موجود مسبقاً في قاعدة البيانات، يرجى اختيار اسم آخر" + +# @ mingleforum +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "تم إضافة مجموعة المستخدم بنجاح." + +# @ mingleforum +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "لم تقم بتحديد أي مستخدم للإضافة:" + +# @ mingleforum +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "لابد من أن تختار مجموعة مستخدم" + +# @ mingleforum +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "خطـأ" + +# @ mingleforum +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "لا وجود لهذا المستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "تحذيـر" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "مستخدم" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "بالفعل موجود في هذه المجموعة" + +# @ mingleforum +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "تمت الإضافة بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "أخطاء:" + +# @ mingleforum +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "تحذيرات:" + +# @ mingleforum +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "تم إضافة المستخدمين:" + +# @ mingleforum +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "تم إضافة المجموعة/المجموعات بنجاح." + +# @ mingleforum +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "تمت إزالة المستخدم بنجاح." + +# @ mingleforum +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "منتدى Mingle >> إدارة مجموعات المستخدمين" + +# @ mingleforum +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "إضافة جديد" + +# @ mingleforum +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "إلغاء" + +# @ mingleforum +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "إضافة أعضاء" + +# @ mingleforum +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "لا يوجد أعضاء في هذه المجموعة" + +# @ mingleforum +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "تم تفعيل الجلد بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "منتدى Mingle >> إختيارات الجلود" + +# @ mingleforum +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "جلب مزيد من الجلود" + +# @ mingleforum +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "مهم: في الإصدارة 1.0.03، تم تحريك مجلد الجلود إلى /wp-content/mingle-forum-skins" + +# @ mingleforum +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "لم قمت بتغييره؟" + +# @ mingleforum +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "صورة من الصفحة" + +# @ mingleforum +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "الاسم" + +# @ mingleforum +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "الإصدارة" + +# @ mingleforum +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "الوصـف" + +# @ mingleforum +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "الإجراء" + +# @ mingleforum +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "قيد الاستخدام" + +# @ mingleforum +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "تفعيل" + +# @ mingleforum +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "عن منتدى Mingle" + +# @ mingleforum +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "الإصدارة الحالية: " + +# @ mingleforum +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "منتدى Mingle يتبنى مهمة واحدة بسيطة، \\\" أبقها بسيطة\\\"، وهو مستقى من منتدى ووردبرس، وتم تحسينه بدرجة كبيرة. وهو الآن يعمل بدون إضافة Mingle (برمجة بلير ويليامز). كما أود توجيه الشكر إلى (ايريك هامبي) لعمله السابق في برمجة المنتدى." + +# @ mingleforum +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "المؤلف: " + +# @ mingleforum +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "صفحة الإضافات:" + +# @ mingleforum +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "دعم المنتدى:" + +# @ mingleforum +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "جلود منتدى Mingle:" + +# @ mingleforum +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "تم حفظ الإختيارات بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "منتدى Mingle" + +# @ mingleforum +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "إحصاء" + +# @ mingleforum +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "قيمة" + +# @ mingleforum +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "عدد المواضيع:" + +# @ mingleforum +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "عدد الاقتباسات:" + +# @ mingleforum +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "عدد المستخدمين:" + +# @ mingleforum +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "الحجم الكلي لقاعدة البيانات:" + +# @ mingleforum +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "خادم قاعدة البيانات:" + +# @ mingleforum +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "إصدارة منتدى Mingle:" + +# @ mingleforum +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "منتدى Mingle >> خيارات عامة" + +# @ mingleforum +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "الافتراضي " + +# @ mingleforum +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "إسم الخيار" + +# @ mingleforum +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "مُدخل الخيارات" + +# @ mingleforum +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "مواضيع لكل صفحة:" + +# @ mingleforum +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "الاقتباسات لكل صفحة:" + +# @ mingleforum +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "عدد المواضيع الخاصة بـ \\\"مواضيع ساخنة\\\":" + +# @ mingleforum +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "عدد المواضيع الخاصة بـ \\\"مواضيع ساخنة جداً\\\":" + +# @ mingleforum +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "عرض اسم المستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "عنوان جديد للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "موضوع المستوى ١ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "إحصاء المستوى ١ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "٢٥" + +# @ mingleforum +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "عنوان المستوى ٢ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "إحصاء المستوى ٢ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "٥٠" + +# @ mingleforum +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "عنوان المستوى ٣ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "إحصاء المستوى ٣ للمستخدم:" + +# @ mingleforum +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "١٠٠" + +# @ mingleforum +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "إعلام الإدارة في حالة وجود مقالات جديدة:" + +# @ mingleforum +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "مطفأ" + +# @ mingleforum +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "إظهار نموذج الدخول للمنتدى:" + +# @ mingleforum +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "مضاء" + +# @ mingleforum +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "إظهار الصورة الرمزية:" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "إظهار السيرة الذاتية للمستخدمين في أسفل المواضيع:" + +# @ mingleforum +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "استخدام مغذي RSS الخاص بالمنتدى:" + +# @ mingleforum +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "استخدام الروابط الصديقة لـ SEO" + +# @ mingleforum +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "مهم: لا تختر هذا الإختيار إذا كانت الروابط الدائمة (permalink) على وضعية \\\"الافتراضي\\\"." + +# @ mingleforum +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "التسجيل مطلوب لكتابة مقالات." + +# @ mingleforum +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "النسخة المثبنة:" + +# @ mingleforum +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "مكتبة GD غير منصبة" + +# @ mingleforum +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "استخدام شفرة \\\"كابتشا\\\" للمستخدمين الغير مسجلين مسبقا:" + +# @ mingleforum +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "يتطلب " + +# @ mingleforum +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "لا تختر هذا الإختيار إذا كانت وضعية \\\"التسجيل مطلوب لكتابة مقالات\\\" أعلاه مفعلة" + +# @ mingleforum +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "نسق التاريخ:" + +# @ mingleforum +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "التاريخ الإفتراضي:" + +# @ mingleforum +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "تحقق من " + +# @ mingleforum +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "لنسق التاريخ." + +# @ mingleforum +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "المجموعات الملغية:" + +# @ mingleforum +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "المنتديات الملغية:" + +# @ mingleforum +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "الاقتباسات الملغية:" + +# @ mingleforum +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "المقالات الملغية:" + +# @ mingleforum +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "يجب عليك إدخال اسم" + +# @ mingleforum +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "تم إضافة التصنيف بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "يجب عليك إختيار تصنيف" + +# @ mingleforum +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "لقد قمت باختيار اسم لمنتدى موجود مسبقا في هذه المجموعة، يجب اختيار اسم آخر" + +# @ mingleforum +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "تم إضافة المنتدى بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "منتدى Mingle >> تصنيفات ومنتديات " + +# @ mingleforum +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "تعديل" + +# @ mingleforum +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "إضافة منتدى" + +# @ mingleforum +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "تم تحريك المجموعة للأسفل" + +# @ mingleforum +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "تم تحريك المنتدى للأسفل" + +# @ mingleforum +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "تم تحريك المجموعة للأعلى" + +# @ mingleforum +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "تم تحريك المنتدى للأعلى" + +# @ mingleforum +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "تم إلغاء \\\"الملطف\\\" بنجاح." + +# @ mingleforum +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "تم حفظ \\\"الملطف\\\" بنجاح." + +# @ mingleforum +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "لم يتم حذف \\\"الملطف\\\"." + +# @ mingleforum +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "يجب عليك اختيار مستخدم" + +# @ mingleforum +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "تم إضافة \\\"الملطف العام\\\" بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "تم إضافة \\\"الملطف\\\" بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "منتدى Mingle >> إدارة \\\"الملطفين\\\"" + +# @ mingleforum +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "جاري \\\"التلطيف\\\" الآن" + +# @ mingleforum +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "تحديث" + +# @ mingleforum +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "\\\"ملطف عام\\\" (باستطاعة هذا المستخدم تلطيف كافة المنتديات)" + +# @ mingleforum +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "لا يوجد \\\"ملطفين\\\" بعد" + +# @ mingleforum +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "تم حفظ الإعلانات بنجاح" + +# @ mingleforum +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "إعلانات منتدى Mingle >> الخيارات" + +# @ mingleforum +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "صيغة HTML مسموح بها في جميع مساحات الإعلانات أدناه" + +# @ mingleforum +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "خيار الإعلانات" + +# @ mingleforum +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "تفعيل المساحة فوق المنتدى" + +# @ mingleforum +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "قيمة CSS:" + +# @ mingleforum +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "تفعيل المساحة تحت المنتدى" + +# @ mingleforum +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "تفعيل المساحة فوق المنتج المعرف" + +# @ mingleforum +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "تفعيل المساحة فوق مركز المعلومات" + +# @ mingleforum +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "تفعيل المساحة فوق التفصيلات" + +# @ mingleforum +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "تفعيل المساحة فوق نموذج \\\"الرد السريع\\\"" + +# @ mingleforum +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "تفعيل المساحة تحت المقالة الأولى" + +# @ mingleforum +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "يمكنك إضافة/تعديل منسق CSS الخاص بك أدناه" + +# @ mingleforum +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "تنويه: إذا لم تعرف المغزى من هذا، أتركه خاليا" + +# @ mingleforum +#: fs-admin/fs-admin.php:1105 +msgid "Save Options" +msgstr "خيارات الحفظ" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "إضافة المنتدى إلى" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "الوصف:" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "حفظ المنتدى" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "إضافة التصنيف" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "حفظ التصنيف" + +# @ mingleforum +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "حفظ مجموعة المستخدم" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "إختر مجموعة المستخدم" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "إضافة مستخدمين" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "يجب عليك تحديد مجموعة مستخدمين" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "تم تحديث المجموعة بنجاح" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "يجب عليك تحديد اسم للمنتدى" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "تم تحديث المنتدى بنجاح" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "تحرير التصنيف" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "مجموعات المستخدمين:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "الأعضاء في مجموعات المستخدمين المنتقاه لهم أحقية الدخول إلى المنتديات في هذا التصنيف:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "لا توجد مجموعات للمستخدمين" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "حفظ المجموعة" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "تحرير المنتدى" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "اختر مستخدم" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "أضف \\\"ملطف\\\"" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "يجب عليك تحديد اسم لمجموعة المستخدم" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "تم تحديث مجموعة المستخدم بنجاح" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "تحرير مجموعة المستخدم" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "حفظ مجموعة المستخدم" + diff --git a/i18n/mingleforum-bg_BG.mo b/i18n/mingleforum-bg_BG.mo new file mode 100644 index 0000000..d139c84 Binary files /dev/null and b/i18n/mingleforum-bg_BG.mo differ diff --git a/i18n/mingleforum-bg_BG.po b/i18n/mingleforum-bg_BG.po new file mode 100644 index 0000000..e723a96 --- /dev/null +++ b/i18n/mingleforum-bg_BG.po @@ -0,0 +1,1765 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum 1.0.34\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2013-02-05 08:05+0200\n" +"Last-Translator: Dobrin Draganov \n" +"Language-Team: DDART \n" +"Language: bg_BG\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 feed.php:25 +msgid "Forum Feed" +msgstr "Форум Абонамент" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Форум Заглавие:" + +#: feed.php:30 wpf.class.php:1803 wpf_define.php:34 +msgid "Forum" +msgstr "Форум" + +#: feed.php:30 wpf.class.php:882 +msgid "Topic: " +msgstr "Тема: " + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Каналите са изключени" + +#: wpf-edit-profile.php:11 +msgid "No such user" +msgstr "Няма такъв потребител" + +#: wpf-edit-profile.php:27 +msgid "You have no Topic subscriptions at this time" +msgstr "Нямате абонамент за теми до този момент" + +#: wpf-edit-profile.php:37 +msgid "You have no Forum subscriptions at this time" +msgstr "Нямате абонамент за Форум до този момент" + +#: wpf-edit-profile.php:41 +msgid "Edit forum options" +msgstr "Редактиране на опциите на форума " + +#: wpf-edit-profile.php:46 +msgid "Allow others to view my profile?" +msgstr "Позволяваш ли на други да виждат профила ти ? " + +#: wpf-edit-profile.php:49 +msgid "Edit Signature:" +msgstr "Редактиране на Подписа:" + +#: wpf-edit-profile.php:54 +msgid "You have email notifications for these Forums:" +msgstr "Вие имате имейл уведомления за тези форуми:" + +#: wpf-edit-profile.php:57 +msgid "You have email notifications for these Topics:" +msgstr "Вие имате имейл уведомления за тези теми:" + +#: wpf-edit-profile.php:60 fs-admin/fs-admin.php:596 +#: .\fs-admin/fs-admin.php:596 +msgid "Save options" +msgstr "Запазване на опциите " + +#: wpf-edit-profile.php:66 wpf.class.php:634 wpf.class.php:2065 +#: wpf.class.php:2090 wpf.class.php:2106 wpf.class.php:2127 wpf.class.php:2135 +#: wpf.class.php:2269 +msgid "An unknown error has occured. Please try again." +msgstr "Възникна неизвестна грешка. Моля, опитайте отново." + +#: wpf-insert.php:26 +msgid "Oops only Administrators can post in this Forum!" +msgstr "Опа, само Администраторите могат да публикуват в този форум!" + +#: wpf-insert.php:35 +msgid "To help prevent spam, we require that you wait" +msgstr "За да се предотврати Спам мнения, ние изискваме да изчакате " + +#: wpf-insert.php:35 +msgid "" +"minutes before posting again. Please use your browsers back button to return." +msgstr "" +"минути преди да публикувате отново. Моля, използвайте стрелката за връщане " +"назад на вашия браузър ." + +#: wpf-insert.php:134 +msgid "Security code does not match" +msgstr "Кода за сигурност не съвпада" + +#: wpf-insert.php:149 wpf-insert.php:154 wpf-insert.php:227 wpf-insert.php:232 +#: wpf-insert.php:287 wpf-insert.php:292 wpf-insert.php:298 +msgid "An error occured" +msgstr "Възникна грешка" + +#: wpf-insert.php:150 wpf-insert.php:228 wpf-insert.php:288 +msgid "You must enter a subject" +msgstr "Трябва да въведете тема." + +#: wpf-insert.php:155 wpf-insert.php:233 wpf-insert.php:293 +msgid "You must enter a message" +msgstr "Трябва да въведете съобщение" + +#: wpf-insert.php:175 +msgid "created the forum topic:" +msgstr "Създаде нова тема във форума:" + +#: wpf-insert.php:244 +msgid "replied to the forum topic:" +msgstr "Отговори на темата във форума:" + +#: wpf-insert.php:299 +msgid "You do not have permission to edit this post!" +msgstr "Вие нямате разрешение да редактирате този пост!" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Цитат от" + +#: wpf-post.php:10 wpf.class.php:702 wpf.class.php:711 wpf.class.php:1201 +msgid "on" +msgstr "на" + +#: wpf-post.php:20 wpf.class.php:1326 wpf.class.php:1849 +msgid "Post Reply" +msgstr "Отговори" + +#: wpf-post.php:23 wpf-post.php:76 wpf-thread.php:13 +msgid "Subject:" +msgstr "Тема:" + +#: wpf-post.php:24 wpf.class.php:937 +msgid "Re:" +msgstr "Отговор:" + +#: wpf-post.php:27 wpf-post.php:80 wpf-thread.php:17 +msgid "Message:" +msgstr "Съобщение:" + +#: wpf-post.php:40 wpf-thread.php:30 +msgid "Images:" +msgstr "Снимки:" + +#: wpf-post.php:51 wpf-thread.php:41 +msgid "Submit" +msgstr "Изпрати" + +#: wpf-post.php:73 wpf.class.php:1323 wpf.class.php:1852 +msgid "Edit Post" +msgstr "Редактиране на публикацията" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Запиши Публикацията " + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Създайте нова тема" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Съжалявам, но Вие нямате право да публикувате." + +#: wpf.class.php:156 fs-admin/fs-admin.php:458 .\fs-admin/fs-admin.php:458 +msgid "Newbie" +msgstr "Новак" + +#: wpf.class.php:157 fs-admin/fs-admin.php:462 .\fs-admin/fs-admin.php:462 +msgid "Beginner" +msgstr "Начинаещ" + +#: wpf.class.php:158 fs-admin/fs-admin.php:470 .\fs-admin/fs-admin.php:470 +msgid "Advanced" +msgstr "Напреднал" + +#: wpf.class.php:159 fs-admin/fs-admin.php:478 .\fs-admin/fs-admin.php:478 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:181 wpf.class.php:182 +msgid "Mingle Forum - Options" +msgstr "Mingle Форум - Опции" + +#: wpf.class.php:182 +msgid "Options" +msgstr "Опции" + +#: wpf.class.php:183 +msgid "Ads" +msgstr "Реклама" + +#: wpf.class.php:184 +msgid "Skins" +msgstr "Кожи" + +#: wpf.class.php:185 +msgid "Forum Structure - Categories & Forums" +msgstr "Форум Структура - Категории и Форми" + +#: wpf.class.php:185 +msgid "Forum Structure" +msgstr "Форум Структура" + +#: wpf.class.php:186 +msgid "Moderators" +msgstr "Модератори" + +#: wpf.class.php:187 +msgid "User Groups" +msgstr "Потребителски групи" + +#: wpf.class.php:188 +msgid "About" +msgstr "За Mingle Форума" + +#: wpf.class.php:199 wpf.class.php:200 +msgid "Forums Latest Activity" +msgstr "Последно активно на форума" + +#: wpf.class.php:219 wpf.class.php:239 +msgid "by:" +msgstr "от:" + +#: wpf.class.php:256 +msgid "Title to display in the sidebar:" +msgstr "Заглавието да се показва в страничната лента:" + +#: wpf.class.php:258 +msgid "How many items would you like to display?" +msgstr "Колко елемента бихте искали да се показват?" + +#: wpf.class.php:665 +msgid "Page loaded in:" +msgstr "Страницата заредена за : " + +#: wpf.class.php:665 +msgid "seconds." +msgstr "секунди." + +#: wpf.class.php:671 +msgid "Mingle Forum " +msgstr "Mingle Форум" + +#: wpf.class.php:672 +msgid "Version:" +msgstr "Версия:" + +#: wpf.class.php:693 wpf.class.php:2333 +msgid "Guest" +msgstr "Гост" + +#: wpf.class.php:702 wpf.class.php:1200 +msgid "by" +msgstr "от" + +#: wpf.class.php:711 +msgid "Latest Post by" +msgstr "Последно мнение от" + +#: wpf.class.php:730 +msgid "Remove this Forum from your email notifications?" +msgstr "Премахване на този форум от вашите известия по имейл?" + +#: wpf.class.php:732 +msgid "" +"This will notify you of all new Topics created in this Forum. Are you sure " +"that is what you want to do?" +msgstr "" +"С това ще получавате уведомления за всички нови теми, създадени в този " +"форум. Сигурни ли сте, че искате това ?" + +#: wpf.class.php:738 wpf.class.php:864 +msgid "Sorry, but you don't have access to this forum" +msgstr "Съжалявам, но вие нямате достъп до този форум" + +#: wpf.class.php:748 wpf.class.php:2398 +msgid "Status" +msgstr "Статус" + +#: wpf.class.php:749 wpf.class.php:2399 +msgid "Topic Title" +msgstr "Заглавие на Темата" + +#: wpf.class.php:750 wpf.class.php:2400 wpf.class.php:2513 +msgid "Started by" +msgstr "Започната от " + +#: wpf.class.php:751 wpf.class.php:2401 +msgid "Replies" +msgstr "Отговори" + +#: wpf.class.php:752 +msgid "Views" +msgstr "Прегледи" + +#: wpf.class.php:753 wpf.class.php:1200 wpf.class.php:2402 +msgid "Last post" +msgstr "Последно мнение" + +#: wpf.class.php:757 +msgid "Sticky Topics" +msgstr "Важни Теми" + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +#: wpf.class.php:1667 wpf.class.php:1675 +msgid "Move Topic" +msgstr "Премести темата " + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +msgid "Delete Topic" +msgstr "Изтриване на тема" + +#: wpf.class.php:773 wpf.class.php:802 +msgid "New posts since last visit" +msgstr "Има нови меня след последното Ви посещение" + +#: wpf.class.php:790 +msgid "Forum Topics" +msgstr "Нормални теми" + +#: wpf.class.php:854 +msgid "Remove this Topic from your email notifications?" +msgstr "Премахване на тази тема от емайл известяването ? " + +#: wpf.class.php:856 +msgid "" +" This will notify you of all responses to this Topic. Are you sure that is " +"what you want to do?" +msgstr "" +"С това ще получавате уведомления за всички отговори към тази тема. Сигурни " +"ли сте, че искате това ?" + +#: wpf.class.php:875 +msgid "TOPIC CLOSED" +msgstr "ТЕМАТА Е ЗАТВОРЕНА" + +#: wpf.class.php:881 +msgid "Author" +msgstr "Автор" + +#: wpf.class.php:897 wpf.class.php:2457 +msgid "Posts:" +msgstr "Мнения:" + +#: wpf.class.php:935 +msgid "Quick Reply" +msgstr "Бърз отговор" + +#: wpf.class.php:944 +msgid "Submit Quick Reply" +msgstr "Изпрати бърз отговор" + +#: wpf.class.php:967 wpf_define.php:36 +msgid "Post" +msgstr "Пост" + +#: wpf.class.php:970 +msgid "on:" +msgstr "на:" + +#: wpf.class.php:976 wpf.class.php:985 wpf.class.php:2344 +msgid "Quote" +msgstr "Цитат" + +#: wpf.class.php:978 wpf.class.php:987 fs-admin/fs-admin.php:157 +#: fs-admin/fs-admin.php:1016 .\fs-admin/fs-admin.php:157 +#: .\fs-admin/fs-admin.php:1016 +msgid "Remove" +msgstr "Премахни" + +#: wpf.class.php:980 wpf.class.php:989 +msgid "Edit" +msgstr "Редактирай" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Topics: " +msgstr "Теми:" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Posts: " +msgstr "Отговори:" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "New posts" +msgstr "Нови мнения" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "No new posts" +msgstr "Няма нови мнения" + +#: wpf.class.php:1079 +msgid "Mark All Read" +msgstr "Маркирай всички като прочетени" + +#: wpf.class.php:1198 +msgid "No topics yet" +msgstr "Няма още теми !" + +#: wpf.class.php:1201 +msgid "in" +msgstr "в" + +#: wpf.class.php:1252 +msgid "Forums RSS" +msgstr "Форум RSS" + +#: wpf.class.php:1263 +msgid "Are you sure you want to remove this?" +msgstr "Наистина ли искате да премахнете това?" + +#: wpf.class.php:1317 wpf.class.php:1842 +msgid "Search Results" +msgstr "Резултат от търсенето " + +#: wpf.class.php:1320 +msgid "Profile" +msgstr "Профил " + +#: wpf.class.php:1329 wpf.class.php:1548 wpf.class.php:1855 +msgid "New Topic" +msgstr " Нова тема " + +#: wpf.class.php:1396 +msgid "Moderators:" +msgstr "Модератори:" + +#: wpf.class.php:1552 wpf.class.php:1612 +msgid "Unsubscribe" +msgstr "Отписване " + +#: wpf.class.php:1554 wpf.class.php:1614 +msgid "Subscribe" +msgstr "Известяване " + +#: wpf.class.php:1578 wpf.class.php:1591 +msgid "Undo Sticky" +msgstr "Отмяна на важността " + +#: wpf.class.php:1580 wpf.class.php:1593 +msgid "Sticky" +msgstr "Важна тема " + +#: wpf.class.php:1583 wpf.class.php:1596 +msgid "Re-open" +msgstr "Отново отключи" + +#: wpf.class.php:1585 wpf.class.php:1598 +msgid "Close" +msgstr " Затвори " + +#: wpf.class.php:1607 +msgid "Reply" +msgstr "Отговор " + +#: wpf.class.php:1617 +msgid "RSS feed" +msgstr "RSS-Абонамент " + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My profile" +msgstr "Профил" + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My Profile" +msgstr "Профил" + +#: wpf.class.php:1665 wpf.class.php:1673 +msgid "Forum Home" +msgstr "Начало " + +#: wpf.class.php:1717 +msgid "You are logged in as:" +msgstr "Вие сте влязъл като:" + +#: wpf.class.php:1723 +msgid "Username: " +msgstr "Потребителско име:" + +#: wpf.class.php:1724 +msgid "Password: " +msgstr "Парола:" + +#: wpf.class.php:1726 +msgid "Remember Me" +msgstr "Запомни ме " + +#: wpf.class.php:1762 +msgid "Administrator" +msgstr "Администратор" + +#: wpf.class.php:1766 +msgid "Moderator" +msgstr "Модератор" + +#: wpf.class.php:1836 +msgid "New Topics since last visit" +msgstr "Нови теми след последното посещение" + +#: wpf.class.php:1846 +msgid "Profile Info" +msgstr "Информация за профила" + +#: wpf.class.php:1910 +msgid "Edit Profile" +msgstr "Редактиране на профила" + +#: wpf.class.php:1914 wpf.class.php:1926 +msgid "Welcome" +msgstr "Здравей" + +#: wpf.class.php:1915 +msgid "Your last visit was:" +msgstr "Вашето последно посещение беше:" + +#: wpf.class.php:1917 +msgid "Show new topics since your last visit" +msgstr "Нови теми след последното ви посещение" + +#: wpf.class.php:1918 +msgid "Edit your forum options" +msgstr "Редактиране на опциите на форума" + +#: wpf.class.php:1920 +msgid "Log out" +msgstr "Изход" + +#: wpf.class.php:1925 +msgid "Welcome Guest, please login or" +msgstr "Здравейте, моля влезте в системата или се " + +#: wpf.class.php:1925 +msgid "register." +msgstr "регистрирайте." + +#: wpf.class.php:1930 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Здравейте, публикуването в този форум изисква " + +#: wpf.class.php:1930 +msgid "registration." +msgstr "регистрация." + +#: wpf.class.php:1938 +msgid "Show/Hide Header" +msgstr "Сгъсти / Разшири" + +#: wpf.class.php:1952 +msgid "Search forums" +msgstr "Търси във Форума" + +#: wpf.class.php:1987 wpf.class.php:2018 +msgid "Pages:" +msgstr "Страници:" + +#: wpf.class.php:2000 wpf.class.php:2031 +msgid "First" +msgstr "Първо" + +#: wpf.class.php:2011 wpf.class.php:2042 +msgid "Last" +msgstr "Последно" + +#: wpf.class.php:2125 +msgid "Post deleted" +msgstr "Поста е изтрит" + +#: wpf.class.php:2326 wpf.class.php:2330 fs-admin/fs-admin.php:159 +#: .\fs-admin/fs-admin.php:159 +msgid "View profile" +msgstr "Преглед на профила" + +#: wpf.class.php:2344 +msgid "Bold" +msgstr "Удебелен шрифт" + +#: wpf.class.php:2344 +msgid "Italic" +msgstr "Наклонен шрифт" + +#: wpf.class.php:2344 +msgid "Underline" +msgstr "Подчертан шрифт" + +#: wpf.class.php:2344 +msgid "Strikethrough" +msgstr "Зачеркнат шрифт" + +#: wpf.class.php:2344 +msgid "Code" +msgstr "Код" + +#: wpf.class.php:2344 +msgid "List" +msgstr "Списък" + +#: wpf.class.php:2344 +msgid "List item" +msgstr "Разделяне на параграф с единичен символ" + +#: wpf.class.php:2344 +msgid "Link" +msgstr "Връзка" + +#: wpf.class.php:2344 +msgid "Image" +msgstr "Изображение" + +#: wpf.class.php:2344 +msgid "Email" +msgstr "Емайл" + +#: wpf.class.php:2344 +msgid "Add Hex Color" +msgstr "Добави цвят" + +#: wpf.class.php:2344 +msgid "Embed YouTube Video" +msgstr "Постави YouTube видео" + +#: wpf.class.php:2344 +msgid "Embed Google Map" +msgstr "Вграждане на Google Map" + +#: wpf.class.php:2350 +msgid "Smile" +msgstr "Усмивка" + +#: wpf.class.php:2350 +msgid "Big Grin" +msgstr "Голяма усмивка" + +#: wpf.class.php:2350 +msgid "Sad" +msgstr "Тъжен" + +#: wpf.class.php:2350 +msgid "Neutral" +msgstr "Неутрален" + +#: wpf.class.php:2350 +msgid "Razz" +msgstr "Оплезен" + +#: wpf.class.php:2350 +msgid "Mad" +msgstr "Ядосан" + +#: wpf.class.php:2350 +msgid "Confused" +msgstr "Объркан" + +#: wpf.class.php:2350 +msgid "Eek!" +msgstr "Ококорен" + +#: wpf.class.php:2350 +msgid "Wink" +msgstr "Намигване" + +#: wpf.class.php:2350 +msgid "Surprised" +msgstr "Изненадан" + +#: wpf.class.php:2350 +msgid "Cool" +msgstr "Добре" + +#: wpf.class.php:2362 +msgid "Info Center" +msgstr "Информационен център" + +#: wpf.class.php:2369 +msgid "Posts in" +msgstr "Публикации в" + +#: wpf.class.php:2369 +msgid "Topics Made by" +msgstr "теми съставени от" + +#: wpf.class.php:2369 fs-admin/fs-admin.php:151 .\fs-admin/fs-admin.php:151 +msgid "Members" +msgstr "Потребителя" + +#: wpf.class.php:2369 +msgid "Latest Member:" +msgstr "Последен член:" + +#: wpf.class.php:2395 +msgid "New topics since your last visit" +msgstr "Нови теми след последното ви посещение" + +#: wpf.class.php:2442 +msgid "Summary" +msgstr "Обобщение" + +#: wpf.class.php:2448 wpf.class.php:2656 wpf.class.php:2678 wpf.class.php:2700 +#: fs-admin/wpf-add-forum.php:10 fs-admin/wpf-edit-forum-group.php:55 +#: fs-admin/wpf-edit-forum-group.php:125 fs-admin/wpf-usergroup-edit.php:31 +#: .\fs-admin/wpf-add-forum.php:10 .\fs-admin/wpf-edit-forum-group.php:55 +#: .\fs-admin/wpf-edit-forum-group.php:125 +#: .\fs-admin/wpf-usergroup-edit.php:31 +msgid "Name:" +msgstr "Име:" + +#: wpf.class.php:2453 +msgid "Registered:" +msgstr "Регистриран:" + +#: wpf.class.php:2461 +msgid "Position:" +msgstr "Позиция:" + +#: wpf.class.php:2464 +msgid "Website:" +msgstr "Сайт:" + +#: wpf.class.php:2468 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2472 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2475 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2479 +msgid "Biographical Info:" +msgstr "Биография :" + +#: wpf.class.php:2511 +msgid "Subject" +msgstr "Заглавие" + +#: wpf.class.php:2512 +msgid "Relevance" +msgstr "Съответствие" + +#: wpf.class.php:2514 +msgid "Posted" +msgstr "Публикувано" + +#: wpf.class.php:2579 +msgid "Closed topic" +msgstr "Затворена тема" + +#: wpf.class.php:2582 +msgid "Normal topic" +msgstr "Нормална тема" + +#: wpf.class.php:2585 +msgid "Hot topic" +msgstr "Гореща тема" + +#: wpf.class.php:2588 +msgid "Very Hot topic" +msgstr "Много Гореща тема" + +#: wpf.class.php:2620 +msgid "Security Code:" +msgstr "Код за сигурност:" + +#: wpf.class.php:2640 +msgid "Enter Security Code: (required)" +msgstr "Въведете код за сигурност: (Задължително)" + +#: wpf.class.php:2654 wpf.class.php:2676 +msgid "Forum post - " +msgstr "Форум мнение -" + +#: wpf.class.php:2655 wpf.class.php:2677 wpf.class.php:2699 +msgid "DETAILS:" +msgstr "ДЕТАЙЛИ:" + +#: wpf.class.php:2658 wpf.class.php:2680 wpf.class.php:2702 +msgid "Date:" +msgstr "Дата:" + +#: wpf.class.php:2659 wpf.class.php:2681 wpf.class.php:2703 +msgid "Reply Content:" +msgstr "Съдържание :" + +#: wpf.class.php:2660 wpf.class.php:2682 wpf.class.php:2704 +msgid "View Post Here:" +msgstr "Виж пост тук:" + +#: wpf.class.php:2698 +msgid "New Forum content - " +msgstr "Ново форум съдържание -" + +#: wpf.class.php:2701 +msgid "Email:" +msgstr "Емайл:" + +#: wpf.class.php:2740 wpf.class.php:2750 +msgid "Inbox" +msgstr "Пощенска кутия" + +#: wpf.class.php:2767 wpf.class.php:2780 +msgid "Send Message" +msgstr "Изпрати съобщение" + +#: wpf.class.php:2956 +msgid "Mingle Forum Post Options" +msgstr "Mingle Форум - Опции за постовете " + +#: wpf.class.php:2962 +msgid "Add this post to" +msgstr "Добави този пост към" + +#: wpf.class.php:2966 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "Да не се проверява повече, ако този пост вече е свързана с форума!" + +#: wpf.class.php:2998 +msgid "Join the Forum discussion on this post" +msgstr "Включете се в дискусионния форум за този пост" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Категория" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Тема" + +#: fs-admin/fs-admin.php:34 .\fs-admin/fs-admin.php:34 +msgid "You must specify a user group name." +msgstr "Трябва да посочите името на потребителската група." + +#: fs-admin/fs-admin.php:36 fs-admin/fs-admin.php:740 +#: fs-admin/wpf-edit-forum-group.php:17 fs-admin/wpf-usergroup-edit.php:14 +#: .\fs-admin/fs-admin.php:36 .\fs-admin/fs-admin.php:740 +#: .\fs-admin/wpf-edit-forum-group.php:17 .\fs-admin/wpf-usergroup-edit.php:14 +msgid "" +"You have choosen a name that already exists in the database, please specify " +"another" +msgstr "" +"Вие избрахте име, което вече съществува в базата данни, моля посочете друго." + +#: fs-admin/fs-admin.php:38 .\fs-admin/fs-admin.php:38 +msgid "User Group successfully added." +msgstr "Потребителската група е добавена успешно." + +#: fs-admin/fs-admin.php:56 .\fs-admin/fs-admin.php:56 +msgid "You haven't specified any user to add:" +msgstr "Вие не сте избрали никакви потребители за добавяне :" + +#: fs-admin/fs-admin.php:60 .\fs-admin/fs-admin.php:60 +msgid "You must choose a user group" +msgstr "Вие трябва да изберете една потребителска група " + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "Error" +msgstr "Грешка" + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "No such user:" +msgstr "Няма такъв потребител:" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "Warning" +msgstr "Предупреждение" + +#: fs-admin/fs-admin.php:73 fs-admin/fs-admin.php:78 +#: .\fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:78 +msgid "User" +msgstr "Потребител" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "is already in this group" +msgstr "вече е в тази група" + +#: fs-admin/fs-admin.php:78 .\fs-admin/fs-admin.php:78 +msgid "added successfully" +msgstr "успешно добавен " + +#: fs-admin/fs-admin.php:86 .\fs-admin/fs-admin.php:86 +msgid "Errors:" +msgstr "Грешки:" + +#: fs-admin/fs-admin.php:87 .\fs-admin/fs-admin.php:87 +msgid "Warnings:" +msgstr "Предупреждения: " + +#: fs-admin/fs-admin.php:88 .\fs-admin/fs-admin.php:88 +msgid "Users added:" +msgstr "Добавени потребители:" + +#: fs-admin/fs-admin.php:102 .\fs-admin/fs-admin.php:102 +msgid "User Group(s) successfully deleted." +msgstr "Потребителските Група(и) са изтрити успешно." + +#: fs-admin/fs-admin.php:110 .\fs-admin/fs-admin.php:110 +msgid "Member successfully removed." +msgstr "Потребителите успешно са премахнати." + +#: fs-admin/fs-admin.php:116 .\fs-admin/fs-admin.php:116 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Форум >> Управление на потребителските групи" + +#: fs-admin/fs-admin.php:116 fs-admin/fs-admin.php:805 +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:116 +#: .\fs-admin/fs-admin.php:805 .\fs-admin/fs-admin.php:1002 +msgid "add new" +msgstr "Добави нова" + +#: fs-admin/fs-admin.php:123 fs-admin/fs-admin.php:859 +#: .\fs-admin/fs-admin.php:123 .\fs-admin/fs-admin.php:859 +msgid "Delete" +msgstr "Изтри" + +#: fs-admin/fs-admin.php:163 fs-admin/fs-admin.php:169 +#: .\fs-admin/fs-admin.php:163 .\fs-admin/fs-admin.php:169 +msgid "Add members" +msgstr "Добавяне на потребители" + +#: fs-admin/fs-admin.php:168 .\fs-admin/fs-admin.php:168 +msgid "No members in this group" +msgstr "Няма потребители в тази група" + +#: fs-admin/fs-admin.php:231 .\fs-admin/fs-admin.php:231 +msgid "Skin successfully activated." +msgstr "Кожата успешно активирана." + +#: fs-admin/fs-admin.php:237 .\fs-admin/fs-admin.php:237 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Форум >> Опции на кожата" + +#: fs-admin/fs-admin.php:238 .\fs-admin/fs-admin.php:238 +msgid "Get More Skins" +msgstr "Вземи повече Кожи" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "" +"IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-" +"content/mingle-forum-skins/" +msgstr "" +"ВАЖНО: От версия 1.0.0.03 директорията на кожите е преместена на /wp-content/" +"mingle-forum-skins/" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "Why did you change it?" +msgstr "Защо е променена ?" + +#: fs-admin/fs-admin.php:242 .\fs-admin/fs-admin.php:242 +msgid "Screenshot" +msgstr "Screenshot" + +#: fs-admin/fs-admin.php:243 fs-admin/wpf-add-group.php:12 +#: .\fs-admin/fs-admin.php:243 .\fs-admin/wpf-add-group.php:12 +msgid "Name" +msgstr "Име" + +#: fs-admin/fs-admin.php:244 .\fs-admin/fs-admin.php:244 +msgid "Version" +msgstr "Версия" + +#: fs-admin/fs-admin.php:245 fs-admin/wpf-add-group.php:13 +#: fs-admin/wpf-edit-forum-group.php:59 .\fs-admin/fs-admin.php:245 +#: .\fs-admin/wpf-add-group.php:13 .\fs-admin/wpf-edit-forum-group.php:59 +msgid "Description" +msgstr "Описание" + +#: fs-admin/fs-admin.php:246 .\fs-admin/fs-admin.php:246 +msgid "Action" +msgstr "Действие" + +#: fs-admin/fs-admin.php:260 fs-admin/fs-admin.php:275 +#: .\fs-admin/fs-admin.php:260 .\fs-admin/fs-admin.php:275 +msgid "In Use" +msgstr "В употреба " + +#: fs-admin/fs-admin.php:262 fs-admin/fs-admin.php:277 +#: .\fs-admin/fs-admin.php:262 .\fs-admin/fs-admin.php:277 +msgid "Activate" +msgstr "Активиране" + +#: fs-admin/fs-admin.php:305 .\fs-admin/fs-admin.php:305 +msgid "About Mingle Forum" +msgstr "За Mingle Форум" + +#: fs-admin/fs-admin.php:308 .\fs-admin/fs-admin.php:308 +msgid "Current Version: " +msgstr "Текуща версия:" + +#: fs-admin/fs-admin.php:312 .\fs-admin/fs-admin.php:312 +msgid "" +"Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over " +"from WP Forum and has been improved upon GREATLY. It now fully supports " +"integration with or without the Mingle plugin (by Blair Williams). Also I " +"want to give a big thanks to Eric Hamby for his previous work on the forum " +"script." +msgstr "" +"Mingle форум има една проста мисия ; 'ДА СЕ ЗАДЪРЖИ ОПРОСТЕН!' Той е взет от " +"WP форум и е значително подобрен. Вече е напълно подкрепя интеграцията с или " +"без Mingle плъгин (от Блеър Уилямс). Също така искам да дам едина голяма " +"благодарност на Eric Hamby за предишните си работа по този скрипта на форума." + +#: fs-admin/fs-admin.php:314 .\fs-admin/fs-admin.php:314 +msgid "Author: " +msgstr "Автор:" + +#: fs-admin/fs-admin.php:315 .\fs-admin/fs-admin.php:315 +msgid "Plugin Page:" +msgstr "Страница на плъгина:" + +#: fs-admin/fs-admin.php:316 .\fs-admin/fs-admin.php:316 +msgid "Support Forum:" +msgstr "Форум подкрепа:" + +#: fs-admin/fs-admin.php:317 .\fs-admin/fs-admin.php:317 +msgid "Mingle Forum Skins:" +msgstr "Mingle Форум Кожи:" + +#: fs-admin/fs-admin.php:364 .\fs-admin/fs-admin.php:364 +msgid "Options successfully saved." +msgstr "Опциите успешно са записани." + +#: fs-admin/fs-admin.php:369 .\fs-admin/fs-admin.php:369 +msgid "Mingle Forum" +msgstr "Mingle Форум" + +#: fs-admin/fs-admin.php:373 .\fs-admin/fs-admin.php:373 +msgid "Statistic" +msgstr "Статистика" + +#: fs-admin/fs-admin.php:374 .\fs-admin/fs-admin.php:374 +msgid "Value" +msgstr "Стойност" + +#: fs-admin/fs-admin.php:378 .\fs-admin/fs-admin.php:378 +msgid "Number of posts:" +msgstr "Броят на мненията:" + +#: fs-admin/fs-admin.php:382 .\fs-admin/fs-admin.php:382 +msgid "Number of threads:" +msgstr "Броят на темите:" + +#: fs-admin/fs-admin.php:386 .\fs-admin/fs-admin.php:386 +msgid "Number of users:" +msgstr "Броят на потребителите:" + +#: fs-admin/fs-admin.php:390 .\fs-admin/fs-admin.php:390 +msgid "Total database size:" +msgstr "Размер на общата база данни:" + +#: fs-admin/fs-admin.php:394 .\fs-admin/fs-admin.php:394 +msgid "Database server:" +msgstr "Сървър на базата данни:" + +#: fs-admin/fs-admin.php:398 .\fs-admin/fs-admin.php:398 +msgid "Mingle Forum version:" +msgstr "Mingle Форум версия:" + +#: fs-admin/fs-admin.php:403 .\fs-admin/fs-admin.php:403 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Форум >> Общи опции" + +#: fs-admin/fs-admin.php:408 .\fs-admin/fs-admin.php:408 +msgid "default " +msgstr "по подразбиране" + +#: fs-admin/fs-admin.php:412 .\fs-admin/fs-admin.php:412 +msgid "Option Name" +msgstr "Име на опцията" + +#: fs-admin/fs-admin.php:413 .\fs-admin/fs-admin.php:413 +msgid "Option Input" +msgstr "Стойност на опцията" + +#: fs-admin/fs-admin.php:418 .\fs-admin/fs-admin.php:418 +msgid "Integrate WordPress Posts with Forum:" +msgstr "Интегриране на WordPress постове с Форумът:" + +#: fs-admin/fs-admin.php:422 fs-admin/fs-admin.php:489 +#: fs-admin/fs-admin.php:512 fs-admin/fs-admin.php:536 +#: fs-admin/fs-admin.php:579 fs-admin/fs-admin.php:592 +#: .\fs-admin/fs-admin.php:422 .\fs-admin/fs-admin.php:489 +#: .\fs-admin/fs-admin.php:512 .\fs-admin/fs-admin.php:536 +#: .\fs-admin/fs-admin.php:579 .\fs-admin/fs-admin.php:592 +msgid "Off" +msgstr "Изключено" + +#: fs-admin/fs-admin.php:426 .\fs-admin/fs-admin.php:426 +msgid "Posts per page:" +msgstr "Колко поста на страницата:" + +#: fs-admin/fs-admin.php:430 .\fs-admin/fs-admin.php:430 +msgid "Threads per page:" +msgstr "Колко Теми на страницата:" + +#: fs-admin/fs-admin.php:436 .\fs-admin/fs-admin.php:436 +msgid "Number of posts for Hot Topic:" +msgstr "Колко броя за Гореща тема:" + +#: fs-admin/fs-admin.php:440 .\fs-admin/fs-admin.php:440 +msgid "Number of posts for Very Hot Topic:" +msgstr "Колко броя за Много гореща тема:" + +#: fs-admin/fs-admin.php:444 .\fs-admin/fs-admin.php:444 +msgid "Username Display:" +msgstr "Показване на потребителското име : " + +#: fs-admin/fs-admin.php:457 .\fs-admin/fs-admin.php:457 +msgid "New User's Title:" +msgstr "Заглавие за нови потребители:" + +#: fs-admin/fs-admin.php:461 .\fs-admin/fs-admin.php:461 +msgid "User Level 1 Title:" +msgstr "Заглавие на Потребителско ниво 1 :" + +#: fs-admin/fs-admin.php:465 .\fs-admin/fs-admin.php:465 +msgid "User Level 1 Count:" +msgstr "Брой мнения за ниво 1:" + +#: fs-admin/fs-admin.php:466 .\fs-admin/fs-admin.php:466 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:469 .\fs-admin/fs-admin.php:469 +msgid "User Level 2 Title:" +msgstr "Заглавие на Потребителско ниво 2 :" + +#: fs-admin/fs-admin.php:473 .\fs-admin/fs-admin.php:473 +msgid "User Level 2 Count:" +msgstr "Брой мнения за ниво 2:" + +#: fs-admin/fs-admin.php:474 .\fs-admin/fs-admin.php:474 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:477 .\fs-admin/fs-admin.php:477 +msgid "User Level 3 Title:" +msgstr "Заглавие на Потребителско ниво 3:" + +#: fs-admin/fs-admin.php:481 .\fs-admin/fs-admin.php:481 +msgid "User Level 3 Count:" +msgstr "Брой мнения за ниво 3:" + +#: fs-admin/fs-admin.php:482 .\fs-admin/fs-admin.php:482 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:485 .\fs-admin/fs-admin.php:485 +msgid "Notify Admin on new posts:" +msgstr "Уведомява Администратора за нови теми:" + +#: fs-admin/fs-admin.php:492 .\fs-admin/fs-admin.php:492 +msgid "Show Forum Login Form:" +msgstr "Покажи на Форума 'Вход' за потребители:" + +#: fs-admin/fs-admin.php:496 fs-admin/fs-admin.php:504 +#: fs-admin/fs-admin.php:520 fs-admin/fs-admin.php:528 +#: fs-admin/fs-admin.php:544 .\fs-admin/fs-admin.php:496 +#: .\fs-admin/fs-admin.php:504 .\fs-admin/fs-admin.php:520 +#: .\fs-admin/fs-admin.php:528 .\fs-admin/fs-admin.php:544 +msgid "On" +msgstr "Включено" + +#: fs-admin/fs-admin.php:500 .\fs-admin/fs-admin.php:500 +msgid "Show Avatars in the forum:" +msgstr "Покажи Аватари във форума:" + +#: fs-admin/fs-admin.php:508 .\fs-admin/fs-admin.php:508 +msgid "Allow Images to be uploaded:" +msgstr "Позволете да се качват снимки:" + +#: fs-admin/fs-admin.php:516 .\fs-admin/fs-admin.php:516 +msgid "Show users Signature at the bottom of posts:" +msgstr "Покажи потребителския подпис в долната част на мненията:" + +#: fs-admin/fs-admin.php:524 .\fs-admin/fs-admin.php:524 +msgid "Use Forum RSS:" +msgstr "Използвай Форум RSS:" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "Use SEO friendly URLs:" +msgstr "Използвайте SEO приятелски URL адреси:" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "" +"IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" +"ВАЖНО: Оставете тази опция,| Изключена |, ако вашите постоянни връзки са " +"настроени на |по подразбиране|" + +#: fs-admin/fs-admin.php:540 .\fs-admin/fs-admin.php:540 +msgid "Registration required to post:" +msgstr "Регистрация за да може да се публикува:" + +#: fs-admin/fs-admin.php:549 .\fs-admin/fs-admin.php:549 +msgid "Installed version:" +msgstr "Инсталирана версия:" + +#: fs-admin/fs-admin.php:553 .\fs-admin/fs-admin.php:553 +msgid "GD Library is not installed" +msgstr "GD библиотека не е инсталирана" + +#: fs-admin/fs-admin.php:556 .\fs-admin/fs-admin.php:556 +msgid "Use Captcha for unregistered users:" +msgstr "Използвайте Captcha за нерегистрирани потребители:" + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "Requires " +msgstr "Изисква" + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "" +"If you have 'Registration required to post' above enabled, leave this off" +msgstr "" +"Ако сте отметнали по горе 'Регистрация за да може да се публикува' " +"оставете го изключено в противен случай отметнете отметката." + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Date format:" +msgstr "Формат на датата:" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Default date:" +msgstr "Дата по подразбиране:" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Check " +msgstr "Проверете" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "for date formatting." +msgstr "за форматиране на датата." + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Closed Categories (Admin posting only):" +msgstr "Затворени Категории (Само администратори могат да публикуват):" + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Comma separated list of Category ID's (Ex: 1, 2, 3)" +msgstr "Разделени със запетая списъкът от ID на категориите (Пример: 1, 2, 3)" + +#: fs-admin/fs-admin.php:571 .\fs-admin/fs-admin.php:571 +msgid "Users can reply in locked categories" +msgstr "Потребителите могат да пишат отговори в заключени категории." + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Time limit between posting:" +msgstr "Лимит от време между постовете: " + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Prevent lots of SPAM by making users wait a time period between posts." +msgstr "" +"Предотвратяване на Спам постове, като потребителите трябва да изчакат " +"период от време между постовете си." + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "seconds" +msgstr "секунди" + +#: fs-admin/fs-admin.php:588 .\fs-admin/fs-admin.php:588 +msgid "Disable Branding:" +msgstr "Изключване на Branding:" + +#: fs-admin/fs-admin.php:711 .\fs-admin/fs-admin.php:711 +msgid "Groups deleted:" +msgstr "Изтриване на групи:" + +#: fs-admin/fs-admin.php:712 .\fs-admin/fs-admin.php:712 +msgid "Forums deleted:" +msgstr "Изтриване на форуми:" + +#: fs-admin/fs-admin.php:713 .\fs-admin/fs-admin.php:713 +msgid "Threads deleted:" +msgstr "Изтриване на теми:" + +#: fs-admin/fs-admin.php:714 .\fs-admin/fs-admin.php:714 +msgid "Posts deleted:" +msgstr "Изтриване на мнения:" + +#: fs-admin/fs-admin.php:738 fs-admin/fs-admin.php:762 +#: .\fs-admin/fs-admin.php:738 .\fs-admin/fs-admin.php:762 +msgid "You must enter a name" +msgstr "Трябва да въведете име" + +#: fs-admin/fs-admin.php:747 .\fs-admin/fs-admin.php:747 +msgid "Category added successfully" +msgstr "Категорията е добавена успешно" + +#: fs-admin/fs-admin.php:759 .\fs-admin/fs-admin.php:759 +msgid "You must select a category" +msgstr "Трябва да изберете категория" + +#: fs-admin/fs-admin.php:765 .\fs-admin/fs-admin.php:765 +msgid "" +"You have choosen a forum name that already exists in this group, please " +"specify another" +msgstr "Избраното име вече съществува в тази група, моля да посочите друго" + +#: fs-admin/fs-admin.php:772 .\fs-admin/fs-admin.php:772 +msgid "Forum added successfully" +msgstr "Форума е добавен успешно" + +#: fs-admin/fs-admin.php:799 .\fs-admin/fs-admin.php:799 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Форум >> Категории и Форуми" + +#: fs-admin/fs-admin.php:821 fs-admin/fs-admin.php:851 +#: .\fs-admin/fs-admin.php:821 .\fs-admin/fs-admin.php:851 +msgid "Modify" +msgstr "Промени" + +#: fs-admin/fs-admin.php:860 .\fs-admin/fs-admin.php:860 +msgid "Add forum" +msgstr "Добави форум" + +#: fs-admin/fs-admin.php:884 .\fs-admin/fs-admin.php:884 +msgid "Group Moved Down" +msgstr "Премести Групата надолу" + +#: fs-admin/fs-admin.php:894 .\fs-admin/fs-admin.php:894 +msgid "Forum Moved Down" +msgstr "Премести форума надолу" + +#: fs-admin/fs-admin.php:904 .\fs-admin/fs-admin.php:904 +msgid "Group Moved Up" +msgstr "Премести Групата нагоре" + +#: fs-admin/fs-admin.php:914 .\fs-admin/fs-admin.php:914 +msgid "Forum Moved Up" +msgstr "Премести форума нагоре " + +#: fs-admin/fs-admin.php:950 fs-admin/fs-admin.php:957 +#: .\fs-admin/fs-admin.php:950 .\fs-admin/fs-admin.php:957 +msgid "Moderator successfully removed." +msgstr "Модератора успешно премахнат." + +#: fs-admin/fs-admin.php:952 .\fs-admin/fs-admin.php:952 +msgid "Moderator successfully saved." +msgstr "Модератора успешно записан." + +#: fs-admin/fs-admin.php:959 .\fs-admin/fs-admin.php:959 +msgid "Moderator NOT removed." +msgstr "Модератора не е премахнат." + +#: fs-admin/fs-admin.php:972 .\fs-admin/fs-admin.php:972 +msgid "You must select a user" +msgstr "Трябва да изберете потребител" + +#: fs-admin/fs-admin.php:976 .\fs-admin/fs-admin.php:976 +msgid "Global Moderator added successfully" +msgstr "Глобален Модератор добавен успешно" + +#: fs-admin/fs-admin.php:980 .\fs-admin/fs-admin.php:980 +msgid "Moderator added successfully" +msgstr "Модератор добавен успешно" + +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:1002 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Форум >> Управление на Модератори" + +#: fs-admin/fs-admin.php:1011 .\fs-admin/fs-admin.php:1011 +msgid "Currently moderating" +msgstr "В момента е модератор на " + +#: fs-admin/fs-admin.php:1015 .\fs-admin/fs-admin.php:1015 +msgid "Update" +msgstr "Опресни" + +#: fs-admin/fs-admin.php:1025 fs-admin/wpf-moderator.php:25 +#: .\fs-admin/fs-admin.php:1025 .\fs-admin/wpf-moderator.php:25 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Глобален Модератор: (Потребителя може да управлява всички форуми)" + +#: fs-admin/fs-admin.php:1044 .\fs-admin/fs-admin.php:1044 +msgid "No moderators yet" +msgstr "Няма още модератори" + +#: fs-admin/fs-admin.php:1069 .\fs-admin/fs-admin.php:1069 +msgid "Ads saved successfully" +msgstr "Рекламата успешно е добавена" + +#: fs-admin/fs-admin.php:1074 .\fs-admin/fs-admin.php:1074 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Форум Реклама >> Опции" + +#: fs-admin/fs-admin.php:1076 .\fs-admin/fs-admin.php:1076 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML е разрешено във всички рекламни площи" + +#: fs-admin/fs-admin.php:1080 .\fs-admin/fs-admin.php:1080 +msgid "Ads Option" +msgstr "Настройки на Рекламата " + +#: fs-admin/fs-admin.php:1087 .\fs-admin/fs-admin.php:1087 +msgid "Enable Area Above Forum" +msgstr "Разрешаване на пространство най-горе на форума" + +#: fs-admin/fs-admin.php:1089 fs-admin/fs-admin.php:1097 +#: fs-admin/fs-admin.php:1105 fs-admin/fs-admin.php:1113 +#: fs-admin/fs-admin.php:1121 fs-admin/fs-admin.php:1129 +#: fs-admin/fs-admin.php:1137 .\fs-admin/fs-admin.php:1089 +#: .\fs-admin/fs-admin.php:1097 .\fs-admin/fs-admin.php:1105 +#: .\fs-admin/fs-admin.php:1113 .\fs-admin/fs-admin.php:1121 +#: .\fs-admin/fs-admin.php:1129 .\fs-admin/fs-admin.php:1137 +msgid "css-value:" +msgstr "CSS-стойност:" + +#: fs-admin/fs-admin.php:1095 .\fs-admin/fs-admin.php:1095 +msgid "Enable Area Below Forum" +msgstr "Разрешаване на пространство най-долу на форума" + +#: fs-admin/fs-admin.php:1103 .\fs-admin/fs-admin.php:1103 +msgid "Enable Area Above Branding" +msgstr "Разрешаване на пространство над Branding" + +#: fs-admin/fs-admin.php:1111 .\fs-admin/fs-admin.php:1111 +msgid "Enable Area Above Info Center" +msgstr "Разрешаване на пространство над Информационния Център" + +#: fs-admin/fs-admin.php:1119 .\fs-admin/fs-admin.php:1119 +msgid "Enable Area Above Breadcrumbs" +msgstr "Разрешаване на пространство над Breadcrumbs" + +#: fs-admin/fs-admin.php:1127 .\fs-admin/fs-admin.php:1127 +msgid "Enable Area Above Quick Reply Form" +msgstr "Разрешаване на пространство над Бърз отговор " + +#: fs-admin/fs-admin.php:1135 .\fs-admin/fs-admin.php:1135 +msgid "Enable Area Below First Post" +msgstr "Разрешаване на пространство най-долу на първия пост" + +#: fs-admin/fs-admin.php:1142 .\fs-admin/fs-admin.php:1142 +msgid "Below you can modify/add your own CSS" +msgstr "По-долу можете да променяте или добавите свои собствен CSS" + +#: fs-admin/fs-admin.php:1143 .\fs-admin/fs-admin.php:1143 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "ЗАБЕЛЕЖКА: Ако не знаете какво е това, оставете полетата празни" + +#: fs-admin/fs-admin.php:1150 .\fs-admin/fs-admin.php:1150 +msgid "Save Options" +msgstr "Запазване на опциите" + +#: fs-admin/wpf-add-forum.php:5 .\fs-admin/wpf-add-forum.php:5 +msgid "Add forum to" +msgstr "Добави форум за " + +#: fs-admin/wpf-add-forum.php:14 fs-admin/wpf-edit-forum-group.php:129 +#: fs-admin/wpf-usergroup-edit.php:35 .\fs-admin/wpf-add-forum.php:14 +#: .\fs-admin/wpf-edit-forum-group.php:129 +#: .\fs-admin/wpf-usergroup-edit.php:35 +msgid "Description:" +msgstr "Описание:" + +#: fs-admin/wpf-add-forum.php:31 fs-admin/wpf-edit-forum-group.php:134 +#: .\fs-admin/wpf-add-forum.php:31 .\fs-admin/wpf-edit-forum-group.php:134 +msgid "Save forum" +msgstr "Запазване на форума" + +#: fs-admin/wpf-add-group.php:7 .\fs-admin/wpf-add-group.php:7 +msgid "Add category" +msgstr "Добавяне на категория" + +#: fs-admin/wpf-add-group.php:21 .\fs-admin/wpf-add-group.php:21 +msgid "Save category" +msgstr "Запазване на категорията" + +#: fs-admin/wpf-add-usergroup.php:23 .\fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "Запазване на потребителската група" + +#: fs-admin/wpf-addusers.php:21 .\fs-admin/wpf-addusers.php:21 +msgid "Select User group" +msgstr "Изберете потребителска група" + +#: fs-admin/wpf-addusers.php:31 .\fs-admin/wpf-addusers.php:31 +msgid "Add users" +msgstr "Добави потребител" + +#: fs-admin/wpf-edit-forum-group.php:12 .\fs-admin/wpf-edit-forum-group.php:12 +msgid "You must specify a group name" +msgstr "Трябва да посочите името на групата" + +#: fs-admin/wpf-edit-forum-group.php:24 .\fs-admin/wpf-edit-forum-group.php:24 +msgid "Group updated successfully" +msgstr "Групата е обновена успешно" + +#: fs-admin/wpf-edit-forum-group.php:34 .\fs-admin/wpf-edit-forum-group.php:34 +msgid "You must specify a forum name" +msgstr "Трябва да посочите името на форума" + +#: fs-admin/wpf-edit-forum-group.php:37 .\fs-admin/wpf-edit-forum-group.php:37 +msgid "Forum updated successfully" +msgstr "Форума е обновен успешно" + +#: fs-admin/wpf-edit-forum-group.php:49 .\fs-admin/wpf-edit-forum-group.php:49 +msgid "Edit category" +msgstr "Редактиране на категория" + +#: fs-admin/wpf-edit-forum-group.php:63 .\fs-admin/wpf-edit-forum-group.php:63 +msgid "User Groups:" +msgstr "Потребителски Групи:" + +#: fs-admin/wpf-edit-forum-group.php:66 .\fs-admin/wpf-edit-forum-group.php:66 +msgid "" +"Members of the checked User Groups have access to the forums in this " +"category:" +msgstr "Кой членове имат право на достъп до форумите в тази категория:" + +#: fs-admin/wpf-edit-forum-group.php:98 .\fs-admin/wpf-edit-forum-group.php:98 +msgid "There are no User Groups" +msgstr "Няма потребителски групи" + +#: fs-admin/wpf-edit-forum-group.php:105 +#: .\fs-admin/wpf-edit-forum-group.php:105 +msgid "Save group" +msgstr "Записване на група" + +#: fs-admin/wpf-edit-forum-group.php:121 +#: .\fs-admin/wpf-edit-forum-group.php:121 +msgid "Edit forum" +msgstr "Редактиране на форума" + +#: fs-admin/wpf-moderator.php:19 .\fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "Изберете потребител" + +#: fs-admin/wpf-moderator.php:36 .\fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "Добави модератор" + +#: fs-admin/wpf-usergroup-edit.php:11 .\fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "Трябва да посочите името на потребителската група " + +#: fs-admin/wpf-usergroup-edit.php:18 .\fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "Потребителската група е обновена успешно " + +#: fs-admin/wpf-usergroup-edit.php:26 .\fs-admin/wpf-usergroup-edit.php:26 +msgid "Edit User Group" +msgstr "Редактиране на потребителската група" + +#: fs-admin/wpf-usergroup-edit.php:40 .\fs-admin/wpf-usergroup-edit.php:40 +msgid "Save User Group" +msgstr "Запазване на потребителската група" + +#~ msgid "Cheating, are we?" +#~ msgstr "Опитваш се да мамиш ?" + +#~ msgid "RSS-Feed" +#~ msgstr "RSS-Абонамент " + +#~ msgid "Who is online" +#~ msgstr "Кой е на линия" + +#~ msgid "There is" +#~ msgstr "Има" + +#~ msgid "online now." +#~ msgstr "онлайн." + +#~ msgid "Most users ever online were" +#~ msgstr "Най-много потребители онлайн са били " + +#~ msgid "Today's birthdays" +#~ msgstr "Рождениците днес" + +#~ msgid "Add this topic to your email notifications?" +#~ msgstr "Добави тази тема за емайл известяване ?" + +#~ msgid "Search" +#~ msgstr "Търсене |" + +#~ msgid "Search for:" +#~ msgstr "Търсене на:" + +#~ msgid "By user:" +#~ msgstr "От потребител:" + +#~ msgid "Message Age:" +#~ msgstr "Възраст на съобщение:" + +#~ msgid "Between" +#~ msgstr "Между" + +#~ msgid "and" +#~ msgstr "и" + +#~ msgid "days" +#~ msgstr "дни" + +#~ msgid "Click to choose Forum(s) to search" +#~ msgstr "Кликнете, за да изберете форум(и) за търсене" + +#~ msgid "Check all" +#~ msgstr "Проверете всички" + +#~ msgid "Start Search" +#~ msgstr "Старт на търсенето" + +#~ msgid "New post in forum:" +#~ msgstr "Нова темата във Форума:" + +#~ msgid "General Options" +#~ msgstr "Общи опции" + +#~ msgid "Categories and forums" +#~ msgstr "Категории и форми" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Валидни опции: user_login, nickname, display_name, first_name, last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Уведоми ме, когато получа нови съобщения." + +#~ msgid "Feed" +#~ msgstr "Абонамент" + +#~ msgid "Messages" +#~ msgstr "Съобщения" + +#~ msgid "New Message" +#~ msgstr "Ново съобщение" + +#~ msgid "Read Message Thread" +#~ msgstr "Четене на съобщението" + +#~ msgid "new" +#~ msgstr "нови" + +#~ msgid "Use Private Messages:" +#~ msgstr "Използвайте лични съобщения:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Препоръчвам използването на " + +#~ msgid "instead." +#~ msgstr "плъгина вместо това." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Максимален съобщения в пощенска кутия (0 = неограничено):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Администраторите винаги имат неограничен брой съобщения" + +#~ msgid "Message Deleted" +#~ msgstr "Изтриване на съобщение" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Вашето съобщение беше изтрито!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Обратно към вашата пощенска кутия" + +#~ msgid "ERROR" +#~ msgstr "ГРЕШКА" + +#~ msgid "Create New Message" +#~ msgstr "Създаване на ново съобщение" + +#~ msgid "Unlimited" +#~ msgstr "Неограничен" + +#~ msgid "Message Box Size" +#~ msgstr "Размер на пощенската кутия" + +#~ msgid "of" +#~ msgstr "от" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Кутията за съобщения е пълна!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Не може да изпращате/получавате нови съобщения" + +#~ msgid "Started By" +#~ msgstr "Написано от" + +#~ msgid "Last Reply" +#~ msgstr "Последно отговорени" + +#~ msgid "Unread" +#~ msgstr "Непрочетено" + +#~ msgid "Read" +#~ msgstr "Прочетено" + +#~ msgid "No Messages" +#~ msgstr "Няма съобщения" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "За съжаление нямате съобщения!" + +#~ msgid "Message Sent" +#~ msgstr "Съобщението е изпратено" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Съобщението беше изпратено успешно!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Обратно във вашите съобщения" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Получили сте ново съобщение от" + +#~ msgid "follow this link to view:" +#~ msgstr "Следвайте тази връзка, за да видите:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Писмото не можа да се изпрати ! " + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Пощенската кутия е ПЪЛНА !" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Моля, попълнете всички полета, преди да изпратите съобщението!" + +#~ msgid "To:" +#~ msgstr "До:" + +#~ msgid "Select User" +#~ msgstr "Изберете Потребител" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "" +#~ "Кликнете тук и започнете да въвеждате потребителско име за да го " +#~ "намерите по-бързо" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Трябва да сте логнати за да може да изпратите лично съобщение!" + +#~ msgid "Sender" +#~ msgstr "Подател" + +#~ msgid "Message Contents" +#~ msgstr "Съдържание на съобщението" + +#~ msgid "Reply:" +#~ msgstr "Отговор:" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingle Теми форум:" + +#~ msgid "Posts" +#~ msgstr "Публикации" + +#~ msgid "Topics " +#~ msgstr "Теми" + +#~ msgid "Posted on: " +#~ msgstr "Пуснато на:" diff --git a/i18n/mingleforum-cs_CZ.mo b/i18n/mingleforum-cs_CZ.mo new file mode 100644 index 0000000..ccf5a66 Binary files /dev/null and b/i18n/mingleforum-cs_CZ.mo differ diff --git a/i18n/mingleforum-cs_CZ.po b/i18n/mingleforum-cs_CZ.po new file mode 100644 index 0000000..6c18324 --- /dev/null +++ b/i18n/mingleforum-cs_CZ.po @@ -0,0 +1,1718 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-04-15 12:14-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: /wp-content/plugins/mingle-forum/i18n\n" +"Plural-Forms: Plural-Forms: nplurals=3; \\ plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Poedit-Language: Czech\n" +"X-Poedit-Country: CZECH REPUBLIC\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Zdroj fóra" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Téma:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Fórum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Téma:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "RSS je vypnuto" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Neznámý uživatel" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "You have no subscriptions at this time" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Upravit nastavení" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Zobrazit můj profil ostatním?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Budete dostávat upozornění z těchto témat:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Uložit nastavení" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Promluvme si." + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Bezpečnostní kód není správný" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Došlo k chybě" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Musíte zadat předmět" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Musíte zadat zprávu" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "vytvořeno téma fóra:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "odpověděl na téma fóra:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citováno z" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "dne" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Odpovědět" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Předmět:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Zpráva:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Odeslat" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Uprav příspěvek" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Ulož příspěvek" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Přidat nové téma" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Nemáte oprávnění přidat příspěvek." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "Nováček" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "Začátečník" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "Zkušený uživatel" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:171 +#: wpf.class.php:172 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum - Nastavení " + +#: wpf.class.php:172 +msgid "Options" +msgstr "Nastavení" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "Ads" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Vzhled" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "Mingle Forum >> Kategorie a Fora" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "Struktura fora" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderátoři" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Skupiny uživatelů" + +#: wpf.class.php:178 +msgid "About" +msgstr "O fóru" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Poslední aktivity na fóru" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "od:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Název se zobrazí v postranním panelu:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Kolik položek chcete zobrazit?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Stránka načtena za" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "vteřin." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Fórum " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Verze" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Host" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "od " + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Poslední příspěvek od" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Je nám líto, ale nemáte přístup k tomuto fóru" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Stav" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Název příspěvku" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Započato" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Odpovědí" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Zhlédnutí" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Poslední příspěvek" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Důležitá témata" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Přesuň téma" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Vymaž téma" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nové příspěvky od poslední návštěvy" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Témata fóra" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Odstranit toto téma z vašeho e-mailového upozornění?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Přidat toto téma na váše e-maiové upozornění?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "Téma bylo uzavřeno" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Příspěvků:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Rychlá odpověď:" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Odeslat:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Příspěvek" + +#: wpf.class.php:939 +msgid "on:" +msgstr "dne:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Citovat" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Odstranit" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Upravit" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Témata:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Příspěvky:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nové příspěvky" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Žádné nové téma" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "Označ vše přečtené" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Zatím žádná témata" + +#: wpf.class.php:1154 +msgid "in" +msgstr "v" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS fóra" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "Jste si jistý, že to chcete opravdu odstranit?" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Výsledky hledání" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nové téma" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderátoři:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Odebrat důležité" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Důležité" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Znovu otevřít" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Zavřít" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Odpověď" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +msgid "Unsubscribe" +msgstr "Zrušit odebírání" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Odebírat" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "RSS kanál" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS kanál" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Můj profil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Můj profil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Přehled fóra" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Odhlásit" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Hledat" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Jste přihlášen jako:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Uživatel: " + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Heslo: " + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Pamatuj si mne" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrátor" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderátor" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nová témata od poslední návštěvy" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Info o profilu" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Uprav profil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Vítejte" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Tvá poslední návštěva:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Ukázat nová témata od poslední návštěvy" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Upravte své nastavení fóra" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Vítejte, přihlaste se prosím, nebo" + +#: wpf.class.php:1928 +msgid "register." +msgstr "se registrujte" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Vítejte, zadání příspěvku v tomto fóru vyžaduje" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registraci." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Zobraz/skryj hlavičku" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Prohledej fóra" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Stránky:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "První" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +msgid "Last" +msgstr "Poslední" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Příspěvek smazán" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Ukázat profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Tučné" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Zkosené" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Podtržení" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Přeškrtnuté" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kód" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Seznam" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Položka seznamu" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Odkaz" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Obrázek" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Zadej Hex kód barvy" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Vložit YouTube Video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "Embed Google Map" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Úsměv" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Velký úsměv" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Smutný" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutrální" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Šílený" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Zmatený" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Mrkejte" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Překvapený" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Centrum informací" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Uveřejněno v" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Vytvořil" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Členové" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Poslední člen:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nová témata od vaší poslední návštěvy" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Souhrn" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Jméno:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registrován:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Pozice:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Web:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "ICQ:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Info:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Hledej:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Mezi členy:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Stáří zprávy:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Mezi" + +#: wpf.class.php:2467 +msgid "and" +msgstr "a" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dny" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Vyber fórum k prohledávání" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Vybrat vše" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Hledej" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Předmět" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevantnost" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Přidáno" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Uzavřené téma" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Obyčejné téma" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Horké téma" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Velmi horké téma" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Bezpečnostní kód:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Zadejte bezpečnostní kód: (vyžadováno)" + +#: wpf.class.php:2685 +msgid "New post in forum:" +msgstr "Nový příspěvek ve foru:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "Detaily" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Datum:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Obsah zprávy:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Nové téma" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Přijaté" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Pošli zprávu" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategorie" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Téma" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Musíte zadat uživatelské jméno skupiny." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Vybrali jste si jméno, které již existuje v databázi, vyberte jiné" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Skupina úspěšně přidána." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Nezadali jste žádného uživatele k přidání:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Musíte vybrat skupinu uživatelů" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Chyba" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Žádný takový uživatel:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Upozornění" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Člen" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "už v této skupině existuje" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "přidán úzpěšně" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Chyby:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Upozornění:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Přidaní členové:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Skupina uživatelů odstraněna úspěšně." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Člen odstraněn úspěšně." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Spravuj skupiny uživatelů" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "Přidat" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Smazat" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Přidej členy" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "V této skupině nejso žádní členové." + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Motiv aktivován úspěšně." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Nastavení motivu" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Stáhni víc motivů" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "Upozornění: Od verze 1.0.03 byl adresář skins přesunut do /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Proč se to změnilo?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Náhled" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Jméno" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Verze" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Popis" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Akce" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Používán" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivovat" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "O aplikaci" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Současná verze:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum má jediný jednoduchý úkol, a to 'Zůstat s úsměvem!'. Bylo přejato z WP Fora a bylo velmi vylepšeno. Nyní je nožno jej použít s a nebo i bez Mingle pluginu od Blaira Williamse. Také velmi děkujeme Ericu Hambymu, za jeho předešlou práci na skriptu fóra." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Stránka pluginu:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Fórum podpory:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum skiny " + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Nastavení úspěšně uloženo." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistika" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Hodnota" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Počet příspěvků:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Počet vláken:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Počet členů:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Velikost databáze:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Server databáze:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Verze Mingle forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Základní nastavení" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "výchozí" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Volba názvu" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Volba vstupu" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Příspěvků na stránku:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Vláken na stránku:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Počet příspěvků pro horké téma" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Počet příspěvků pro velmi horké téma" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Uživatel: " + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Nováček:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Uživatel 1. stupeň:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Uživatel 1. stupeň počet:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Uživatel 2. stupeň:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Uživatel 2. stupeň počet:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Uživatel 3. stupeň:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Uživatel 3. stupeň počet:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:467 +msgid "Notify Admin on new posts:" +msgstr "Upozornit admina na nové téma:" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "Vypnuto" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Zobraz přihlašovací formulář" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "Zapnuto" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Ukazuj Avatary ve fóru:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Zobraz informace o uživateli pod příspěvkem" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "RSS fóra" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "Použij URL vhodné k SEO" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "Důležité: Nechejte tuto možnost vypnutou, jestliže máte nastaveny trvalé odkazy na \"základní\"" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Přispívat mohou pouze registrovaní:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Instalovaná verze:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "Knihovna GD není nainstalována" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Použít Captcha pro neregistrované uživatele" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Vyžaduje" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Jestliže máte horní položku \"Pro možnost přidání příspěvku se zaregistrujte\" zapnutou, pak nechte toto vypnuté" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Formát data:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Výchozí datum:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Vybrat" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "pro formátování data." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Smazané skupiny:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Smazaná fóra:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Smazaná vlákna:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Smazané příspěvky:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Musíte zadat jméno" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategorie úspěšně vložena" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Musíte vybrat kategorii" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Vybrali jste název fóra, které zde už existuje. Prosím vyberte jiné" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Fórum úspěšně vloženo" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorie a Fóra" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Uprav" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Přidej fórum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "Skupina přesunuta níže" + +#: fs-admin/fs-admin.php:837 +msgid "Forum Moved Down" +msgstr "Forum přesunuto níže" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "Skupina přesunuta výše" + +#: fs-admin/fs-admin.php:857 +msgid "Forum Moved Up" +msgstr "Forum přesunuto výše" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderátor úspěšně odebrán." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderátor úspěšně uložen." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderátor NEBYL odebrán." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Musíte vybrat uživatele" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Hlavní moderátor úspěšně přidán" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderátor úspěšně přidán" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Správa moderátorů" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Právě upravovaný" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Aktuální" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Hlavní moderátor: (Člen může moderovat všechna fora)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Zatím bez moderátorů" + +#: fs-admin/fs-admin.php:1014 +msgid "Ads saved successfully" +msgstr "Příspěvky přidány úspěšně" + +#: fs-admin/fs-admin.php:1019 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum příspěvky >> Nastavení " + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "Ve všech oblastech je povoleno HTML" + +#: fs-admin/fs-admin.php:1025 +msgid "Ads Option" +msgstr "Nastavení příspěvků" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "Povolit oblast nad forem" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "css-hodnota:" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "Povolit oblast pod forem" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "Povolit oblast nad značkou" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "Povolit oblast nad centrem informací" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "Enable Area Above Breadcrumbs" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "Povolit oblast nad formulářem rychlé odpovědi" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "Povolit oblast pod prvním příspěvkem" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "Níže můžete modifikovat kód CSS nebo přidat svůj vlastní" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "Důležité: Jestli nevíš na cotohle je, tak na to nesahej" + +#: fs-admin/fs-admin.php:1095 +msgid "Save Options" +msgstr "Uložit nastavení" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Přidej fórum" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Popis:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Ulož fórum" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Přidej kategorii" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Ulož kategorii" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Ulož skupinu" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Vyber skupinu" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Přidej člena" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Musíte specifikovat jméno skupiny" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Skupina úspěšně upravena" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Musíte upřesnit jméno fóra" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum úspěšně upraveno" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Uprav kategorii" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Skupiny:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Členové vybraných skupin mají přístup k fórům v této kategorii:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Zde nejsou žádné skupiny" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Ulož skupinu" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Uprav fórum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Vyber člena" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Přidej moderátora" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Musíte upřesnit jméno skupiny" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Skupina úspěšně změněna" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Uprav skupinu" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Ulož skupinu" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Administrátoři mají vždy neomezený počet zpráv ve schránce" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Zpět do zpráv" + +#~ msgid "Back To Your Messages" +#~ msgstr "Zpět k vašim zprávám" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorie a témata" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "Začněte psát členovo jméno, najdete ho rychleji" + +#~ msgid "Create New Message" +#~ msgstr "Vytvoř novou zprávu" + +#~ msgid "ERROR" +#~ msgstr "CHYBA" + +#~ msgid "Feed" +#~ msgstr "Zdroj" + +#~ msgid "General Options" +#~ msgstr "Základní nastavení" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Doporučuji vypnout tuto volbu a použít" + +#~ msgid "Last Reply" +#~ msgstr "Poslední odpověď" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Maximální počet zpráv ve schránce (0=neomezený)" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Složka zpráv je plná!" + +#~ msgid "Message Box Size" +#~ msgstr "velikost složky zpráv" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Zpráva nebyla odeslána!" + +#~ msgid "Message Deleted" +#~ msgstr "Zpráva vymazána" + +#~ msgid "Message Sent" +#~ msgstr "Zpráva odeslána" + +#~ msgid "Messages" +#~ msgstr "Zprávy" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingle Forum motivy:" + +#~ msgid "New Message" +#~ msgstr "Nová zpráva" + +#~ msgid "New reply on topic:" +#~ msgstr "Nová odpověď k tématu:" + +#~ msgid "No Messages" +#~ msgstr "Žádné zprávy" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Informovat při příchodu nové zprávy?" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Prosím vyplňte všechna pole před odesláním zprávy." + +#~ msgid "Posted on: " +#~ msgstr "Publikováno:" + +#~ msgid "Posts" +#~ msgstr "Příspěvky" + +#~ msgid "Read" +#~ msgstr "Číst" + +#~ msgid "Read Message Thread" +#~ msgstr "Přečtěte si vlákno téma" + +#~ msgid "Remove this post?" +#~ msgstr "Odstranit tento příspěvek?" + +#~ msgid "Reply:" +#~ msgstr "Odpověď:" + +#~ msgid "Select User" +#~ msgstr "Vyber člena" + +#~ msgid "Sender" +#~ msgstr "Odesilatel" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Nemáte žádné nové zprávy!" + +#~ msgid "Started By" +#~ msgstr "Započato" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Zpráva byla úspěšně odeslána!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Adresátova schránka je plná!" + +#~ msgid "To:" +#~ msgstr "Pro:" + +#~ msgid "Topics " +#~ msgstr "Témata" + +#~ msgid "Unlimited" +#~ msgstr "Nelimitováno" + +#~ msgid "Unread" +#~ msgstr "Nepřečteno" + +#~ msgid "Use Private Messages:" +#~ msgstr "Soukromé zprávy:" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Nejste oprávněn toto prohlížet." + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Pro psaní soukromých zpráv musíte být přihlášen." + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Nemůžete přijímat/odesílat nové zprávy" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Přijal jste novou zprávu od" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Vaše zpráva byla smazána!" + +#~ msgid "follow this link to view:" +#~ msgstr "následuj tento odkaz k přečtení:" + +#~ msgid "instead." +#~ msgstr "místo toho." + +#~ msgid "new" +#~ msgstr "nový" + +#~ msgid "of" +#~ msgstr "z" diff --git a/i18n/mingleforum-da_DK.mo b/i18n/mingleforum-da_DK.mo new file mode 100644 index 0000000..c86d9e9 Binary files /dev/null and b/i18n/mingleforum-da_DK.mo differ diff --git a/i18n/mingleforum-da_DK.po b/i18n/mingleforum-da_DK.po new file mode 100644 index 0000000..eb7ca45 --- /dev/null +++ b/i18n/mingleforum-da_DK.po @@ -0,0 +1,1615 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:39-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2;plural=n != 1;\n" +"X-Poedit-Language: Danish\n" +"X-Poedit-Country: DENMARK\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_n_noop:1,2;_nx_noop:4c,1,2;_x:1,2c;_c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c\n" +"X-Poedit-Basepath: c:\\wamp\\www\\plugintester\\wp-content\\plugins\\mingle-forum\\\n" +"X-Poedit-SearchPath-0: c:\\wamp\\www\\plugintester\\wp-content\\plugins\\mingle-forum\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forumfeed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Forumemne:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Emne: " + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Ingen bruger med det navn" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Redigér forumindstillinger" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Tillad andre at se min profil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Du får e-mail-notifikationer på følgende emner:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Gem indstillinger" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Hva' så? Snyder vi?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Sikkerhedskode matcher ikke" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Der er sket en fejl" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Du skal skrive et emne" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Du skal skrive en besked" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "oprettede forumemnet:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "svarede på forumemnet:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citat fra" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "den" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Skriv svar" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Emne:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Besked:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Send" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Redigér indlæg" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Gem indlæg" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Skriv nyt indlæg" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Beklager, men du har ikke tilladelse til at poste indlæg." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Design-indstillinger" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Navn på indstilling" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Designs" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategorier & Forummer" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderatorer" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Brugergrupper" + +#: wpf.class.php:178 +msgid "About" +msgstr "Om" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Seneste aktivitet i forum" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "af:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Den titel, der skal vises i sidepanelet:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Hvor mange vil du vise?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Side indlæst på:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekunder." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Version:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Gæst" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "af" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Nyeste indlæg af" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Beklager, men du har ikke adgang til dette forum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Emneoverskrift" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Oprettet af" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Svar" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Visninger" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Sidste indlæg" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Fastgjorte emner" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Flyt emne" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Slet emne" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nye indlæg siden sidste besøg" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Forumemner" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Fjern dette emne fra dine e-mail-notifikationer?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Tilføj dette emne til dine e-mail-notifikationer?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "EMNE LUKKET" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Forfatter" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Indlæg:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Svar" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Indlæg" + +#: wpf.class.php:939 +msgid "on:" +msgstr "den:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Citat" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Fjern" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Redigér" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Emner: " + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Indlæg: " + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nye indlæg" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Ingen nye indlæg" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Endnu ingen emner" + +#: wpf.class.php:1154 +msgid "in" +msgstr "i" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Forum-RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Søgeresultater" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nyt emne" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatorer:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Fjern fastgørelse af emne" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Fastgjort emne" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Genåbn" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Luk" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Svar" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Abonnér" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Abonnér" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS-feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS-feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Min profil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Min profil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Forum forside" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Log ud" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Søg" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Du er logget ind som:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Brugernavn: " + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Kodeord: " + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Husk mig" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nye emner siden sidste besøg" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Profilinfo" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Redigér profil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Velkommen" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Du var sidst på besøg:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Vis nye emner siden dit sidste besøg" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Redigér dine forumindstillinger" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Velkommen, gæst! Log ind eller" + +#: wpf.class.php:1928 +msgid "register." +msgstr "registrér dig." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Velkommen, gæst! For at skrive indlæg kræves det, at du bliver" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registreret." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Vis/Skjul header" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Søg i forummerne" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Sider:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Liste" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Liste" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Indlæg slettet" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Vis profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Fed" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Kursiv" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Understreget" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Gennemstreget" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kode" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Liste" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Punkt på liste" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Billede" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Tilføj hex-farve" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Indsæt YouTube-video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Smil" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Stort smil" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Trist" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutral" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Række tunge" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Sur" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Forvirret" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Oj" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Blink" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Overrasket" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Sej" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Infocenter" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Indlæg i" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Indlæg oprettet af" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Medlemmer" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Nyeste medlem:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nye emner siden dit sidste besøg" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Resumé" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Navn:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registreret:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Position:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Biografisk info:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Søg efter:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Af bruger:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Alder på besked:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Mellem" + +#: wpf.class.php:2467 +msgid "and" +msgstr "og" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dage" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Klik for at vælge forum(mer), du vil søge i" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Vælg alle" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Start søgning" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Emne" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevans" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Postet" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Lukket emne" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normalt emne" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Populært emne" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Meget populært emne" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Sikkerhedskode:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Sikkerhedskode:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nyt svar til forumemne:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETALJER:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Dato:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Selve svaret:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Vis emne her:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Send besked" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategori" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Emne" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Du skal angive navnet på en brugergruppe." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Du har valgt et navn, der allerede anvendes i databasen. Vælg venligst et andet" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Brugergruppe tilføjet med succes." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Du har ikke angivet en bruger at tilføje:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Du skal vælge en brugergruppe" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Fejl" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Ingen bruger med det navn:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Advarsel" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Bruger" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "er allerede i denne gruppe" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "tilføjet med succes" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Fejl:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Advarsler:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Brugere tilføjet:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Brugergruppe(r) slettet med succes." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Bruger fjernet med succes." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Håndtér brugergrupper" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "tilføj ny" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Slet" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Tilføj medlemmer" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Ingen medlemmer i denne gruppe" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Design tilføjet med succes." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Design-indstillinger" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Find flere designs" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "VIGTIGT: Fra version 1.0.03 er design-biblioteket flyttet til /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Hvorfor har du ændret det?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Skærmbillede" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Navn" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Version" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Beskrivelse" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Handling" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "I brug" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivér" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Om Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Nuværende version: " + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum har en simpel mission: \"Gør det simpelt!\" Det blev overtaget fra WP Forum og er blevet stærkt forbedret. Det understøtter fuldt ud integration med eller uden Mingle-pluginnet (af Blair Williams). Jeg vil også gerne udtrykke en stor tak til Eric Hamby for at hans arbejde med en tidligere udgave af forumskriptet." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Forfatter: " + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Pluginside:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Supportforum:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Designs til Mingle Forum:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Indstillinger gemt med succes." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistik" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Værdi" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Antal indlæg:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Antal tråde:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Antal brugere:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Total databasestørrelse:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Databaseserver:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum version:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Generelle indstillinger" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "standard " + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Navn på indstilling" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Værdi for indstilling" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Indlæg pr side:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Tråde pr side:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Antal indlæg for populært emne:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Antal indlæg for meget populært emne:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Visning af brugernavn:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Titel på ny bruger:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Titel på brugerniveau 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Antal beskeder for brugerniveau 1:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Titel på brugerniveau 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Antal beskeder for brugerniveau 2:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Antal for brugerniveau 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Antal beskder for brugerniveau 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Ingen nye indlæg" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Vis loginformular til forum:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Vis avatars i forummet:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Forum-RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Registrering nødvendig for at kunne poste:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Installeret version:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library er ikke installeret" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Brug CAPTCHA for ikke-registrerede brugere:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Kræver " + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Hvis du har \"Registrering nødvendig for at kunne poste\" aktiveret ovenfor, så lad denne være" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Datoformat:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Standarddato:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Tjek " + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "for datoformatering." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Slettede grupper:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Slettede forummer:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Slettede tråde:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Slettede indlæg:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Du skal skrive et navn" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategori tilføjet med succes" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Du skal vælge en kategori" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Du har valgt et forumnavn, der allerede eksisterer i denne gruppe. Vælg venligst et andet" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum tilføjet med succes" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorier og forummer " + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Ændr" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Tilføj forum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forumfeed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forumfeed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderator fjernet med succes." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderator gemt med succes." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderator IKKE fjernet." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Du skal vælge en bruger" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Global moderator tilføjet med succes" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderator tilføjet med succes" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Håndtér moderatorer" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Modererer for øjeblikket" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Opdatér" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global moderator: (Bruger kan moderere alle forummer)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Endnu ingen moderatorer" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "tilføjet med succes" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Design-indstillinger" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Navn på indstilling" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Gem indstillinger" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Tilføj forum til" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Beskrivelse:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Gem forum" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Redigér kategori" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Redigér kategori" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Gem brugergruppe" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Vælg brugergruppe" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Tilføj brugere" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Du skal angive et gruppenavn" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Gruppe blev opdateret med succes" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Du skal angive et forumnavn" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum blev opdateret med succes" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Redigér kategori" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Brugergrupper:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Brugere fra de markerede brugergrupper har adgang til forummer i denne kategori:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Der er ingen brugergrupper" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Gem gruppe" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Redigér forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Vælg bruger" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Tilføj moderator" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Du skal angive et navn for brugergruppen" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Brugergruppe opdateret med succes" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Redigér brugergruppe" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Gem brugergruppe" + +#~ msgid "General Options" +#~ msgstr "Generelle indstillinger" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorier og forummer" + +#~ msgid "Remove this post?" +#~ msgstr "Fjern dette indlæg?" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Gyldige indstillinger: user_login, nickname, display_name, first_name, " +#~ "last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Giv mig besked ved nye beskeder?" + +#~ msgid "Messages" +#~ msgstr "Beskeder" + +#~ msgid "New Message" +#~ msgstr "Ny besked" + +#~ msgid "Read Message Thread" +#~ msgstr "Læs beskedtråd" diff --git a/i18n/mingleforum-de_DE.mo b/i18n/mingleforum-de_DE.mo new file mode 100644 index 0000000..38a17ea Binary files /dev/null and b/i18n/mingleforum-de_DE.mo differ diff --git a/i18n/mingleforum-de_DE.po b/i18n/mingleforum-de_DE.po new file mode 100644 index 0000000..e32ba07 --- /dev/null +++ b/i18n/mingleforum-de_DE.po @@ -0,0 +1,1797 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-01-20 21:23-0700\n" +"PO-Revision-Date: 2013-01-21 18:24+0100\n" +"Last-Translator: Michael Fitzen \n" +"Language-Team: Michael Fitzen \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Generator: Poedit 1.5.4\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 feed.php:25 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Forum Thema:" + +#: feed.php:30 wpf.class.php:1803 wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:30 wpf.class.php:882 +msgid "Topic: " +msgstr "Thema:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Feeds deaktiviert" + +#: wpf-edit-profile.php:11 +msgid "No such user" +msgstr "Dieser User existiert nicht" + +#: wpf-edit-profile.php:27 +msgid "You have no Topic subscriptions at this time" +msgstr "Du hast aktuell keine Themen abonniert" + +#: wpf-edit-profile.php:37 +msgid "You have no Forum subscriptions at this time" +msgstr "Du hast aktuell keine Foren abonniert" + +#: wpf-edit-profile.php:41 +msgid "Edit forum options" +msgstr "Persönliche Einstellungen für Foren bearbeiten" + +#: wpf-edit-profile.php:46 +msgid "Allow others to view my profile?" +msgstr "Andere dürfen mein Profil sehen?" + +#: wpf-edit-profile.php:49 +msgid "Edit Signature:" +msgstr "Signatur bearbeiten:" + +#: wpf-edit-profile.php:54 +msgid "You have email notifications for these Forums:" +msgstr "Du hast folgende Foren per E-Mailbenachrichtigung abonniert:" + +#: wpf-edit-profile.php:57 +msgid "You have email notifications for these Topics:" +msgstr "Du hast folgende Themen per E-Mailbenachrichtigung abonniert:" + +#: wpf-edit-profile.php:60 fs-admin/fs-admin.php:596 +#: .\fs-admin/fs-admin.php:596 +msgid "Save options" +msgstr "Einstellungen speichern" + +#: wpf-edit-profile.php:66 wpf.class.php:634 wpf.class.php:2065 +#: wpf.class.php:2090 wpf.class.php:2106 wpf.class.php:2127 wpf.class.php:2135 +#: wpf.class.php:2269 +msgid "An unknown error has occured. Please try again." +msgstr "Ein unerwarteter Fehler ist aufgetreten. Versuche es nochmal." + +#: wpf-insert.php:26 +msgid "Oops only Administrators can post in this Forum!" +msgstr "Nur Administratoren dürfen in diesem Forum schreiben!" + +#: wpf-insert.php:35 +msgid "To help prevent spam, we require that you wait" +msgstr "Um Spam vorzubeugen, gibt es eine Wartezeit von" + +#: wpf-insert.php:35 +msgid "" +"minutes before posting again. Please use your browsers back button to return." +msgstr "" +"Minuten bevor ein neuer Beitrag verfasst werden kann. Benutze bitte den " +"Zurück Button des Browsers um zurück zu gehen." + +#: wpf-insert.php:134 +msgid "Security code does not match" +msgstr "Der eingegebene Code stimmt nicht" + +#: wpf-insert.php:149 wpf-insert.php:154 wpf-insert.php:227 wpf-insert.php:232 +#: wpf-insert.php:287 wpf-insert.php:292 wpf-insert.php:298 +msgid "An error occured" +msgstr "Ein Fehler ist aufgetreten" + +#: wpf-insert.php:150 wpf-insert.php:228 wpf-insert.php:288 +msgid "You must enter a subject" +msgstr "Du musst einen Betreff eingeben" + +#: wpf-insert.php:155 wpf-insert.php:233 wpf-insert.php:293 +msgid "You must enter a message" +msgstr "Du musst einen Nachrichtentext eingeben" + +#: wpf-insert.php:175 +msgid "created the forum topic:" +msgstr "Forenthema erstellen:" + +#: wpf-insert.php:244 +msgid "replied to the forum topic:" +msgstr "auf das Forenthema antworten:" + +#: wpf-insert.php:299 +msgid "You do not have permission to edit this post!" +msgstr "Du hast keine Berechtigung, diesen Beitrag zu bearbeiten!" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Zitat von" + +#: wpf-post.php:10 wpf.class.php:702 wpf.class.php:711 wpf.class.php:1201 +msgid "on" +msgstr "am" + +#: wpf-post.php:20 wpf.class.php:1326 wpf.class.php:1849 +msgid "Post Reply" +msgstr "Antwort schreiben" + +#: wpf-post.php:23 wpf-post.php:76 wpf-thread.php:13 +msgid "Subject:" +msgstr "Betreff:" + +#: wpf-post.php:24 wpf.class.php:937 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 wpf-post.php:80 wpf-thread.php:17 +msgid "Message:" +msgstr "Nachricht:" + +#: wpf-post.php:40 wpf-thread.php:30 +msgid "Images:" +msgstr "Bilder:" + +#: wpf-post.php:51 wpf-thread.php:41 +msgid "Submit" +msgstr "Absenden" + +#: wpf-post.php:73 wpf.class.php:1323 wpf.class.php:1852 +msgid "Edit Post" +msgstr "Beitrag bearbeiten" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Beitrag speichern" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Neues Thema erstellen" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Dir fehlen die Berechtigungen um Beiträge zu verfassen." + +#: wpf.class.php:156 fs-admin/fs-admin.php:458 .\fs-admin/fs-admin.php:458 +msgid "Newbie" +msgstr "Neuling" + +#: wpf.class.php:157 fs-admin/fs-admin.php:462 .\fs-admin/fs-admin.php:462 +msgid "Beginner" +msgstr "Anfänger" + +#: wpf.class.php:158 fs-admin/fs-admin.php:470 .\fs-admin/fs-admin.php:470 +msgid "Advanced" +msgstr "Erfahrener" + +#: wpf.class.php:159 fs-admin/fs-admin.php:478 .\fs-admin/fs-admin.php:478 +msgid "Pro" +msgstr "Profi" + +#: wpf.class.php:181 wpf.class.php:182 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum - Einstellungen" + +#: wpf.class.php:182 +msgid "Options" +msgstr "Einstellungen" + +#: wpf.class.php:183 +msgid "Ads" +msgstr "Werbeanzeigen" + +#: wpf.class.php:184 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:185 +msgid "Forum Structure - Categories & Forums" +msgstr "Forenstruktur - Kategorien und Foren" + +#: wpf.class.php:185 +msgid "Forum Structure" +msgstr "Forenstruktur" + +#: wpf.class.php:186 +msgid "Moderators" +msgstr "Moderatoren" + +#: wpf.class.php:187 +msgid "User Groups" +msgstr "Benutzergruppen" + +#: wpf.class.php:188 +msgid "About" +msgstr "Über" + +#: wpf.class.php:199 wpf.class.php:200 +msgid "Forums Latest Activity" +msgstr "Letzte Aktivität im Forum" + +#: wpf.class.php:219 wpf.class.php:239 +msgid "by:" +msgstr "von:" + +#: wpf.class.php:256 +msgid "Title to display in the sidebar:" +msgstr "Titel, der in der Sidebar angezeigt wird:" + +#: wpf.class.php:258 +msgid "How many items would you like to display?" +msgstr "Wieviele Einträge sollen angezeigt werden?" + +#: wpf.class.php:665 +msgid "Page loaded in:" +msgstr "Die Seite wurde geladen in:" + +#: wpf.class.php:665 +msgid "seconds." +msgstr "Sekunden." + +#: wpf.class.php:671 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:672 +msgid "Version:" +msgstr "Version:" + +#: wpf.class.php:693 wpf.class.php:2333 +msgid "Guest" +msgstr "Gast" + +#: wpf.class.php:702 wpf.class.php:1200 +msgid "by" +msgstr "von" + +#: wpf.class.php:711 +msgid "Latest Post by" +msgstr "Letzter Beitrag von:" + +#: wpf.class.php:730 +msgid "Remove this Forum from your email notifications?" +msgstr "Dieses Forum aus Deiner E-Mail-Benachrichtigung entfernen?" + +#: wpf.class.php:732 +msgid "" +"This will notify you of all new Topics created in this Forum. Are you sure " +"that is what you want to do?" +msgstr "" +"Dies wird Dich über alle neuen Themen in diesem Forum informieren. Bist Du " +"sicher, dass Du das möchtest?" + +#: wpf.class.php:738 wpf.class.php:864 +msgid "Sorry, but you don't have access to this forum" +msgstr "Dir fehlen die Berechtigungen um auf dieses Forum zuzugreifen." + +#: wpf.class.php:748 wpf.class.php:2398 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:749 wpf.class.php:2399 +msgid "Topic Title" +msgstr "Titel des Themas" + +#: wpf.class.php:750 wpf.class.php:2400 wpf.class.php:2513 +msgid "Started by" +msgstr "Verfasser" + +#: wpf.class.php:751 wpf.class.php:2401 +msgid "Replies" +msgstr "Antworten" + +#: wpf.class.php:752 +msgid "Views" +msgstr "Aufrufe" + +#: wpf.class.php:753 wpf.class.php:1200 wpf.class.php:2402 +msgid "Last post" +msgstr "Letzter Beitrag" + +#: wpf.class.php:757 +msgid "Sticky Topics" +msgstr "Fixierte Themen" + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +#: wpf.class.php:1667 wpf.class.php:1675 +msgid "Move Topic" +msgstr "Thema verschieben" + +#: wpf.class.php:761 wpf.class.php:763 wpf.class.php:807 wpf.class.php:809 +msgid "Delete Topic" +msgstr "Thema löschen" + +#: wpf.class.php:773 wpf.class.php:802 +msgid "New posts since last visit" +msgstr "Neue Beiträge seit dem letzten Besuch" + +#: wpf.class.php:790 +msgid "Forum Topics" +msgstr "Themen" + +#: wpf.class.php:854 +msgid "Remove this Topic from your email notifications?" +msgstr "Dieses Thema aus Deiner E-Mail-Benachrichtigung entfernen?" + +#: wpf.class.php:856 +msgid "" +" This will notify you of all responses to this Topic. Are you sure that is " +"what you want to do?" +msgstr "" +"Dies wird Dich über alle Antworten zu diesem Thema informieren. Bist Du " +"sicher, dass Du das möchtest?" + +#: wpf.class.php:875 +msgid "TOPIC CLOSED" +msgstr "Thema geschlossen" + +#: wpf.class.php:881 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:897 wpf.class.php:2457 +msgid "Posts:" +msgstr "Beiträge:" + +#: wpf.class.php:935 +msgid "Quick Reply" +msgstr "Direktantwort" + +#: wpf.class.php:944 +msgid "Submit Quick Reply" +msgstr "Schnellantwort absenden" + +#: wpf.class.php:967 wpf_define.php:36 +msgid "Post" +msgstr "Beitrag" + +#: wpf.class.php:970 +msgid "on:" +msgstr "am" + +#: wpf.class.php:976 wpf.class.php:985 wpf.class.php:2344 +msgid "Quote" +msgstr "Zitat" + +#: wpf.class.php:978 wpf.class.php:987 fs-admin/fs-admin.php:157 +#: fs-admin/fs-admin.php:1016 .\fs-admin/fs-admin.php:157 +#: .\fs-admin/fs-admin.php:1016 +msgid "Remove" +msgstr "Entfernen" + +#: wpf.class.php:980 wpf.class.php:989 +msgid "Edit" +msgstr "Bearbeiten" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Topics: " +msgstr "Themen:" + +#: wpf.class.php:1069 wpf.class.php:1120 +msgid "Posts: " +msgstr "Beiträge:" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "New posts" +msgstr "Neue Beiträge" + +#: wpf.class.php:1079 wpf.class.php:1130 +msgid "No new posts" +msgstr "Keine neuen Beiträge" + +#: wpf.class.php:1079 +msgid "Mark All Read" +msgstr "Alle als gelesen markieren" + +#: wpf.class.php:1198 +msgid "No topics yet" +msgstr "Noch keine Themen" + +#: wpf.class.php:1201 +msgid "in" +msgstr "in" + +#: wpf.class.php:1252 +msgid "Forums RSS" +msgstr "Foren RSS" + +#: wpf.class.php:1263 +msgid "Are you sure you want to remove this?" +msgstr "Bist Du sicher, dass Du das löschen möchtest?" + +#: wpf.class.php:1317 wpf.class.php:1842 +msgid "Search Results" +msgstr "Suchergebnisse" + +#: wpf.class.php:1320 +msgid "Profile" +msgstr "Profil " + +#: wpf.class.php:1329 wpf.class.php:1548 wpf.class.php:1855 +msgid "New Topic" +msgstr "Neues Thema" + +#: wpf.class.php:1396 +msgid "Moderators:" +msgstr "Moderatoren:" + +#: wpf.class.php:1552 wpf.class.php:1612 +msgid "Unsubscribe" +msgstr "Abonnement beenden" + +#: wpf.class.php:1554 wpf.class.php:1614 +msgid "Subscribe" +msgstr "Abonnieren" + +#: wpf.class.php:1578 wpf.class.php:1591 +msgid "Undo Sticky" +msgstr "Fixierung aufheben" + +#: wpf.class.php:1580 wpf.class.php:1593 +msgid "Sticky" +msgstr "Fixieren" + +#: wpf.class.php:1583 wpf.class.php:1596 +msgid "Re-open" +msgstr "wieder öffnen" + +#: wpf.class.php:1585 wpf.class.php:1598 +msgid "Close" +msgstr "Schließen" + +#: wpf.class.php:1607 +msgid "Reply" +msgstr "Antwort" + +#: wpf.class.php:1617 +msgid "RSS feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My profile" +msgstr "Mein Profil" + +#: wpf.class.php:1654 wpf.class.php:1658 +msgid "My Profile" +msgstr "Mein Profil" + +#: wpf.class.php:1665 wpf.class.php:1673 +msgid "Forum Home" +msgstr "Foren Übersicht" + +#: wpf.class.php:1717 +msgid "You are logged in as:" +msgstr "Du bist angemeldet als:" + +#: wpf.class.php:1723 +msgid "Username: " +msgstr "Benutzername:" + +#: wpf.class.php:1724 +msgid "Password: " +msgstr "Passwort:" + +#: wpf.class.php:1726 +msgid "Remember Me" +msgstr "An mich erinnern" + +#: wpf.class.php:1762 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1766 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1836 +msgid "New Topics since last visit" +msgstr "Neue Themen seit dem letzten Besuch" + +#: wpf.class.php:1846 +msgid "Profile Info" +msgstr "Profil-Informationen" + +#: wpf.class.php:1910 +msgid "Edit Profile" +msgstr "Profil bearbeiten" + +#: wpf.class.php:1914 wpf.class.php:1926 +msgid "Welcome" +msgstr "Willkommen" + +#: wpf.class.php:1915 +msgid "Your last visit was:" +msgstr "Dein letzter Besuch war am:" + +#: wpf.class.php:1917 +msgid "Show new topics since your last visit" +msgstr "Neue Themen seit Deinem letzten Besuch" + +#: wpf.class.php:1918 +msgid "Edit your forum options" +msgstr "Deine Foreneinstellungen bearbeiten" + +#: wpf.class.php:1920 +msgid "Log out" +msgstr "Abmelden" + +#: wpf.class.php:1925 +msgid "Welcome Guest, please login or" +msgstr "Willkommen Gast! Bitte melde Dich an oder" + +#: wpf.class.php:1925 +msgid "register." +msgstr "registriere Dich." + +#: wpf.class.php:1930 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Willkommen Gast! Um Beiträge zu verfassen musst Du" + +#: wpf.class.php:1930 +msgid "registration." +msgstr "registriert sein." + +#: wpf.class.php:1938 +msgid "Show/Hide Header" +msgstr "Infos ein-/ausblenden" + +#: wpf.class.php:1952 +msgid "Search forums" +msgstr "Foren durchsuchen" + +#: wpf.class.php:1987 wpf.class.php:2018 +msgid "Pages:" +msgstr "Seiten:" + +#: wpf.class.php:2000 wpf.class.php:2031 +msgid "First" +msgstr "Erster" + +#: wpf.class.php:2011 wpf.class.php:2042 +msgid "Last" +msgstr "Letzter" + +#: wpf.class.php:2125 +msgid "Post deleted" +msgstr "Beitrag gelöscht" + +#: wpf.class.php:2326 wpf.class.php:2330 fs-admin/fs-admin.php:159 +#: .\fs-admin/fs-admin.php:159 +msgid "View profile" +msgstr "Profil anzeigen" + +#: wpf.class.php:2344 +msgid "Bold" +msgstr "Fett" + +#: wpf.class.php:2344 +msgid "Italic" +msgstr "Kursiv" + +#: wpf.class.php:2344 +msgid "Underline" +msgstr "Unterstreichen" + +#: wpf.class.php:2344 +msgid "Strikethrough" +msgstr "Durchgestrichen" + +#: wpf.class.php:2344 +msgid "Code" +msgstr "Code" + +#: wpf.class.php:2344 +msgid "List" +msgstr "Liste" + +#: wpf.class.php:2344 +msgid "List item" +msgstr "Listenpunkt" + +#: wpf.class.php:2344 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2344 +msgid "Image" +msgstr "Bild" + +#: wpf.class.php:2344 +msgid "Email" +msgstr "E-Mail" + +#: wpf.class.php:2344 +msgid "Add Hex Color" +msgstr "Farbangabe in hexadezimalen Farbwerten" + +#: wpf.class.php:2344 +msgid "Embed YouTube Video" +msgstr "YouTube Video einbetten" + +#: wpf.class.php:2344 +msgid "Embed Google Map" +msgstr "Google Maps einbetten" + +#: wpf.class.php:2350 +msgid "Smile" +msgstr "Lächeln" + +#: wpf.class.php:2350 +msgid "Big Grin" +msgstr "Grinsen" + +#: wpf.class.php:2350 +msgid "Sad" +msgstr "Traurig" + +#: wpf.class.php:2350 +msgid "Neutral" +msgstr "Neutral" + +#: wpf.class.php:2350 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2350 +msgid "Mad" +msgstr "Verrückt" + +#: wpf.class.php:2350 +msgid "Confused" +msgstr "Verwirrt" + +#: wpf.class.php:2350 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2350 +msgid "Wink" +msgstr "Zwinkern" + +#: wpf.class.php:2350 +msgid "Surprised" +msgstr "Überrascht" + +#: wpf.class.php:2350 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2362 +msgid "Info Center" +msgstr "Info-Center" + +#: wpf.class.php:2369 +msgid "Posts in" +msgstr "Beiträge:" + +#: wpf.class.php:2369 +msgid "Topics Made by" +msgstr "Themen von" + +#: wpf.class.php:2369 fs-admin/fs-admin.php:151 .\fs-admin/fs-admin.php:151 +msgid "Members" +msgstr "Mitglieder" + +#: wpf.class.php:2369 +msgid "Latest Member:" +msgstr "Neustes Mitglied:" + +#: wpf.class.php:2395 +msgid "New topics since your last visit" +msgstr "Neue Themen seit Deinem letzten Besuch" + +#: wpf.class.php:2442 +msgid "Summary" +msgstr "Zusammenfassung" + +#: wpf.class.php:2448 wpf.class.php:2656 wpf.class.php:2678 wpf.class.php:2700 +#: fs-admin/wpf-add-forum.php:10 fs-admin/wpf-edit-forum-group.php:55 +#: fs-admin/wpf-edit-forum-group.php:125 fs-admin/wpf-usergroup-edit.php:31 +#: .\fs-admin/wpf-add-forum.php:10 .\fs-admin/wpf-edit-forum-group.php:55 +#: .\fs-admin/wpf-edit-forum-group.php:125 +#: .\fs-admin/wpf-usergroup-edit.php:31 +msgid "Name:" +msgstr "Name:" + +#: wpf.class.php:2453 +msgid "Registered:" +msgstr "Registriert:" + +#: wpf.class.php:2461 +msgid "Position:" +msgstr "Position:" + +#: wpf.class.php:2464 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2468 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2472 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2475 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2479 +msgid "Biographical Info:" +msgstr "Persönliche Informationen:" + +#: wpf.class.php:2511 +msgid "Subject" +msgstr "Betreff" + +#: wpf.class.php:2512 +msgid "Relevance" +msgstr "Relevanz" + +#: wpf.class.php:2514 +msgid "Posted" +msgstr "geschrieben" + +#: wpf.class.php:2579 +msgid "Closed topic" +msgstr "Geschlossenes Thema" + +#: wpf.class.php:2582 +msgid "Normal topic" +msgstr "Normales Thema" + +#: wpf.class.php:2585 +msgid "Hot topic" +msgstr "Beliebtes Thema" + +#: wpf.class.php:2588 +msgid "Very Hot topic" +msgstr "Sehr beliebtes Thema" + +#: wpf.class.php:2620 +msgid "Security Code:" +msgstr "Sicherheits Code:" + +#: wpf.class.php:2640 +msgid "Enter Security Code: (required)" +msgstr "Sicherheitscode eingeben (erforderlich):" + +#: wpf.class.php:2654 wpf.class.php:2676 +msgid "Forum post - " +msgstr "Thema - " + +#: wpf.class.php:2655 wpf.class.php:2677 wpf.class.php:2699 +msgid "DETAILS:" +msgstr "DETAILS:" + +#: wpf.class.php:2658 wpf.class.php:2680 wpf.class.php:2702 +msgid "Date:" +msgstr "Datum:" + +#: wpf.class.php:2659 wpf.class.php:2681 wpf.class.php:2703 +msgid "Reply Content:" +msgstr "Inhalt der Antwort:" + +#: wpf.class.php:2660 wpf.class.php:2682 wpf.class.php:2704 +msgid "View Post Here:" +msgstr "Thema hier anzeigen:" + +#: wpf.class.php:2698 +msgid "New Forum content - " +msgstr "Neuer Foreninhalt - " + +#: wpf.class.php:2701 +msgid "Email:" +msgstr "E-Mail:" + +#: wpf.class.php:2740 wpf.class.php:2750 +msgid "Inbox" +msgstr "Posteingang" + +#: wpf.class.php:2767 wpf.class.php:2780 +msgid "Send Message" +msgstr "Nachricht senden" + +#: wpf.class.php:2956 +msgid "Mingle Forum Post Options" +msgstr "Mingle Forum - Beitragseinstellungen" + +#: wpf.class.php:2962 +msgid "Add this post to" +msgstr "Diesen Beitrag hinzufügen zu" + +#: wpf.class.php:2966 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "" +"Aktiviere diese Option nicht, wenn der Beitrag bereits mit dem Forum " +"verlinkt wurde!" + +#: wpf.class.php:2998 +msgid "Join the Forum discussion on this post" +msgstr "Diskutiere diesen Beitrag im Forum" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategorie" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Thema" + +#: fs-admin/fs-admin.php:34 .\fs-admin/fs-admin.php:34 +msgid "You must specify a user group name." +msgstr "Du musst einen Gruppennamen angeben." + +#: fs-admin/fs-admin.php:36 fs-admin/fs-admin.php:740 +#: fs-admin/wpf-edit-forum-group.php:17 fs-admin/wpf-usergroup-edit.php:14 +#: .\fs-admin/fs-admin.php:36 .\fs-admin/fs-admin.php:740 +#: .\fs-admin/wpf-edit-forum-group.php:17 .\fs-admin/wpf-usergroup-edit.php:14 +msgid "" +"You have choosen a name that already exists in the database, please specify " +"another" +msgstr "" +"Du hast einen bereits vorhandenen Namen angegeben. Bitte einen anderen " +"wählen." + +#: fs-admin/fs-admin.php:38 .\fs-admin/fs-admin.php:38 +msgid "User Group successfully added." +msgstr "Benutzergruppe wurde erfolgreich hinzugefügt." + +#: fs-admin/fs-admin.php:56 .\fs-admin/fs-admin.php:56 +msgid "You haven't specified any user to add:" +msgstr "Es wurde kein hinzuzufügender Benutzer angegeben:" + +#: fs-admin/fs-admin.php:60 .\fs-admin/fs-admin.php:60 +msgid "You must choose a user group" +msgstr "Es muss eine Benutzer-Gruppe gewählt werden" + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "Error" +msgstr "Fehler" + +#: fs-admin/fs-admin.php:68 .\fs-admin/fs-admin.php:68 +msgid "No such user:" +msgstr "Kein solcher Benutzer:" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "Warning" +msgstr "Warnung" + +#: fs-admin/fs-admin.php:73 fs-admin/fs-admin.php:78 +#: .\fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:78 +msgid "User" +msgstr "Benutzer" + +#: fs-admin/fs-admin.php:73 .\fs-admin/fs-admin.php:73 +msgid "is already in this group" +msgstr "ist bereits in dieser Gruppe" + +#: fs-admin/fs-admin.php:78 .\fs-admin/fs-admin.php:78 +msgid "added successfully" +msgstr "erfolgreich hinzugefügt" + +#: fs-admin/fs-admin.php:86 .\fs-admin/fs-admin.php:86 +msgid "Errors:" +msgstr "Fehler:" + +#: fs-admin/fs-admin.php:87 .\fs-admin/fs-admin.php:87 +msgid "Warnings:" +msgstr "Warnhinweise:" + +#: fs-admin/fs-admin.php:88 .\fs-admin/fs-admin.php:88 +msgid "Users added:" +msgstr "Benutzer hinzugefügt:" + +#: fs-admin/fs-admin.php:102 .\fs-admin/fs-admin.php:102 +msgid "User Group(s) successfully deleted." +msgstr "Benutzergruppe(n) erfolgreich gelöscht." + +#: fs-admin/fs-admin.php:110 .\fs-admin/fs-admin.php:110 +msgid "Member successfully removed." +msgstr "Mitglied erfolgreich entfernt." + +#: fs-admin/fs-admin.php:116 .\fs-admin/fs-admin.php:116 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Benutzer-Gruppen verwalten" + +#: fs-admin/fs-admin.php:116 fs-admin/fs-admin.php:805 +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:116 +#: .\fs-admin/fs-admin.php:805 .\fs-admin/fs-admin.php:1002 +msgid "add new" +msgstr "Hinzufügen" + +#: fs-admin/fs-admin.php:123 fs-admin/fs-admin.php:859 +#: .\fs-admin/fs-admin.php:123 .\fs-admin/fs-admin.php:859 +msgid "Delete" +msgstr "Löschen" + +#: fs-admin/fs-admin.php:163 fs-admin/fs-admin.php:169 +#: .\fs-admin/fs-admin.php:163 .\fs-admin/fs-admin.php:169 +msgid "Add members" +msgstr "Mitglieder hinzufügen" + +#: fs-admin/fs-admin.php:168 .\fs-admin/fs-admin.php:168 +msgid "No members in this group" +msgstr "Es sind keine Mitglieder in dieser Gruppe" + +#: fs-admin/fs-admin.php:231 .\fs-admin/fs-admin.php:231 +msgid "Skin successfully activated." +msgstr "Skin erfolgreich aktiviert." + +#: fs-admin/fs-admin.php:237 .\fs-admin/fs-admin.php:237 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Skin-Einstellungen" + +#: fs-admin/fs-admin.php:238 .\fs-admin/fs-admin.php:238 +msgid "Get More Skins" +msgstr "Lade mehr \"Skins\"" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "" +"IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-" +"content/mingle-forum-skins/" +msgstr "" +"WICHTIG: Seit version 1.0.03 wurde das Verzeichnis für Skins nach /wp-" +"content/mingle-forum-skins/ verschoben" + +#: fs-admin/fs-admin.php:239 .\fs-admin/fs-admin.php:239 +msgid "Why did you change it?" +msgstr "Was ist der Grund der Änderung?" + +#: fs-admin/fs-admin.php:242 .\fs-admin/fs-admin.php:242 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: fs-admin/fs-admin.php:243 fs-admin/wpf-add-group.php:12 +#: .\fs-admin/fs-admin.php:243 .\fs-admin/wpf-add-group.php:12 +msgid "Name" +msgstr "Name" + +#: fs-admin/fs-admin.php:244 .\fs-admin/fs-admin.php:244 +msgid "Version" +msgstr "Version" + +#: fs-admin/fs-admin.php:245 fs-admin/wpf-add-group.php:13 +#: fs-admin/wpf-edit-forum-group.php:59 .\fs-admin/fs-admin.php:245 +#: .\fs-admin/wpf-add-group.php:13 .\fs-admin/wpf-edit-forum-group.php:59 +msgid "Description" +msgstr "Beschreibung" + +#: fs-admin/fs-admin.php:246 .\fs-admin/fs-admin.php:246 +msgid "Action" +msgstr "Aktion" + +#: fs-admin/fs-admin.php:260 fs-admin/fs-admin.php:275 +#: .\fs-admin/fs-admin.php:260 .\fs-admin/fs-admin.php:275 +msgid "In Use" +msgstr "In Verwendung" + +#: fs-admin/fs-admin.php:262 fs-admin/fs-admin.php:277 +#: .\fs-admin/fs-admin.php:262 .\fs-admin/fs-admin.php:277 +msgid "Activate" +msgstr "Aktivieren" + +#: fs-admin/fs-admin.php:305 .\fs-admin/fs-admin.php:305 +msgid "About Mingle Forum" +msgstr "Über Mingle Forum" + +#: fs-admin/fs-admin.php:308 .\fs-admin/fs-admin.php:308 +msgid "Current Version: " +msgstr "Aktuelle Version:" + +#: fs-admin/fs-admin.php:312 .\fs-admin/fs-admin.php:312 +msgid "" +"Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over " +"from WP Forum and has been improved upon GREATLY. It now fully supports " +"integration with or without the Mingle plugin (by Blair Williams). Also I " +"want to give a big thanks to Eric Hamby for his previous work on the forum " +"script." +msgstr "" +"Mingle Forum hat eine einfache Mission, nämlich es \"EINFACH ZU HALTEN!\" Es " +"wurde aus WP Forum übernommen und WESENTLICH verbessert. Es unterstützt die " +"vollständige Integration des Mingle Plugins von Blair Williams, funktioniert " +"aber auch ohne Mingle Plugin. Auch möchte ich ein großes Dankeschön an Eric " +"Hamby für seine frühere Arbeit am Forum Script aussprechen." + +#: fs-admin/fs-admin.php:314 .\fs-admin/fs-admin.php:314 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:315 .\fs-admin/fs-admin.php:315 +msgid "Plugin Page:" +msgstr "Plugin Seite:" + +#: fs-admin/fs-admin.php:316 .\fs-admin/fs-admin.php:316 +msgid "Support Forum:" +msgstr "Support Forum:" + +#: fs-admin/fs-admin.php:317 .\fs-admin/fs-admin.php:317 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum Skins:" + +#: fs-admin/fs-admin.php:364 .\fs-admin/fs-admin.php:364 +msgid "Options successfully saved." +msgstr "Einstellungen erfolgreich gespeichert." + +#: fs-admin/fs-admin.php:369 .\fs-admin/fs-admin.php:369 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:373 .\fs-admin/fs-admin.php:373 +msgid "Statistic" +msgstr "Statistik" + +#: fs-admin/fs-admin.php:374 .\fs-admin/fs-admin.php:374 +msgid "Value" +msgstr "Wert" + +#: fs-admin/fs-admin.php:378 .\fs-admin/fs-admin.php:378 +msgid "Number of posts:" +msgstr "Anzahl der Beiträge:" + +#: fs-admin/fs-admin.php:382 .\fs-admin/fs-admin.php:382 +msgid "Number of threads:" +msgstr "Anzahl der Threads:" + +#: fs-admin/fs-admin.php:386 .\fs-admin/fs-admin.php:386 +msgid "Number of users:" +msgstr "Anzahl der Benutzer:" + +#: fs-admin/fs-admin.php:390 .\fs-admin/fs-admin.php:390 +msgid "Total database size:" +msgstr "Gesamtgröße der Datenbank:" + +#: fs-admin/fs-admin.php:394 .\fs-admin/fs-admin.php:394 +msgid "Database server:" +msgstr "Datenbank-Server:" + +#: fs-admin/fs-admin.php:398 .\fs-admin/fs-admin.php:398 +msgid "Mingle Forum version:" +msgstr "Mingle Forum-Version:" + +#: fs-admin/fs-admin.php:403 .\fs-admin/fs-admin.php:403 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Allgemeine Einstellungen" + +#: fs-admin/fs-admin.php:408 .\fs-admin/fs-admin.php:408 +msgid "default " +msgstr "Standard" + +#: fs-admin/fs-admin.php:412 .\fs-admin/fs-admin.php:412 +msgid "Option Name" +msgstr "Einstellung Name" + +#: fs-admin/fs-admin.php:413 .\fs-admin/fs-admin.php:413 +msgid "Option Input" +msgstr "Einstellung Eingabe" + +#: fs-admin/fs-admin.php:418 .\fs-admin/fs-admin.php:418 +msgid "Integrate WordPress Posts with Forum:" +msgstr "WordPress Artikel ins Forum integrieren:" + +#: fs-admin/fs-admin.php:422 fs-admin/fs-admin.php:489 +#: fs-admin/fs-admin.php:512 fs-admin/fs-admin.php:536 +#: fs-admin/fs-admin.php:579 fs-admin/fs-admin.php:592 +#: .\fs-admin/fs-admin.php:422 .\fs-admin/fs-admin.php:489 +#: .\fs-admin/fs-admin.php:512 .\fs-admin/fs-admin.php:536 +#: .\fs-admin/fs-admin.php:579 .\fs-admin/fs-admin.php:592 +msgid "Off" +msgstr "Aus" + +#: fs-admin/fs-admin.php:426 .\fs-admin/fs-admin.php:426 +msgid "Posts per page:" +msgstr "Beiträge pro Seite:" + +#: fs-admin/fs-admin.php:430 .\fs-admin/fs-admin.php:430 +msgid "Threads per page:" +msgstr "Themen pro Seite:" + +#: fs-admin/fs-admin.php:436 .\fs-admin/fs-admin.php:436 +msgid "Number of posts for Hot Topic:" +msgstr "Anzahl der Beiträge für heiße Themen:" + +#: fs-admin/fs-admin.php:440 .\fs-admin/fs-admin.php:440 +msgid "Number of posts for Very Hot Topic:" +msgstr "Anzahl der Beiträge für sehr heiße Themen:" + +#: fs-admin/fs-admin.php:444 .\fs-admin/fs-admin.php:444 +msgid "Username Display:" +msgstr "Anzeige des Benutzernamen:" + +#: fs-admin/fs-admin.php:457 .\fs-admin/fs-admin.php:457 +msgid "New User's Title:" +msgstr "Bezeichnung neuer Benutzer:" + +#: fs-admin/fs-admin.php:461 .\fs-admin/fs-admin.php:461 +msgid "User Level 1 Title:" +msgstr "Bezeichnung Benutzerrang 1:" + +#: fs-admin/fs-admin.php:465 .\fs-admin/fs-admin.php:465 +msgid "User Level 1 Count:" +msgstr "Beitragsanzahl für Benutzerrang 1:" + +#: fs-admin/fs-admin.php:466 .\fs-admin/fs-admin.php:466 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:469 .\fs-admin/fs-admin.php:469 +msgid "User Level 2 Title:" +msgstr "Bezeichnung Benutzerrang 2:" + +#: fs-admin/fs-admin.php:473 .\fs-admin/fs-admin.php:473 +msgid "User Level 2 Count:" +msgstr "Beitragsanzahl für Benutzerrang 2:" + +#: fs-admin/fs-admin.php:474 .\fs-admin/fs-admin.php:474 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:477 .\fs-admin/fs-admin.php:477 +msgid "User Level 3 Title:" +msgstr "Bezeichnung Benutzerrang 3:" + +#: fs-admin/fs-admin.php:481 .\fs-admin/fs-admin.php:481 +msgid "User Level 3 Count:" +msgstr "Beitragsanzahl für Benutzerrang 3:" + +#: fs-admin/fs-admin.php:482 .\fs-admin/fs-admin.php:482 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:485 .\fs-admin/fs-admin.php:485 +msgid "Notify Admin on new posts:" +msgstr "Administrator bei neuen Beiträgen benachrichtigen:" + +#: fs-admin/fs-admin.php:492 .\fs-admin/fs-admin.php:492 +msgid "Show Forum Login Form:" +msgstr "Zeige Loginformular des Forums:" + +#: fs-admin/fs-admin.php:496 fs-admin/fs-admin.php:504 +#: fs-admin/fs-admin.php:520 fs-admin/fs-admin.php:528 +#: fs-admin/fs-admin.php:544 .\fs-admin/fs-admin.php:496 +#: .\fs-admin/fs-admin.php:504 .\fs-admin/fs-admin.php:520 +#: .\fs-admin/fs-admin.php:528 .\fs-admin/fs-admin.php:544 +msgid "On" +msgstr "Ein" + +#: fs-admin/fs-admin.php:500 .\fs-admin/fs-admin.php:500 +msgid "Show Avatars in the forum:" +msgstr "Zeige Avatare im Forum:" + +#: fs-admin/fs-admin.php:508 .\fs-admin/fs-admin.php:508 +msgid "Allow Images to be uploaded:" +msgstr "Den Upload von Bildern erlauben:" + +#: fs-admin/fs-admin.php:516 .\fs-admin/fs-admin.php:516 +msgid "Show users Signature at the bottom of posts:" +msgstr "Signatur unterhalb der Beiträge anzeigen:" + +#: fs-admin/fs-admin.php:524 .\fs-admin/fs-admin.php:524 +msgid "Use Forum RSS:" +msgstr "Foren RSS" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "Use SEO friendly URLs:" +msgstr "SEO-freundliche URLs verwenden:" + +#: fs-admin/fs-admin.php:532 .\fs-admin/fs-admin.php:532 +msgid "" +"IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" +"WICHTIG: Lasse diese Einstellung deaktiviert, wenn die Permalinks auf " +"Standard gesetzt wurden." + +#: fs-admin/fs-admin.php:540 .\fs-admin/fs-admin.php:540 +msgid "Registration required to post:" +msgstr "Registrierung zum Posten von Beiträgen erforderlich:" + +#: fs-admin/fs-admin.php:549 .\fs-admin/fs-admin.php:549 +msgid "Installed version:" +msgstr "Installierte Version:" + +#: fs-admin/fs-admin.php:553 .\fs-admin/fs-admin.php:553 +msgid "GD Library is not installed" +msgstr "GD-Bibliothek ist nicht installiert" + +#: fs-admin/fs-admin.php:556 .\fs-admin/fs-admin.php:556 +msgid "Use Captcha for unregistered users:" +msgstr "Verwende Captcha für nicht registrierte Benutzer:" + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "Requires " +msgstr "Erfordert " + +#: fs-admin/fs-admin.php:560 .\fs-admin/fs-admin.php:560 +msgid "" +"If you have 'Registration required to post' above enabled, leave this off" +msgstr "" +"Wenn Du die Einstellung \"Registrierung zum Posten von Beiträgen erforderlich" +"\" aktiviert hast, lasse dieses Feld leer" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Date format:" +msgstr "Datumsformat:" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Default date:" +msgstr "Standard-Datum:" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "Check " +msgstr "Überprüfen" + +#: fs-admin/fs-admin.php:564 .\fs-admin/fs-admin.php:564 +msgid "for date formatting." +msgstr "für die Formatierung der Datumsangabe." + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Closed Categories (Admin posting only):" +msgstr "Geschlossene Kategorien (Nur Admin Beiträge):" + +#: fs-admin/fs-admin.php:569 .\fs-admin/fs-admin.php:569 +msgid "Comma separated list of Category ID's (Ex: 1, 2, 3)" +msgstr "Kommagetrennte Liste der Kategorie IDs (Bsp.: 1, 2, 3)" + +#: fs-admin/fs-admin.php:571 .\fs-admin/fs-admin.php:571 +msgid "Users can reply in locked categories" +msgstr "Benutzer können in geschlossenen Kategorien antworten" + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Time limit between posting:" +msgstr "Zeitlimit zwischen den Postings:" + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "Prevent lots of SPAM by making users wait a time period between posts." +msgstr "" +"Beugt Spam vor, in dem der Benutzer erst nach einer gewissen Wartezeit " +"erneut antworten darf." + +#: fs-admin/fs-admin.php:584 .\fs-admin/fs-admin.php:584 +msgid "seconds" +msgstr "Sekunden" + +#: fs-admin/fs-admin.php:588 .\fs-admin/fs-admin.php:588 +msgid "Disable Branding:" +msgstr "Branding deaktivieren:" + +#: fs-admin/fs-admin.php:711 .\fs-admin/fs-admin.php:711 +msgid "Groups deleted:" +msgstr "Gruppen gelöscht:" + +#: fs-admin/fs-admin.php:712 .\fs-admin/fs-admin.php:712 +msgid "Forums deleted:" +msgstr "Foren gelöscht:" + +#: fs-admin/fs-admin.php:713 .\fs-admin/fs-admin.php:713 +msgid "Threads deleted:" +msgstr "Themen gelöscht:" + +#: fs-admin/fs-admin.php:714 .\fs-admin/fs-admin.php:714 +msgid "Posts deleted:" +msgstr "Beiträge gelöscht:" + +#: fs-admin/fs-admin.php:738 fs-admin/fs-admin.php:762 +#: .\fs-admin/fs-admin.php:738 .\fs-admin/fs-admin.php:762 +msgid "You must enter a name" +msgstr "Du musst einen Namen eingeben" + +#: fs-admin/fs-admin.php:747 .\fs-admin/fs-admin.php:747 +msgid "Category added successfully" +msgstr "Kategorie wurde erfolgreich hinzugefügt" + +#: fs-admin/fs-admin.php:759 .\fs-admin/fs-admin.php:759 +msgid "You must select a category" +msgstr "Du musst eine Kategorie auswählen" + +#: fs-admin/fs-admin.php:765 .\fs-admin/fs-admin.php:765 +msgid "" +"You have choosen a forum name that already exists in this group, please " +"specify another" +msgstr "" +"Du hast einen Namen gewählt, der in dieser Gruppe bereits existiert. Bitte " +"gib einen anderen Namen ein." + +#: fs-admin/fs-admin.php:772 .\fs-admin/fs-admin.php:772 +msgid "Forum added successfully" +msgstr "Forum wurde erfolgreich hinzugefügt" + +#: fs-admin/fs-admin.php:799 .\fs-admin/fs-admin.php:799 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorien und Foren" + +#: fs-admin/fs-admin.php:821 fs-admin/fs-admin.php:851 +#: .\fs-admin/fs-admin.php:821 .\fs-admin/fs-admin.php:851 +msgid "Modify" +msgstr "Modifizieren" + +#: fs-admin/fs-admin.php:860 .\fs-admin/fs-admin.php:860 +msgid "Add forum" +msgstr "Forum hinzufügen" + +#: fs-admin/fs-admin.php:884 .\fs-admin/fs-admin.php:884 +msgid "Group Moved Down" +msgstr "Gruppe nach unten verschoben" + +#: fs-admin/fs-admin.php:894 .\fs-admin/fs-admin.php:894 +msgid "Forum Moved Down" +msgstr "Forum nach unten verschoben" + +#: fs-admin/fs-admin.php:904 .\fs-admin/fs-admin.php:904 +msgid "Group Moved Up" +msgstr "Gruppe nach oben verschoben" + +#: fs-admin/fs-admin.php:914 .\fs-admin/fs-admin.php:914 +msgid "Forum Moved Up" +msgstr "Forum nach oben verschoben" + +#: fs-admin/fs-admin.php:950 fs-admin/fs-admin.php:957 +#: .\fs-admin/fs-admin.php:950 .\fs-admin/fs-admin.php:957 +msgid "Moderator successfully removed." +msgstr "Moderator erfolgreich entfernt." + +#: fs-admin/fs-admin.php:952 .\fs-admin/fs-admin.php:952 +msgid "Moderator successfully saved." +msgstr "Moderator erfolgreich gespeichert." + +#: fs-admin/fs-admin.php:959 .\fs-admin/fs-admin.php:959 +msgid "Moderator NOT removed." +msgstr "Moderator wurde nicht entfernt." + +#: fs-admin/fs-admin.php:972 .\fs-admin/fs-admin.php:972 +msgid "You must select a user" +msgstr "Du musst einen Benutzer auswählen" + +#: fs-admin/fs-admin.php:976 .\fs-admin/fs-admin.php:976 +msgid "Global Moderator added successfully" +msgstr "Globaler Moderator wurde erfolgreich hinzugefügt" + +#: fs-admin/fs-admin.php:980 .\fs-admin/fs-admin.php:980 +msgid "Moderator added successfully" +msgstr "Moderator wurde erfolgreich hinzugefügt" + +#: fs-admin/fs-admin.php:1002 .\fs-admin/fs-admin.php:1002 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Moderatoren verwalten" + +#: fs-admin/fs-admin.php:1011 .\fs-admin/fs-admin.php:1011 +msgid "Currently moderating" +msgstr "Derzeit moderieren" + +#: fs-admin/fs-admin.php:1015 .\fs-admin/fs-admin.php:1015 +msgid "Update" +msgstr "Aktualisieren" + +#: fs-admin/fs-admin.php:1025 fs-admin/wpf-moderator.php:25 +#: .\fs-admin/fs-admin.php:1025 .\fs-admin/wpf-moderator.php:25 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Globaler Moderator: (Benutzer kann alle Foren moderieren)" + +#: fs-admin/fs-admin.php:1044 .\fs-admin/fs-admin.php:1044 +msgid "No moderators yet" +msgstr "Noch keine Moderatoren definiert" + +#: fs-admin/fs-admin.php:1069 .\fs-admin/fs-admin.php:1069 +msgid "Ads saved successfully" +msgstr "Werbeanzeigen erfolgreich gespeichert" + +#: fs-admin/fs-admin.php:1074 .\fs-admin/fs-admin.php:1074 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum Werbeanzeigen >> Einstellungen" + +#: fs-admin/fs-admin.php:1076 .\fs-admin/fs-admin.php:1076 +msgid "HTML is allowed in all ad areas below" +msgstr "In allen Bereichen für Werbeanzeigen ist HTML erlaubt" + +#: fs-admin/fs-admin.php:1080 .\fs-admin/fs-admin.php:1080 +msgid "Ads Option" +msgstr "Einstellungen für Werbeanzeigen" + +#: fs-admin/fs-admin.php:1087 .\fs-admin/fs-admin.php:1087 +msgid "Enable Area Above Forum" +msgstr "Aktiviere Bereich über dem Forum" + +#: fs-admin/fs-admin.php:1089 fs-admin/fs-admin.php:1097 +#: fs-admin/fs-admin.php:1105 fs-admin/fs-admin.php:1113 +#: fs-admin/fs-admin.php:1121 fs-admin/fs-admin.php:1129 +#: fs-admin/fs-admin.php:1137 .\fs-admin/fs-admin.php:1089 +#: .\fs-admin/fs-admin.php:1097 .\fs-admin/fs-admin.php:1105 +#: .\fs-admin/fs-admin.php:1113 .\fs-admin/fs-admin.php:1121 +#: .\fs-admin/fs-admin.php:1129 .\fs-admin/fs-admin.php:1137 +msgid "css-value:" +msgstr "CSS-Wert:" + +#: fs-admin/fs-admin.php:1095 .\fs-admin/fs-admin.php:1095 +msgid "Enable Area Below Forum" +msgstr "Aktiviere Bereich unter dem Forum" + +#: fs-admin/fs-admin.php:1103 .\fs-admin/fs-admin.php:1103 +msgid "Enable Area Above Branding" +msgstr "Aktiviere Bereich über den Foren-Credits" + +#: fs-admin/fs-admin.php:1111 .\fs-admin/fs-admin.php:1111 +msgid "Enable Area Above Info Center" +msgstr "Aktiviere Bereich über dem Info-Center" + +#: fs-admin/fs-admin.php:1119 .\fs-admin/fs-admin.php:1119 +msgid "Enable Area Above Breadcrumbs" +msgstr "Aktiviere Bereich über der Breadcrumb-Navigation" + +#: fs-admin/fs-admin.php:1127 .\fs-admin/fs-admin.php:1127 +msgid "Enable Area Above Quick Reply Form" +msgstr "Aktiviere Bereich unter dem Direktantwort-Formular" + +#: fs-admin/fs-admin.php:1135 .\fs-admin/fs-admin.php:1135 +msgid "Enable Area Below First Post" +msgstr "Aktiviere Bereich unter dem ersten Beitrag" + +#: fs-admin/fs-admin.php:1142 .\fs-admin/fs-admin.php:1142 +msgid "Below you can modify/add your own CSS" +msgstr "Unten kannst Du Deine eigenen CSS-Anweisungen bearbeiten/hinzufügen" + +#: fs-admin/fs-admin.php:1143 .\fs-admin/fs-admin.php:1143 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" +"BEACHTE: Wenn Du nicht weißt, wozu diese Einstellungen dienen, lasse das " +"Feld leer" + +#: fs-admin/fs-admin.php:1150 .\fs-admin/fs-admin.php:1150 +msgid "Save Options" +msgstr "Einstellungen speichern" + +#: fs-admin/wpf-add-forum.php:5 .\fs-admin/wpf-add-forum.php:5 +msgid "Add forum to" +msgstr "Forum hinzufügen zu" + +#: fs-admin/wpf-add-forum.php:14 fs-admin/wpf-edit-forum-group.php:129 +#: fs-admin/wpf-usergroup-edit.php:35 .\fs-admin/wpf-add-forum.php:14 +#: .\fs-admin/wpf-edit-forum-group.php:129 +#: .\fs-admin/wpf-usergroup-edit.php:35 +msgid "Description:" +msgstr "Beschreibung:" + +#: fs-admin/wpf-add-forum.php:31 fs-admin/wpf-edit-forum-group.php:134 +#: .\fs-admin/wpf-add-forum.php:31 .\fs-admin/wpf-edit-forum-group.php:134 +msgid "Save forum" +msgstr "Forum speichern" + +#: fs-admin/wpf-add-group.php:7 .\fs-admin/wpf-add-group.php:7 +msgid "Add category" +msgstr "Kategorie hinzufügen" + +#: fs-admin/wpf-add-group.php:21 .\fs-admin/wpf-add-group.php:21 +msgid "Save category" +msgstr "Kategorie speichern" + +#: fs-admin/wpf-add-usergroup.php:23 .\fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "Benutzergruppe speichern" + +#: fs-admin/wpf-addusers.php:21 .\fs-admin/wpf-addusers.php:21 +msgid "Select User group" +msgstr "Benutzergruppe auswählen" + +#: fs-admin/wpf-addusers.php:31 .\fs-admin/wpf-addusers.php:31 +msgid "Add users" +msgstr "Benutzer hinzufügen" + +#: fs-admin/wpf-edit-forum-group.php:12 .\fs-admin/wpf-edit-forum-group.php:12 +msgid "You must specify a group name" +msgstr "Du musst einen Gruppennamen angeben" + +#: fs-admin/wpf-edit-forum-group.php:24 .\fs-admin/wpf-edit-forum-group.php:24 +msgid "Group updated successfully" +msgstr "Gruppe erfolgreich aktualisiert" + +#: fs-admin/wpf-edit-forum-group.php:34 .\fs-admin/wpf-edit-forum-group.php:34 +msgid "You must specify a forum name" +msgstr "Du musst einen Forennamen angeben" + +#: fs-admin/wpf-edit-forum-group.php:37 .\fs-admin/wpf-edit-forum-group.php:37 +msgid "Forum updated successfully" +msgstr "Forum erfolgreich aktualisiert" + +#: fs-admin/wpf-edit-forum-group.php:49 .\fs-admin/wpf-edit-forum-group.php:49 +msgid "Edit category" +msgstr "Kategorie bearbeiten" + +#: fs-admin/wpf-edit-forum-group.php:63 .\fs-admin/wpf-edit-forum-group.php:63 +msgid "User Groups:" +msgstr "Benutzergruppen:" + +#: fs-admin/wpf-edit-forum-group.php:66 .\fs-admin/wpf-edit-forum-group.php:66 +msgid "" +"Members of the checked User Groups have access to the forums in this " +"category:" +msgstr "" +"Mitglieder der markierten Benutzergruppen haben Zugriff auf die Foren dieser " +"Kategorie:" + +#: fs-admin/wpf-edit-forum-group.php:98 .\fs-admin/wpf-edit-forum-group.php:98 +msgid "There are no User Groups" +msgstr "Es gibt keine Benutzergruppen" + +#: fs-admin/wpf-edit-forum-group.php:105 +#: .\fs-admin/wpf-edit-forum-group.php:105 +msgid "Save group" +msgstr "Gruppe speichern" + +#: fs-admin/wpf-edit-forum-group.php:121 +#: .\fs-admin/wpf-edit-forum-group.php:121 +msgid "Edit forum" +msgstr "Forum bearbeiten" + +#: fs-admin/wpf-moderator.php:19 .\fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "Benutzer wählen" + +#: fs-admin/wpf-moderator.php:36 .\fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "Moderator hinzufügen" + +#: fs-admin/wpf-usergroup-edit.php:11 .\fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "Du musst einen Namen für diese Benutzergruppe angeben" + +#: fs-admin/wpf-usergroup-edit.php:18 .\fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "Benutzergruppe erfolgreich aktualisiert" + +#: fs-admin/wpf-usergroup-edit.php:26 .\fs-admin/wpf-usergroup-edit.php:26 +msgid "Edit User Group" +msgstr "Benutzergruppe bearbeiten" + +#: fs-admin/wpf-usergroup-edit.php:40 .\fs-admin/wpf-usergroup-edit.php:40 +msgid "Save User Group" +msgstr "Benutzergruppe speichern" + +#~ msgid "Cheating, are we?" +#~ msgstr "Nicht wirklich, oder?" + +#~ msgid "RSS-Feed" +#~ msgstr "RSS-Feed" + +#~ msgid "Add this topic to your email notifications?" +#~ msgstr "Dieses Thema zu Deiner E-Mail-Benachrichtigung hinzufügen?" + +#~ msgid "Search" +#~ msgstr "Suche" + +#~ msgid "Search for:" +#~ msgstr "Suche nach:" + +#~ msgid "By user:" +#~ msgstr "Nach Benutzer:" + +#~ msgid "Message Age:" +#~ msgstr "Alter des Beitrags:" + +#~ msgid "Between" +#~ msgstr "Zwischen" + +#~ msgid "and" +#~ msgstr "und" + +#~ msgid "days" +#~ msgstr "Tage" + +#~ msgid "Click to choose Forum(s) to search" +#~ msgstr "Wähle das zu durchsuchende Forum/die zu durchsuchenden Foren" + +#~ msgid "Check all" +#~ msgstr "Prüfe alle" + +#~ msgid "Start Search" +#~ msgstr "Suche starten" + +#~ msgid "New post in forum:" +#~ msgstr "Neue Beiträge im Forum:" + +#~ msgid "General Options" +#~ msgstr "Allgemeine Einstellungen" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorien und Foren" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Valide Einstellungen: user_login, nickname, display_name, first_name, " +#~ "last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Benachrichtigung bei neuen Nachrichten?" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#~ msgid "Messages" +#~ msgstr "Nachrichten" + +#~ msgid "New Message" +#~ msgstr "Neue Nachricht" + +#~ msgid "Read Message Thread" +#~ msgstr "Nachrichten zu diesem Thema lesen" + +#~ msgid "new" +#~ msgstr "neu" + +#~ msgid "Use Private Messages:" +#~ msgstr "Private Nachrichten verwenden:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Ich empfehle dies zu deaktivieren und dafür" + +#~ msgid "instead." +#~ msgstr "zu verwenden." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Maximale Nachrichten im Posteingang (0 = unbegrenzt):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Administratoren haben kein Nachrichtenlimit" + +#~ msgid "Message Deleted" +#~ msgstr "Nachricht gelöscht" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Deine Nachricht wurde gelöscht!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Zurück zum Posteingang" + +#~ msgid "ERROR" +#~ msgstr "FEHLER" + +#~ msgid "Create New Message" +#~ msgstr "Neue Nachricht erstellen" + +#~ msgid "Unlimited" +#~ msgstr "Unbegrenzt" + +#~ msgid "Message Box Size" +#~ msgstr "Postfachgröße" + +#~ msgid "of" +#~ msgstr "von" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Postfach ist voll!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Du kannst keine neuen Nachricht senden/empfangen" + +#~ msgid "Started By" +#~ msgstr "begonnen von" + +#~ msgid "Last Reply" +#~ msgstr "beantwortet von" + +#~ msgid "Unread" +#~ msgstr "ungelesen" + +#~ msgid "Read" +#~ msgstr "gelesen" + +#~ msgid "No Messages" +#~ msgstr "keine Nachrichten" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Du hast leider keine Nachrichten!" + +#~ msgid "Message Sent" +#~ msgstr "Nachricht gesendet" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Die Nachricht wurde erfolgreich versendet!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Zurück zu den Nachrichten" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Du hast eine neue Nachricht erhalten von" + +#~ msgid "follow this link to view:" +#~ msgstr "zum Lesen folge diesem Link:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Nachricht konnte nicht gesendet werden!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Der Posteingang des Empfängers ist voll!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Bitte alle Felder ausfüllen, bevor Du die Nachricht sendest!" + +#~ msgid "To:" +#~ msgstr "An:" + +#~ msgid "Select User" +#~ msgstr "Benutzer wählen" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "Klicke in dieses Feld und tippe den zu suchenden Benutzernamen ein" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "" +#~ "Du musst angemeldet sein, um private Nachrichten erstellen zu können!" + +#~ msgid "Sender" +#~ msgstr "Absender" + +#~ msgid "Message Contents" +#~ msgstr "Inhalt der Nachricht" + +#~ msgid "Reply:" +#~ msgstr "Antwort:" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingle Forum Themes:" + +#~ msgid "Posts" +#~ msgstr "Beiträge" + +#~ msgid "Topics " +#~ msgstr "Themen" + +#~ msgid "Posted on: " +#~ msgstr "Geschrieben am:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Lassen Sie E-Mail-Benachrichtigungen?" + +#~ msgid "Notify" +#~ msgstr "Benachrichtigen" + +#~ msgid "View Inbox" +#~ msgstr "Profil Posteingang" + +#~ msgid "Contact:" +#~ msgstr "Kontakt:" + +#~ msgid "Inbox size" +#~ msgstr "Posteingang Größe" + +#~ msgid "total" +#~ msgstr "gesamt" + +#~ msgid "From" +#~ msgstr "Von" + +#~ msgid "NEW" +#~ msgstr "NEU" + +#~ msgid "OLD" +#~ msgstr "OLD" + +#~ msgid "Empty Inbox" +#~ msgstr "Leeren Posteingang" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Ihr Posteingang ist leer!" + +#~ msgid "Try Again" +#~ msgstr "Try Again" + +#~ msgid "Reply To Message" +#~ msgstr "Auf Nachricht antworten" diff --git a/i18n/mingleforum-es_ES.mo b/i18n/mingleforum-es_ES.mo new file mode 100644 index 0000000..2522f34 Binary files /dev/null and b/i18n/mingleforum-es_ES.mo differ diff --git a/i18n/mingleforum-es_ES.po b/i18n/mingleforum-es_ES.po new file mode 100644 index 0000000..482c1de --- /dev/null +++ b/i18n/mingleforum-es_ES.po @@ -0,0 +1,1790 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Feed del Foro" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Tema del foro:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Foro" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Tema:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Este usuario no existe" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Editar las opciones del Foro" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Permitir que otras personas vean mi perfil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Usted tiene notificaciones por correo electrónico para estos temas:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Salvar cambios" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Haciendo trampas?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "El código de seguridad no coincide" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Se produjo un error" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Debe introducir un tema" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Debe introducir un mensaje" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "creó el tema del foro:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "respondió al tema del foro:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citado de" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "en" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Responder" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Asunto:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Mensaje:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Enviar" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Editar Mensaje" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Guardar Mensaje" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Publicar nuevo tema" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Lo siento, Usted no tiene permiso para publicar." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Perfil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr " Foro Mingle>> Opciones de plantilla" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Opción Nombre" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Plantillas" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Categorías y foros" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderadores" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Grupos de usuarios" + +#: wpf.class.php:178 +msgid "About" +msgstr "Sobre" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Última actividad en los Foros" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "por:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Título que se mostrará en la barra lateral:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "¿Cuántos elementos quieres mostrar?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Página cargada en:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "segundos." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Foro Mingle" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versión:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Invitado" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "por" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Último mensaje de" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Lo sentimos, pero Usted no tiene acceso a este foro" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Estado" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Título del Tema" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Iniciado por" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Respuestas" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Vistas" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Último mensaje" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Temas resaltados" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Mover tema" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Borrar tema" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nuevos mensajes desde última visita" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Temas del foro" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Eliminar este tema de las notificaciones de su correo electrónico?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Añadir este tema a las notificaciones de su correo electrónico?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "TEMA CERRADO" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Mensajes:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Respuesta rápida:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "Respuesta rápida:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Mensaje" + +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "en" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Cita" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Eliminar" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Editar" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Temas:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Mensajes:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nuevos mensajes" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "No hay mensajes nuevos" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "No hay temas aún" + +#: wpf.class.php:1154 +msgid "in" +msgstr "en" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS de los Foros" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Resultados de la búsqueda" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Perfil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nuevo tema" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderadores:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Deshacer Resaltado" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Resaltado" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Reabrir" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Cerrar" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Respuesta" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Subscribir" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Subscribir" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "RSS feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Mi perfil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Mi Perfil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Inicio Foro" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Cerrar la sesión" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Búsqueda" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Estás conectado como:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nombre de usuario:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Contraseña:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Recordarme" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrador" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderador" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nuevos temas desde la última visita" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Información del perfil" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Editar perfil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Bienvenido" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Su última visita fue:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Mostrar nuevos temas desde su última visita" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Editar las opciones de su foro" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Bienvenido Invitado, por favor ingresar o" + +#: wpf.class.php:1928 +msgid "register." +msgstr "registrarse." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Bienvenido Invitado, publicar en este foro requiere" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registrarse." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Mostrar / Ocultar encabezado" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Buscar en los Foros" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Páginas:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Lista" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Lista" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Mensaje eliminado" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Ver perfil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Negrita" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Itálica" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Subrayar" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Tachado" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Código" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Listar tema" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Enlace" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Imagen" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Correo electrónico" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Añadir color Hex" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Incrustar vídeo de YouTube" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Smile" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Risueño" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Triste" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutral" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Burlón" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Loco" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Confundido" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Imitar a un mono" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Guiño" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Sorprendido" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Atractivo" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Centro de Información" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Comentarios en" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Temas abiertos por" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Miembros" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Último usuario:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nuevos temas desde su última visita" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Resumen" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nombre:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registrado:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Cargo:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Sitio web:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Información biográfica:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Buscar:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Por usuario:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Fecha Mensaje:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Entre" + +#: wpf.class.php:2467 +msgid "and" +msgstr "y" + +#: wpf.class.php:2467 +msgid "days" +msgstr "días" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Haga clic para seleccionar Foro (s) donde buscar" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Revise todas las" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Iniciar búsqueda" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Tema" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Pertinencia" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Publicado" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Tema cerrado" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Tema normal" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Tema caliente" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Tema muy candente" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Código de seguridad:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Código de seguridad:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nueva respuesta sobre el tema:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETALLES:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Fecha:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Responder Contenido:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Ver tema aquí:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Enviar mensaje" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Categoría" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Tema" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Debe especificar un nombre de grupo de usuarios." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Ha elegido un nombre que ya existe en la base de datos, por favor, especifique otro" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Grupo de Usuarios agregado con éxito" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "No ha especificado un usuario para añadir:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Usted debe elegir un grupo de usuarios" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Error" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Este usuario no existe:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Advertencia" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Usuario" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "ya se encuentra en este grupo" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "añadido con éxito" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Errores:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Advertencias:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Usuarios agregados:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Grupo de Usuarios (s) se han eliminado correctamente." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Miembro retirado con éxito." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Foro Mingle>> Gestión de Grupos de Usuarios" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "agregar nuevo" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Borrar" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Añadir miembros" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "No hay miembros en este grupo" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Plantilla activada correctamente." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr " Foro Mingle>> Opciones de plantilla" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Obtenga más plantillas" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "IMPORTANTE: Desde la versión 1.0.03 el directorio de plantillas se ha trasladado a /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "¿Por qué cambiarlo?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nombre" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versión" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Descripción" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Acción" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "En uso" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Activar" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Acerca del Foro Mingle" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Versión actual:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Foro tiene una simple misión; 'Hágalo sencillo!Fue tomado de WP Foro y se ha mejorado mucho. En la actualidad apoya plenamente la integración con o sin el plugin Mingle (por Blair Williams). También quiero dar las gracias a Eric Hamby por su trabajo anterior sobre la secuencia de comandos foro" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Página del Plugin:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Foro de soporte técnico:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Plantillas Foro Mingle" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opciones guardadas con éxito." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Foro Mingle" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Estadística" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Valor" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Número de mensajes:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Número de hilos:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Número de usuarios:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Tamaño de la base de datos:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Base de datos del servidor:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Versión del Foro Mingle:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Foro Mingle>> Opciones generales" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "defecto" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Opción Nombre" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Opción de entrada" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Mensajes por página:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Hilos por página:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Número de opiniones necesarias para tema caliente:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Número de mensajes para tema muy caliente:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Nombre de usuario de pantalla:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr " Título para Usuario Nuevo:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr " Título para Nivel de Usuario 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Nº mensajes para Nivel de Usuario 1:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr " Título para Nivel de Usuario 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Nº mensajes para Nivel de Usuario 2:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr " Título para Nivel de Usuario 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Nº mensajes para Nivel de Usuario 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "No hay mensajes nuevos" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Mostrar página de ingreso al Foro:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Mostrar los avatares en el foro:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "RSS de los Foros" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Es necesario registrarse para publicar:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Versión instalada:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Biblioteca no está instalado" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Usar Captcha para los usuarios no registrados:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Requiere" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Si usted tiene \"Es necesario registrarse para publicar\" habilitado, dejar esta opción desactivada" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Formato de fecha:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Fecha por defecto:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Verificación" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "para el formato de fecha." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Grupos eliminado:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Foros eliminados:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Hilos eliminados:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Mensajes suprimidos:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Debe introducir un nombre" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Categoría añadida correctamente" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Debe seleccionar una categoría" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Ha elegido un nombre de foro que ya existe en este grupo, por favor, especifique otro" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Foro añadido correctamente" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr " Foro Mingle>> Categorías y Foros" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Modificar" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Añadir foro" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Feed del Foro" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Feed del Foro" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderador retirado con éxito." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderador guardado correctamente." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderador no se eliminará." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Debe seleccionar un usuario" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderador global añadido correctamente" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderador añadido correctamente" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr " Foro Mingle>> Gestión de Moderadores" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Actualmente en moderación" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Actualización" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderador Global: (El usuario puede moderar todos los foros)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "No hay moderadores aún" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "añadido con éxito" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr " Foro Mingle>> Opciones de plantilla" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Opción Nombre" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Salvar cambios" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Añadir foro a" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Descripción:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Guardar foro" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Editar categoría" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Editar categoría" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Guardar grupo de usuarios" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Seleccione Grupo de usuarios" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Añadir usuarios" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Debe especificar un nombre de grupo" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grupo actualizado correctamente" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Debe especificar un nombre de foro" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Foro actualizado correctamente" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Editar categoría" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Grupos de usuarios:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Los miembros del grupo de usuarios marcado tienen acceso a los foros en esta categoría:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "No hay grupos de usuarios" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Guardar grupo" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Editar foro" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Seleccione usuario" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Añadir moderador" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Debe especificar un nombre para el Grupo de Usuarios" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Grupo de Usuarios actualizado con éxito" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Editar grupo de usuarios" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Guardar grupo de usuarios" + +#~ msgid "General Options" +#~ msgstr "Opciones generales" + +#~ msgid "Categories and forums" +#~ msgstr "Categorías y foros" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Avísenme cuando reciba nuevos mensajes?" + +#~ msgid "Remove this post?" +#~ msgstr "Eliminar este mensaje?" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#~ msgid "Messages" +#~ msgstr "Mensajes:" + +#~ msgid "New Message" +#~ msgstr "Nuevo mensaje" + +#~ msgid "Read Message Thread" +#~ msgstr "Leer cadena de mensajes" + +#~ msgid "new" +#~ msgstr "nuevo" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "Correo electrónico" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Opciones válidas: user_login, nickname, display_name, first_name, " +#~ "last_name" + +#~ msgid "Use Private Messages:" +#~ msgstr "Utilice Mensajes Privados:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Recomiendo desactivar esto y el uso de" + +#~ msgid "instead." +#~ msgstr "en su lugar." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Máximo número de mensajes en bandeja de entrada (0 = ilimitado):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Administradores siempre tienen mensajes ilimitados" + +#~ msgid "Message Deleted" +#~ msgstr "Mensaje eliminados" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Su mensaje ha sido eliminado!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Volver a la bandeja de entrada" + +#~ msgid "ERROR" +#~ msgstr "ERROR" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "No dispone de permiso para ver esto!" + +#~ msgid "Create New Message" +#~ msgstr "Crear nuevo mensaje" + +#~ msgid "Unlimited" +#~ msgstr "Ilimitado" + +#~ msgid "Message Box Size" +#~ msgstr "Tamaño de la bandeja de mensajes" + +#~ msgid "of" +#~ msgstr "de" + +#~ msgid "Message Box Is Full!" +#~ msgstr "La bandeja de mensajes está llena!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Usted no puede enviar / recibir mensajes" + +#, fuzzy +#~ msgid "Started By" +#~ msgstr "Iniciado por" + +#~ msgid "Last Reply" +#~ msgstr "Última respuesta" + +#~ msgid "Unread" +#~ msgstr "Sin leer" + +#~ msgid "Read" +#~ msgstr "Leído" + +#~ msgid "No Messages" +#~ msgstr "No hay mensajes" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Lo sentimos, no tiene mensajes!" + +#~ msgid "Message Sent" +#~ msgstr "Mensaje enviado" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "El mensaje ha sido enviado con éxito!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Regresar a la bandeja de entrada" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Ha recibido un nuevo mensaje de" + +#~ msgid "follow this link to view:" +#~ msgstr "siga este enlace para ver:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Mensaje no se pudo enviar!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "La bandeja de entrada de los destinatarios está llena!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Por favor, rellene todos los campos antes de enviar mensaje!" + +#~ msgid "To:" +#~ msgstr "Para:" + +#~ msgid "Select User" +#~ msgstr "Seleccionar usuario" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "" +#~ "Haga clic en este cuadro y empiece a escribir el nombre de usuario para " +#~ "encontrarlo más rápido" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Debe haber iniciado sesión para crear un mensaje privado!" + +#~ msgid "Sender" +#~ msgstr "Remitente" + +#~ msgid "Message Contents" +#~ msgstr "Contenido Mensaje" + +#, fuzzy +#~ msgid "Reply:" +#~ msgstr "Respuesta" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Temas Mingle Foro:" + +#~ msgid "Posts" +#~ msgstr "Puestos" + +#~ msgid "Topics " +#~ msgstr "Temas" + +#~ msgid "Posted on: " +#~ msgstr "Publicado el:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Permitir notificaciones por correo electrónico?" + +#~ msgid "Notify" +#~ msgstr "Notificar" + +#~ msgid "View Inbox" +#~ msgstr "Ver Bandeja de entrada" + +#~ msgid "Contact:" +#~ msgstr "Contacto:" + +#~ msgid "Inbox size" +#~ msgstr "Bandeja de entrada tamaño" + +#~ msgid "total" +#~ msgstr "total" + +#~ msgid "From" +#~ msgstr "De" + +#~ msgid "NEW" +#~ msgstr "NUEVO" + +#~ msgid "OLD" +#~ msgstr "VIEJO" + +#~ msgid "Empty Inbox" +#~ msgstr "Vaciar Bandeja de entrada" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Su bandeja de entrada está vacía!" + +#~ msgid "Try Again" +#~ msgstr "Inténtalo de nuevo" + +#~ msgid "Reply To Message" +#~ msgstr "Responder a mensaje" diff --git a/i18n/mingleforum-et.mo b/i18n/mingleforum-et.mo new file mode 100644 index 0000000..de413ce Binary files /dev/null and b/i18n/mingleforum-et.mo differ diff --git a/i18n/mingleforum-et.po b/i18n/mingleforum-et.po new file mode 100644 index 0000000..76da0b1 --- /dev/null +++ b/i18n/mingleforum-et.po @@ -0,0 +1,1582 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: 2011-04-15 16:04-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Foorumi uudisvoog" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Foorumi teema" + +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Foorum" + +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "Teema" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "ANdmevood on välja lülitatud" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Ei ole sellist kasutajat" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Sul ei ole hetkel tellimusi" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Muuda foorumi seadeid" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Luban teistel näha minu profiili?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Sulle on meiliteade nende teemade kohta:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "Salvesta seaded" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "Viga, kas on?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Turvakood ei sobi" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "Juhtus viga!" + +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "Sa pead sisestama teema" + +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "Sa pead sisestama sõnumi" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "alustas foorumi teema:" + +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "vastas foorumi teemale:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Tsitaat kasutajalt " + +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr "-" + +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "Postita vastus" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Teema:" + +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Sõnum:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Pilt" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Salvesta" + +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "Muuda postitust" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Salvesta postitus" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Alusta uut teemat" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Vabandust, Sul puudub õigus postitamiseks." + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "Uustulnuk" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "Alustaja" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "Edasijõudnu" + +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "Proff" + +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "Mingle Foorum - Valikud" + +#: wpf.class.php:173 +msgid "Options" +msgstr "Valikud" + +#: wpf.class.php:174 +msgid "Ads" +msgstr "Reklaamid" + +#: wpf.class.php:175 +msgid "Skins" +msgstr "Kujundused" + +#: wpf.class.php:176 +msgid "Forum Structure - Categories & Forums" +msgstr "Foorumi struktuur - Kategooriad & Foorumid" + +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "Foorumi struktuur" + +#: wpf.class.php:177 +msgid "Moderators" +msgstr "Moderaatorid" + +#: wpf.class.php:178 +msgid "User Groups" +msgstr "Kasutajagrupid" + +#: wpf.class.php:179 +msgid "About" +msgstr "Lisainfo" + +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "Viimased tegevused" + +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "kasutajalt:" + +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "Tiitel, mida kuvame küljeveerus:" + +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "Kui palju postitusi soovid kuvada?" + +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "Lehekülg laeti üles:" + +#: wpf.class.php:646 +msgid "seconds." +msgstr "sekundiga." + +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "Mingle Foorum " + +#: wpf.class.php:650 +msgid "Version:" +msgstr "Versioon:" + +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "Külaline" + +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "kasutajalt" + +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "Viimased postitused kasutajalt" + +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "Vabandust, Sul pole ligipääsu sellele foorumile." + +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "Staatus" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "Teema pealkiri" + +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "Alustas" + +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "Vastuseid" + +#: wpf.class.php:724 +msgid "Views" +msgstr "Vaatamisi" + +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "Viimane postitus" + +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "Tähtsaimad teemad" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "Liiguta teemat" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "Kustuta teema" + +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "Uued postitused viimasest külastusest" + +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "Foorumi teemad" + +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "Kas eemaldada see teema sinu meiliteadetest?" + +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "Kas lisada see teema sinu meiliteadetesse?" + +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "TEEMA SULETUD" + +#: wpf.class.php:858 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "Postitused:" + +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "Kiirvastus" + +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "Lisa kiirvastus" + +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "Postitus" + +#: wpf.class.php:941 +msgid "on:" +msgstr " postitatud:" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "Tsitaat" + +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "Eemalda" + +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "Muuda" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "Teemad:" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "Postitused:" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "Uued postitused" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "Uusi postitusi pole" + +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "Märgi kõik loetuks" + +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "Pole veel teemasid" + +#: wpf.class.php:1156 +msgid "in" +msgstr " " + +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "Foorumi RSS" + +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "Oled kindel, et tahad selle kustutada?" + +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "Otsingu tulemused" + +#: wpf.class.php:1275 +msgid "Profile" +msgstr "Profiil" + +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "Uus teema" + +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "Moderaatorid:" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "Pole enam kuum teema" + +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "Kuum teema" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "Ava uuesti" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "Sulge" + +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "Vasta" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "Loobu tellimusest" + +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "Telli" + +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "RSS voog" + +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "RSS-voog" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "Minu profiil" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "Minu profiil" + +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "Foorumi avakülg" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "Logi välja" + +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "Otsi" + +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "Oled sisse logitud:" + +#: wpf.class.php:1728 +msgid "Username: " +msgstr "Kasutajanimi:" + +#: wpf.class.php:1729 +msgid "Password: " +msgstr "Parool:" + +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "Jäta meelde" + +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "Administraator" + +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "Moderaator" + +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "Uued teemad viimasest külastusest" + +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "Profiili info" + +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "Muuda profiili" + +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "Tere!" + +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "Sinu viimane külastus oli:" + +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "Näita viimaseid teemasid pärast viimast külastust" + +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "Muuda foorumi seadeid" + +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "Tere tulemast, Külaline, palun logi sisse või" + +#: wpf.class.php:1930 +msgid "register." +msgstr "registreeru!" + +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Tere tulemast, Külaline! Sellesse foorumisse postitamine eeldab" + +#: wpf.class.php:1935 +msgid "registration." +msgstr "registreerumist." + +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "Näita/peida päis" + +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "Otsi foorumitest" + +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "Lehed:" + +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "Esimene" + +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "Viimane" + +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "Postitus kustutatud" + +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Vaata profiili" + +#: wpf.class.php:2279 +msgid "Bold" +msgstr "Bold" + +#: wpf.class.php:2280 +msgid "Italic" +msgstr "Italic" + +#: wpf.class.php:2281 +msgid "Underline" +msgstr "Jooni alla" + +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "Kriipsuta läbi" + +#: wpf.class.php:2283 +msgid "Code" +msgstr "Lisa kood" + +#: wpf.class.php:2285 +msgid "List" +msgstr "List" + +#: wpf.class.php:2286 +msgid "List item" +msgstr "List item" + +#: wpf.class.php:2287 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2288 +msgid "Image" +msgstr "Pilt" + +#: wpf.class.php:2289 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "Lisa värv" + +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "YouTube Video" + +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "Sisesta Google Map" + +#: wpf.class.php:2298 +msgid "Smile" +msgstr "Naeratus" + +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "Suu kõrvuni" + +#: wpf.class.php:2300 +msgid "Sad" +msgstr "Kurb" + +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "Neutraalne" + +#: wpf.class.php:2302 +msgid "Razz" +msgstr "Näitan keelt" + +#: wpf.class.php:2303 +msgid "Mad" +msgstr "Vihane" + +#: wpf.class.php:2304 +msgid "Confused" +msgstr "Sassis" + +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "Mida värki?" + +#: wpf.class.php:2306 +msgid "Wink" +msgstr "Silmapilgutus" + +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "Üllatunud" + +#: wpf.class.php:2308 +msgid "Cool" +msgstr "Eriti kõva mees" + +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "Infokeskus" + +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "postitust" + +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "teemal on teinud" + +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "kasutajat." + +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "Viimane kasutaja:" + +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "Uued teemad pärast sinu viimast külastust" + +#: wpf.class.php:2397 +msgid "Summary" +msgstr "Ülevaade" + +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nimi:" + +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "Registreeritud:" + +#: wpf.class.php:2416 +msgid "Position:" +msgstr "Positsioon:" + +#: wpf.class.php:2419 +msgid "Website:" +msgstr "Veebikülg:" + +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "Lisainfo:" + +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "Mida otsid?" + +#: wpf.class.php:2463 +msgid "By user:" +msgstr "Milliselt kasutajalt?" + +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "Sõnumi vanus" + +#: wpf.class.php:2469 +msgid "Between" +msgstr "Vahemikus" + +#: wpf.class.php:2469 +msgid "and" +msgstr "kuni" + +#: wpf.class.php:2469 +msgid "days" +msgstr "päeva." + +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "Klikka ja vali foorum(id), millest otsida!" + +#: wpf.class.php:2497 +msgid "Check all" +msgstr "Valik kõik" + +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "Otsi" + +#: wpf.class.php:2544 +msgid "Subject" +msgstr "Teema" + +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "Sobivus" + +#: wpf.class.php:2547 +msgid "Posted" +msgstr "Postitatud" + +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "Suletud teema" + +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "Tavaline teema" + +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "Kuum teema" + +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "Väga kuum teema" + +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "Turvakood:" + +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "Sisesta turvakood (nõutud)" + +#: wpf.class.php:2687 +msgid "New post in forum:" +msgstr "Uus postitus foorumis:" + +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "Detailid:" + +#: wpf.class.php:2691 +msgid "Date:" +msgstr "Kuupäev:" + +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "Vastuse sisu:" + +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "Vaata teemat siit:" + +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "Kirjakast" + +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "Saada sõnum" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategooria" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Teema" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Pead märkima kasutajagrupi nime." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Valisid nime, mis on juba kasutusel. Vali uus!" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Kasutajagrupp edukalt lisatud" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Sa pole lisamiseks valinud ühtki kasutajat:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Pead valima kasutajagrupi" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Viga" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Pole sellist kasutajat:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Hoiatus" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Kasutaja" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "on juba selles grupis" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "lisatud edukalt" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Vead:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Hoiatused:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Kasutajaid lisatud:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Kasutajagrupp/grupid kustutatud." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Kasutaja kustutatud." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Foorum >> Kasutajagruppide haldus" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "Lisa uus" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "Kustuta" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Lisa liikmeid" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Selles grupis pole liikmeid." + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Kujundus aktiveeritud." + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Foorum >> Kujundusseaded" + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "Rohkem kujundusi" + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "OLULINE: Versioonist 1.0.03 on kujunduste kausta leiad /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Miks seda muudetud on?" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Ekraanipilt" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nimi" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Versioon" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Kirjeldus" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Tegevus" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "Kasutuses" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Aktiveeri" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "Mingle Foorumist" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Praegune versioon:" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Foorumil on lihtne missioon: FOORUM OLGU LIHTNE! Foorum baseerub WP Forum pluginal ning on sellest VÄGA PALJU edasi arendatud. Praegu toetab see täielikult Blair Williamsi tehtud Mingle pluginat. Tahan suure tänu öelda ka Eric Hambyle oma töö eest foorumi koodi kirjutamisel." + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Autor: " + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Plugina lehekülg:" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Abifoorum:" + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Kujundused:" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Seaded edukalt mudetud." + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingle Foorum" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Statistika" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Väärtus" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Postituste arv:" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Teemade arv:" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Kasutajate arv:" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Andmebaasi maht:" + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Andmebaasi server:" + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Mingle Foorumi versioon:" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Foorum >> Põhiseaded" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "vaikimisi" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Nimi" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Sisend" + +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "Postitusi lehel:" + +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "Teemasid lehel:" + +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "Minimaalne postituste arv, et teema oleks Kuum:" + +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "Minimaalne postituste arv, et teema oleks Väga Kuum:" + +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "Kasutajanime näitamine:" + +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "Uue kasutaja tiitel:" + +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "1. taseme kasutaja tiitel:" + +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "1. taseme jaoks vajalik postituste hulk" + +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "2. taseme kasutaja tiitel:" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "2. taseme jaoks vajalik postituste hulk" + +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "3. taseme kasutaja tiitel:" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "3. taseme jaoks vajalik postituste hulk" + +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "Saada Haldurile teade uute postituste korral:" + +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "Väljas" + +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "Näita foorumi sisselogimisvormi:" + +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "Sees" + +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "Näita foorumis avatare:" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "Näita kasutajate lisainfot postituse lõpus:" + +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "Kasuta foorumis RSS-voogu:" + +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "Kasuta SEO-sõbralikke URL-e:" + +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "TÄHTIS: Lülita see välja, kui saidi püsiviited on vaikimisi seadistustega" + +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "Postitamiseks on vajalik registreerimine:" + +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "Installeeritud versioon:" + +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "GD Library ei ole installeeritud" + +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "Kasuta registreerimata kasutajate jaoks turvatesti (captcha):" + +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "Vajalik " + +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Kui oled märkinud, et \"Postitamiseks on vajalik registreerimine\", siis jäta see märkimata." + +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "Kuupäevaformaat:" + +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "Vaikimisi kuupäev:" + +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "Vaata lisaks " + +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "kuupäeva seadistamiseks." + +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "Gruppe kustutatud:" + +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "Foorumeid kustutatud:" + +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "Teemasid kustutatud:" + +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "Postitusi kustutatud:" + +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "Sa pead sisestama nime" + +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "Kategooria edukalt lisatud" + +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "Sa pead valima kategooria" + +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Oled valinud foorumi nime, mis juba on olemas, palun muuda nime." + +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "Foorum edukalt lisatud." + +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Foorum >> Kategooriad ja foorumid" + +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "Muuda" + +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "Lisa foorum" + +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "Grupp liigutatud alla" + +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "Foorum liigutatud alla" + +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "Grupp liigutatud üles" + +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "Foorum liigutatud üles" + +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "Moderaator kustutatud." + +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "Moderaator edukalt salvestatud." + +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "Moderaator EI OLE kustutatud." + +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "Pead valima kasutaja." + +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "Üldmoderaator edukalt lisatud." + +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "Moderaator edukalt lisatud." + +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Foorum >> Seadista moderaatoreid" + +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "Hetkel modereerimas" + +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "Uuenda" + +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Üldmoderaator: (Kasutaja saab modereerida kõiki foorumeid)" + +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "Hetkel ei ole veel ühtegi moderaatorit" + +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "Reklaamid salvestati edukalt" + +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Foorum Reklaamid >> valikud" + +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "Kõigis alljärgnevates lahtrites saab kasutada HTML-koodi." + +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "Reklaami seaded" + +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "Foorumi alguses" + +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "css-väärtus:" + +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "Foorumi allosas" + +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "Brändingust üleval" + +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "Infokeskusest üleval" + +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "Navigatsiooniteest (breadcrumbs) üleval" + +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "Kiirvastuse kohal" + +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "Esimese postituse järel" + +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "Allpool saad muuta/lisada oma CSS-koodi" + +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "MÄRKUS: Kui sa ei tea, mille jaoks see on, siis jäta see tühjaks" + +#: fs-admin/fs-admin.php:1105 +msgid "Save Options" +msgstr "Salvesta seaded" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Lisa foorum kategooriasse" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Kirjeldus:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Salvesta foorum" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Lisa kategooria" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Salvesta kategooria" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Salvesta kasutajagrupp" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Vali kasutajagrupp" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Lisa kasutajaid" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Pead märkima grupi nime" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grupp edukalt uuendatud" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Pead märkima foorumi nime" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Foorum edukalt uuendatud" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Muuda kategooriat" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Kasutajagrupid:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Valitud kasutajagruppide liikmetel on ligipääs foorumitele selles kategoorias:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Kasutajagrupid puuduvad" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Salvesta grupp" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Muuda foorumit" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Vali kasutaja" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Lisa moderaator" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Pead märkima nime kasutajagrupile" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Kasutajagrupp edukalt uuendatud" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Muuda kasutajagruppi" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Salvesta kasutajagrupp" + +#~ msgid "General Options" +#~ msgstr "Põhiseaded" + +#~ msgid "Categories and forums" +#~ msgstr "Kategooriad ja foorumid" diff --git a/i18n/mingleforum-fa_IR.mo b/i18n/mingleforum-fa_IR.mo new file mode 100644 index 0000000..6a83c9a Binary files /dev/null and b/i18n/mingleforum-fa_IR.mo differ diff --git a/i18n/mingleforum-fa_IR.po b/i18n/mingleforum-fa_IR.po new file mode 100644 index 0000000..f86b923 --- /dev/null +++ b/i18n/mingleforum-fa_IR.po @@ -0,0 +1,1819 @@ +msgid "" +msgstr "" +"Project-Id-Version: mingle-forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: \n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Persian\n" +"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" +"X-Poedit-KeywordsList: __;_e\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "خوراک ( RSS ) انجمن" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "عناوین انجمن" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "انجمن" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "عنوان ها :" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "همچین کاربری وجود ندارد" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "تغییر تنظیمات تالار گفتمان" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "دیگران بتوانند مشخصات من راببینند" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "شما یک اخطاریه برای این موضوع دارید!" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "ذخیره تنظیمات" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "ما متقلب هستیم ؟" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "کد امنیتی را به درستی وارد نمائید" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "خطایی رخ داده است" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "شما باید یک موضوع برای مطلب خود وارد نمائید" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "شما باید پیغامی را وارد نمائید" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "ساختن موضوع تالار:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "پاسخ به موضوع تالار:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "نقل قول تالار گفتمان" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "در" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "ارسال جواب" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "موضوع:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "پاسخ:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "پیغام:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "ارسال" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "ویرایش پست" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "ذخیره پست" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "ارسال پست جدید" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "متاسفانه دسترسی شما برای ارسال پست محدود میباشد" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "مشخصات" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "مینگل فروم » تنظیمات پوسته" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "تنظیمات نام" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr " قالب ها " + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "دسته ها و انجمن ها" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr " مدیران " + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "گروه کاربران" + +#: wpf.class.php:178 +msgid "About" +msgstr " درباره " + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "آخرین فعالیت های تالار گفتمان" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "توسط:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "عنوان نمایش در ابزارک:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "چه تعداد نمایش داده شود؟" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "زمان بارگزاری صفحه :" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "ثانیه." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "نسخه:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "مهمان" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "توسط" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "آخرین ارسال کننده:" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "متاسفانه دسترسی شما به بخش محدود میباشد" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "آمار" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "عنوان پست" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "شروع توسط" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "پاسخ" + +#: wpf.class.php:722 +msgid "Views" +msgstr "نمایش" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "آخرین ارسالی" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "سنجاق کردن پست" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "موضوع جدید" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "حذف پست" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "ارسال های جدید بعد از آخرین ورود شما" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "پست های تالار گفتمان" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "حذف این پست از اخطاریه شما؟" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "ارسال این پست به اخطاریه شما ؟" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "تایپیک بسته است" + +#: wpf.class.php:856 +msgid "Author" +msgstr "نوسینده" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "پست ها:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "پاسخ سریع:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "پاسخ سریع:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "پست" + +#: wpf.class.php:939 +msgid "on:" +msgstr "در" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "نقل قول" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "حذف" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "ویرایش" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "موضوع :" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "پست ها:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "پست های جدید" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "پست جدیدی وجود ندارد" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "هیچ موضوع وجود ندارد" + +#: wpf.class.php:1154 +msgid "in" +msgstr "در" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "فید تالار گفتمان" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "نتایج جستجو" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "مشخصات" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "موضوع جدید" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "مدیر این تالار:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "عدم علامت گذاری برای سنجاق کردن" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "سنجاق کردن پست" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "بازکردن مجدد" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "بسته" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "پاسخ" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "اشتراک" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "اشتراک" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "فید خوان" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "فید خوان" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "مشخصات شما" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "مشخصات شما" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "خوراک ( RSS ) انجمن" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "خروج" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "جستجو" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "زمان بارگزاری صفحه:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "نام کاربری:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "رمز عبور:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "مرا به خاطر بسپار" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "مدیریت" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "ناظم" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "ارسال های جدید بعد از آخرین ورود شما" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "دیدن مشخصات" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "ویرایش مشخصات" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "خوش آمدید" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "آخرین بازدید شما:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "نمایش آخرین تایپیک هاش شما " + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "تغییر تنظیمات تالار گفتمان" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "کاربر مهمان خوش امدید لطفا به سیستم وارد شوید یا" + +#: wpf.class.php:1928 +msgid "register." +msgstr "ثبت نام کنید" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "کاربر مهمان خوش امدید برای ارسال مطلب در این تالار گفتمان باید " + +#: wpf.class.php:1933 +msgid "registration." +msgstr "ثبت نام کنید" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "نمایش یا پنهان کردن سربرگ" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "جستجو برای:" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "صفحات:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "لیست" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "لیست" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "حذف پوست" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "دیدن مشخصات" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "پررنگ" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "کج" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "زیر خط دار" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "خط خورده" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "کد" + +#: wpf.class.php:2283 +msgid "List" +msgstr "لیست" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "لیست بخش ها" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "اتصال" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "عکس" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "پست الکترونیکی" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "افزودن رنگ" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "قراردادن ویدیو یوتوب" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "شکلک" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "پوزخند" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "غمگین" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "خنثی" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "شوخ" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "دیوانه" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "سرافکنده" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "چشمک" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "متعجب" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "خونسرد" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "مرکز اطلاعات" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "نوشته در" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "تایپیک های ایجاد شده توسط" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "کاربر" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "آخرین کاربر" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "آخرین ارسال های شما" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "خلاصه" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "نام :" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "ثبت نام شده ها:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "موقعیت:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "سایت:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "دیدن مشخصات:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "جستجو برای:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "توسط کاربر:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "زمان پیغام:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "میان" + +#: wpf.class.php:2467 +msgid "and" +msgstr "و" + +#: wpf.class.php:2467 +msgid "days" +msgstr "روز" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "برای انتخاب جستجو در انجمن کلیک کنید" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "انتخاب همه" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "شروع جستجو" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "موضوع" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "ارتباط" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "ارسال شده" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "موضوع بسته شده است" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "موضوع های عادی" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "موضوع های داغ" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "موضوع های خیلی داغ:" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "کد امنیتی :" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "کد امنیتی :" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "پست های جدید در تایپیک:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "مشخصات:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "تاریخ:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "محتوای پاسخ:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "نمایش موضوع اینجا:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "ارسال پیغام" + +#: wpf_define.php:33 +msgid "Category" +msgstr "دسته ها:" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "موضوع" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "شما باید یک گروه کاربری را انتخاب نمائید" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "نام انتخاب شده شما قبلا درپایگاه داده ثبت شده است لطفا نام دیگری را انتخاب نمائید" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "گروه کاربران با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "شما هیچ کاربری را برای اضافه کردن انتخاب نکرده اید" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "شما باید یک گروه کاربری را انتخاب نمائید" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "خطا" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "چنین کاربری وجود ندارد:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "خطا" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "کاربران" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "قبلا در این گروه انتخاب شده است" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "خطا ها:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "اخطار ها:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "کاربران اضافه شده" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "گروه کاربری با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "کاربران با موفقیت حذف شدند" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "مینگل فروم » مدیریت گروهی کاربران" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "اضافه کردن جدید" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "حذف" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "اضافه کردن کاربر" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "هیچ کاربری در این گروه قرار ندارد" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "پوسته با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "مینگل فروم » تنظیمات پوسته" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "دریافت پوسته های بیشتر" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "مهم: پوسته های نسخه 1.0.03 باید در مسیر wp-content/mingle-forum-skins باشند." + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "چگونه این را تغییر دهم؟" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "پیش نمایش" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "نام" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "نسخه" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "توضیحات" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "اقدام کردن" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "در حال استفاده" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "فعال" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "درباره مینگل فروم" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "نسخه جاری:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "مینگل فروم یک افزونه ساده برای راه اندازی انجمن است! این افزونه به حد زیادی بهبود یافته 'KEEP IT SIMPLE!' است. در حال حاظر پشتیبانی به طور کامل و ادغام چندین پلاگین توسط Blair Williams صورت گرفته است. همچنین با لطف Eric Hamby می خواهم اسکریپت فروم را گسترش بدهم." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "نویسنده:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "برگه افزونه:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "انجمن پشتیبانی:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "پوسته های مینگل فروم:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "تنظیمات با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "مینگل فروم" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "آمر" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "مقدار" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "تعداد پست ها" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "تعداد زیر بخش ها" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "تعداد کاربران" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "حجم پایگاه داده" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "میزبان دیتا بیس" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "نسخه تالار گفتمان پ" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "مینگل فروم » تنظیمات عمومی" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "پیشفرض" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "تنظیمات نام" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "تنظیمات خروجی" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "تعداد پست ها در هر صفحه:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "تعداد موضوعات صفحه:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "تعداد پست برای موضوعات داغ:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "تعداد پست برای موضوعات خیلی داغ:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "نمایش نام کاربری:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "عنوان سطح کاربر جدید:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "عنوان سطح کاربری 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "تعداد نوشته برای صعود به سطح 1:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "عنوان نام کاریری سطح 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "تعداد نوشته برای صعود به سطح 2:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "عنوان نام کاربری سطح 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "تعداد نوشته برای صعود به سطح 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "پست جدیدی وجود ندارد" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "نمایش فرم ورود به انجمن:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "نمایش آواتور کاربران در انجمن:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "فید تالار گفتمان" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "نیاز به ثبت نام برای ارسال پست:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "نسخه نصب شده:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "کتابخوانه GD نصب نیست" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "استفاده از کدامنیتی برای ثبت نام کاربران:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "نیاز" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "اگر گزینه \"نیاز به ثبت نام برای پست جدید\" فعال باشد" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "فرمت تاریخ:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "تاریخ پیشفرض:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "انتخاب همه" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "برای قالب بندی تاریخ." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "گروه حذف شد" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "انجمن حذف شد" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "موضوع های پاک شده:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "پست ها حذف شد" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "شما باید یک نام را وارد کنید" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "موضوع با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "شما باید یک موضوع انتخاب کنید" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "شما باید نام آن کاربر را برای این گروه انتخاب کنید, لطفا دیگران را مشخص کنید" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "انجمن با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "مینگل فروم » مدیریت موضوع ها و تالارها" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "اصلاح کردن" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "اضافه کردن تالار گفتمان" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "خوراک ( RSS ) انجمن" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "خوراک ( RSS ) انجمن" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "ناظم با موفقیت حذف شد" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "ناظم با موفقیت ذخیره شد" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "ناظم حذف نشد" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "شما باید یک کاربر را انتخاب نمائید" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "ناظم های عمومی با موفقیت اضافه شدند" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "ناظم ها با موفقیت اضافه شدند" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "مینگل فروم » مدیریت ناظم ها" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "مدیران فعلی" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "بروز رسانی" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "ناظم های عمومی :(کاربران میتوانند تمام قسمت ها رامدیریت کنند)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "هیچ ناظمی وجود ندارد" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "با موفقیت اضافه شد" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "مینگل فروم » تنظیمات پوسته" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "تنظیمات نام" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "ذخیره تنظیمات" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "اضافه کردن تالار گفتمان در" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "توضیحات:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "ذخیره تالار گفتمان" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "اضافه کردن دسته" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "ذخیره دسته" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "ذخیره کرن گروهی کاربرن" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "انتخاب گروه کاربران" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "اضافه کردن کاربر" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "شما باید یک گروه کاربری را انتخاب نمائید" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "بروز رسانی گروه کاربری با موفقیت انجام شد" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "شما بای نام یک تالار گفتمان را انتخاب نمائید" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "بروز رسانی تالار گفتمان با موفقیت انجام شد" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "ویرایش دسته ها" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "گروه های کاربری:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "کاربران انتخاب شده گروه کاربری به تالار های گفتمان موضوع زیر دسترسی دارند" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "هیچ گروه کاربری وجود ندارد" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "ذخیره کردن گروه کاربری" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "ویرایش تالار گفتمان" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "انتخاب کاربر :" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "اضافه کردن مدیر" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "شما باید یک گروه کاربری را انتخاب نمائید" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "گروه کاربری با موفقیت بروز رسانی شد" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "ویرایش گروه کاربری" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "ذخیره کردن گروه کاربری" + +#~ msgid "General Options" +#~ msgstr " تنظیمات عمومی " + +#~ msgid "Categories and forums" +#~ msgstr " موضوعات " + +#~ msgid "Remove this post?" +#~ msgstr "حذف این پست ؟" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "گزینه های معتبر: user_login, nickname, display_name, first_name, last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "اطلاع من از دریافت پیغام جدید؟" + +#~ msgid "Messages" +#~ msgstr "پیغام" + +#~ msgid "New Message" +#~ msgstr "پیغام جدید" + +#~ msgid "Read Message Thread" +#~ msgstr "خواندن پیغام" + +#~ msgid "new" +#~ msgstr "جدید" + +#~ msgid "Use Private Messages:" +#~ msgstr "استفاده از پیغام خصوصی:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "توصیه می کنم غیرفعال باشد" + +#~ msgid "instead." +#~ msgstr "استفاده کنید." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "حداکثر پیغام در صندوق (0 = بینهایت):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "مدیریت همیشه می تواند بینهایت پیغام داشته باشد" + +#~ msgid "Message Deleted" +#~ msgstr "پیغام حذف شد" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "پیغام شما حذف شد!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "بازگشت به صندوق پیام شما" + +#~ msgid "ERROR" +#~ msgstr "خطا" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "شما اجازه مشاهده را ندارید!" + +#~ msgid "Create New Message" +#~ msgstr "پیام جدید" + +#~ msgid "Unlimited" +#~ msgstr "نامحدود" + +#~ msgid "Message Box Size" +#~ msgstr "اندازه صندوق پیغام" + +#~ msgid "of" +#~ msgstr "از" + +#~ msgid "Message Box Is Full!" +#~ msgstr "صندوق پیام پر است!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "شما نمی توانید پیغام جدیدی را ارسال و یا دریافت کنید" + +#~ msgid "Started By" +#~ msgstr "ایجاد توسط" + +#~ msgid "Last Reply" +#~ msgstr "ارسال پاسخ" + +#~ msgid "Unread" +#~ msgstr "خوانده نشده" + +#~ msgid "Read" +#~ msgstr "خواندن" + +#~ msgid "No Messages" +#~ msgstr "بدون پیغام" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "متاسفانه شما پیغامی ندارید!" + +#~ msgid "Message Sent" +#~ msgstr "ارسال پیغام" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "پیغام شما با موفقیت ارسال شد!" + +#~ msgid "Back To Your Messages" +#~ msgstr "بازگشت به پیغام های شما" + +#~ msgid "You have recieved a new message from" +#~ msgstr "شما یک پیغام جدید دریافت کرده اید از" + +#~ msgid "follow this link to view:" +#~ msgstr "دنبالک این پیوند برای مشاهده:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "پیغام نمی تواند ارسال شود!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "صندوق دریافت پر است!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "لطفا تمام فیلدها را قبل از ثبت پیام پر کنید!" + +#~ msgid "To:" +#~ msgstr "به:" + +#~ msgid "Select User" +#~ msgstr "انتخاب کاربر" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "" +#~ "با کلیک بر روی صندوق و سپس شروع به تایپ نام کاربری کنید تا سریعتر یافت " +#~ "کنید" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "برای ساختن پیغام جدید باید وارد شوید!" + +#~ msgid "Sender" +#~ msgstr "ارسال کننده" + +#~ msgid "Message Contents" +#~ msgstr "محتوای پیغام" + +#~ msgid "Reply:" +#~ msgstr "پاسخ:" + +#~ msgid "Feed" +#~ msgstr "فید" + +#~ msgid "Email:" +#~ msgstr "پست الکترونیک:" + +#~ msgid "Skin/Theme " +#~ msgstr "پوسته/قالب" + +#~ msgid "Very, Very Hot topic" +#~ msgstr "موضوع های خیلی داغ:" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "پوسته های افزونه انجمن:" + +#~ msgid "Number of posts for hot Topic:" +#~ msgstr "تعداد پست برای موضوعات داغ:" + +#~ msgid "Number of posts for Very, Very Hot Topic:" +#~ msgstr "تعداد پست برای موضوعات خیلی داغ:" + +#~ msgid "Activate email notifications for topics?" +#~ msgstr "فعال سازی ایمیل اخطار برای این موضوع" + +#~ msgid "WP-Forum Options" +#~ msgstr "تنظیمات تالار گفتمان" + +#~ msgid "in:" +#~ msgstr "در:" + +#~ msgid "WP-Forum by:" +#~ msgstr "تالار گفتمان توسط:" + +#~ msgid "Mark as sticky" +#~ msgstr "علامت گذاری برای سنجاق کردن" + +#~ msgid "Notify" +#~ msgstr "آگاهی دادن" + +#~ msgid "Home" +#~ msgstr "صفحه اول انجمن" + +#~ msgid "Mark as Sticky" +#~ msgstr "علامت گذاری برای سنجاق کردن" + +#~ msgid "Unmark as sticky" +#~ msgstr "عدم علامت گذاری برای سنجاق کردن" + +#~ msgid "Member" +#~ msgstr "عضو" + +#~ msgid "Forum Statistics" +#~ msgstr "آمار تالار گفتمان" + +#~ msgid "Posts" +#~ msgstr "پست" + +#~ msgid "Topics " +#~ msgstr "موضوع ها" + +#~ msgid "Edit personal options" +#~ msgstr "ویرایش تنظیمات شخصی" + +#~ msgid "Choose a forum to search in, or search all" +#~ msgstr "انتخاب یک تالار گفتمان برای جستجو یا جستجو در همه" + +#~ msgid "Posted on: " +#~ msgstr "ارسال شده در:" + +#~ msgid "Add User Group" +#~ msgstr "اضافه کردن گروهی کاربران" + +#~ msgid "Separate user names by comma sign ( , )" +#~ msgstr "جدا کردن نام کاربر توسط کاما ( , )" + +#~ msgid "User group:" +#~ msgstr "گروه کاربران:" + +#~ msgid "Skin options" +#~ msgstr "تنظیمات پوسته" + +#~ msgid "Forum statistics" +#~ msgstr "آمار تالار گفتمان" + +#~ msgid "add category" +#~ msgstr "اضافه کردن موضوع" + +#~ msgid "User:" +#~ msgstr "کاربران :" + +#~ msgid "Moderate:" +#~ msgstr "اداره کردن:" + +#~ msgid "WP-Forum" +#~ msgstr "تالار گفتمان" diff --git a/i18n/mingleforum-fi.mo b/i18n/mingleforum-fi.mo new file mode 100644 index 0000000..2259c21 Binary files /dev/null and b/i18n/mingleforum-fi.mo differ diff --git a/i18n/mingleforum-fi.po b/i18n/mingleforum-fi.po new file mode 100644 index 0000000..41b7a2a --- /dev/null +++ b/i18n/mingleforum-fi.po @@ -0,0 +1,1739 @@ +msgid "" +msgstr "" +"Project-Id-Version: mingle-forum.1.0.28.2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-02-23 19:45-0700\n" +"Last-Translator: Paul \n" +"Language-Team: 9xx UT2004\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: FINLAND\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Foorumin Syöte" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Foorumin Aihe:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Keskustelu" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Aihe:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "syötteet on pois käytöstä" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Kyseistä käyttäjää ei ole" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Sinulla ei ole tilauksia tällä hetkellä" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Muokkaa foorumi vaihtoehtoja" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Salli muiden nähdä profiilini?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Olet tilannut sähköposti-ilmoitukset näistä aiheista:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Tallenna valinnat" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Huijataankos sitä?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Varmistuskoodi ei täsmää" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Virhe" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Sinun täytyy kirjoittaa aihe" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Sinun täytyy kirjoittaa viesti" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "aloitti aiheen:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "vastasi aiheeseen:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Lainaus" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr " " + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Vastaa viestiin" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Aihe:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Viesti:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Lähetä" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Muokkaa viestiä" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Tallenna viesti" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Lähetä uusi aihe" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Pahoittelelmme. sinulla ei ole tarvittavia oikeuksia lähettää viestejä." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "Uusi" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "Aloittelija" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "Vanha tekijä" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:171 +#: wpf.class.php:172 +msgid "Mingle Forum - Options" +msgstr "Foorumi - Vaihtoehdot" + +#: wpf.class.php:172 +msgid "Options" +msgstr "Vaihtoehdot" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "Mainokset" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Ulkoasut" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "Foorumin Rakenne - Kategoriat & Foorumit" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "Foorumin rakenne" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderaattorit" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Käyttäjäryhmät" + +#: wpf.class.php:178 +msgid "About" +msgstr "Info" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Uusimmat tapahtumat" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "lähetti:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Sivupalkissa näytettävä Otsikko:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Kuinka monta kohdetta haluat näyttää?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Sivu ladattiin:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekunnissa." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "moottorina " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versio:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Vieras" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr " " + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Uusimman viestin lähetti" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Anteeksi, mutta sinulla ei ole pääsyä tälle foorumille" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Tila" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Aiheen Otsikko:" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Aloitti" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Vastauksia" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Lukukerrat" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Uusin viesti" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Pysyvät Aiheet" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Siirrä aihe" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Poista Aihe" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Uusia aiheita viime käyntisi jälkeen" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Aiheet" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Poista tämä aihe sähköposti ilmoituksista?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Lisää tämä aihe sähköposti ilmoituksiin?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "Aihe suljettu" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Lähetti" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Viestejä:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Nopea vastaus" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Lähetä nopea vastaus" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Viesti" + +#: wpf.class.php:939 +msgid "on:" +msgstr " :" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Lainaus" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Poista" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Muokkaa" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Aiheita:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Viestejä:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Uusia viestejä" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Ei uusia viestejä" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "Merkitse kaikki luetuksi" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Ei aiheita vielä" + +#: wpf.class.php:1154 +msgid "in" +msgstr " " + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Foorumit RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "Oletko varma että haluat poistaa tämän?" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Hakutulokset" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profiili" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Uusi aihe" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderaattorit:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Kumoa Pysyvä" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Pysyvä" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Avaa uudestaan" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Sulje" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Vastaa" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +msgid "Unsubscribe" +msgstr "Peruuta tilaus" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Tilaa" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "RSS-syöte " + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-syöte " + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Oma profiili" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Oma profiili" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Alku" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Kirjaudu ulos" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Etsi" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Olet kirjautuneena:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Käyttäjätunnus:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Salasana:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Muista minut" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Ylläpito" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderaattori" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Uusia aiheita viieme vierailusi jälkeen" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Profiili Info" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Muokkaa profiilia" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Tervetuloa" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Vierailit viimeksi:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Näytä uudet aiheet viime vierailusi jälkeen" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Muokkaa foorumi vaihtoehtoja" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Tervetuloa vieras, kirjaudu sisään tai" + +#: wpf.class.php:1928 +msgid "register." +msgstr "rekisteröidy." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Tervetuloa vieras, kirjoittaminen tälle foorumille vaatii" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "rekisteröitymisen." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Näytä / Piilota" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Etsi keskusteluista" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Sivut:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "Ensimmäinen" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +msgid "Last" +msgstr "Viimeinen" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Viesti poistettu" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Näytä profiili" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Lihavoitu" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Kursivoitu" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Alleviivattu" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Yliviivaus" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Koodi" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Listan kohde" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Linkki" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Kuva" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Sähköposti" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Lisää Hex Väri" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Upotettu YouTube video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "Upotettu Google Map" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Hymyilee" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Iso virnistys" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Surullinen" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutraali" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Hermostunut" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Vihainen" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Pallo hukassa" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Kääk!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Vinkkaus" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Yllättynyt" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info keskus" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Viestiä" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Aihetta kirjoittanut " + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Jäsentä" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Uusin jäsen:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Uusia aiheita viime käyntisi jälkeen" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Yhteenveto" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nimi:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Rekisteröitynyt:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Asema:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Verkkosivusto:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Elämäkertatietoja:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Etsi:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Käyttäjän mukaan:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Viestin Ikä:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Välillä" + +#: wpf.class.php:2467 +msgid "and" +msgstr "ja" + +#: wpf.class.php:2467 +msgid "days" +msgstr "päivää" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Valitse foorumit joista etsitään" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Valitse kaikki" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Aloita haku" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Aihe" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Merkitys" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Lähetetty" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Suljettu aihe" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normaali aihe" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Kuuma aihe" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Erittäin kuuma aihe" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Varmistuskoodi:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Varmistuskoodi (vaaditaan):" + +#: wpf.class.php:2685 +msgid "New post in forum:" +msgstr "Uusi viesti Foorumilla:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "TARKEMMAT TIEDOT:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Päivä:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Vastauksen Sisältö:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Katso Aihe Täällä:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Saapuneet" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Lähetä viesti" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategoria" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Aihe" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Sinun täytyy määrittää käyttäjäryhmän nimi." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Nimi on jo käytössä, valitse jokin toinen" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Käyttäjäryhmä lisätty." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Et ole määrittänyt lisättävää käyttäjää:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Sinun on valittava käyttäjäryhmä" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Virhe" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Ei ole käyttäjää:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Varoitus" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Käyttäjä" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "on jo tässä ryhmässä" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "lisätty" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Virheet:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Varoitukset:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Lisätyt käyttäjät:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Käyttäjäryhmä (t) poistettu." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Jäsen poistettu onnistuneesti." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Foorumi> Hallitse Käyttäjäryhmiä" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "Lisää uusi" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Poista" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Lisää jäseniä" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Ei jäseniä Tässä ryhmässä" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Ulkoasu aktivoitu." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Foorumi> Ulkoasu Vaihtoehdot" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Hanki lisää ulkoasuja" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "TÄRKEÄÄ: Versiosta 1.0.03 lähtien ulkoasuhakemisto on siiretty /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Miksi muutin sitä?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Ruudunkaappaus" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nimi" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versio" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Kuvaus" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Toiminta" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Käytössä" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivoi" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Tietoja Forum pluginista" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Nykyinen versio:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Lähetti:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Plugin Sivu:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Support Forum:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Ulkoasut:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Valinnat onnistuneesti tallennettu." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Foorumi" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Tilastot" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Arvo" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Viestejä:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Säikeiden määrä:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Käyttäjien määrä:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Tietokannan koko:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Tietokantapalvelin:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Forum versio:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Forum> Yleiset asetukset" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "oletus" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Vaihtoehto nimi" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Vaihtoehto Input" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Viestejä per sivu:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Aiheita per sivu:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Kuumien Aiheiden Määrä:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Viestejä Erittäin suositussa aiheessa:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Käyttäjätunnuksen näyttö:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Uusien käyttäjien titteli:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Käyttäjä Taso 1 Nimike:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Käyttäjä Taso 1 Count:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Käyttäjä Taso 2 Otsikko:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Käyttäjä Taso 2 Count:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Käyttäjä Level 3 Otsikko:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Käyttäjä Level 3 Count:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:467 +msgid "Notify Admin on new posts:" +msgstr "Ilmoita ylläpidolle uusista viesteistä:" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "Kiinni" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Näytä Kirjautumislomake foorumille:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "Päällä" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Näytä avattaret foorumilla:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Näytä käyttäjän Bio viestin alaosassa:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Käytä Foorumi RSS:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "Käytä SEO optimoituja URL:" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "TÄRKEÄÄ: Älä ota tätä käyttöön jos olet asettanut pysyvät linkit \"oletus\"" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Rekisteröinti vaaditaan viestien lähettämiseen:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Asennettu versio:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD-kirjasto ei ole asennettu" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Käytä Captchaa rekisteröimättömille käyttäjille:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Edellyttää" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Jos sinulla on otettu käyttöön \"Rekisteröityminen vaaditaan\" yläpuolella, älä ota tätä käyttöön" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Päivämäyksen muoto:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Oletuspäivä:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Valitse" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "päivämäärän muotoiluun." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Ryhmiä poistettu:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Foorumeita poistettu:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Aiheita poistettu:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Viestejä poistettu:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Sinun täytyy antaa nimi" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategoria lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Sinun täytyy valita kategoria" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Olet valinnut foorumin nimen, joka on jo tässä ryhmässä, valitse jokin toinen" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum>> Kategoriat & Foorumit" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Muokkaa" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Lisää foorumi" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "Ryhmä siiretty alas" + +#: fs-admin/fs-admin.php:837 +msgid "Forum Moved Down" +msgstr "Foorumi siiretty alas" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "Ryhmä siiretty ylös" + +#: fs-admin/fs-admin.php:857 +msgid "Forum Moved Up" +msgstr "Foorumi siiretty ylös" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderaattori poistettu onnistuneesti." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderaattori onnistuneesti tallennettu." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderaattoria ei poistettu." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Sinun täytyy valita käyttäjä" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Global Moderator lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderaattori lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum>> Hallitse Moderaattoreita" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Moderoi tällä hetkellä" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Päivitä" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global moderaattori: (Voi moderoida kaikkia foorumeita)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Ei moderaattoreita vielä" + +#: fs-admin/fs-admin.php:1014 +msgid "Ads saved successfully" +msgstr "Mainos Tallennettu" + +#: fs-admin/fs-admin.php:1019 +msgid "Mingle Forum Ads >> options" +msgstr "Foorumin Mainokset> valinnat" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "HTNL on sallittu kaikilla allaolevilla mainos alueilla" + +#: fs-admin/fs-admin.php:1025 +msgid "Ads Option" +msgstr "Mainos vaihtoehdot" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "Ota käyttöön keskustelun yläpuolella oleva tila" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "css arvo" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "Ota käyttöön Keskustelun alapuolella oleva tila" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "Ota käyttöön Brandingin yläpuolella oleva alue" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "Ota käyttöön Info keskuksen yläpuolella oleva alue" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "Ota käyttöön Breadcrumbsin yläpuolella oleva alue" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "Ota käyttöön Pikavastaus lomakkeen yläpuolella oleva alue" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "Ota käyttöön Ensimmäisen viestin alapuolella oleva alue" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "Alhaalla voit muokata omia CSS asetuksia" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "Huom!: Jos et tiedä mikä tämä on, jätä tyhjäksi" + +#: fs-admin/fs-admin.php:1095 +msgid "Save Options" +msgstr "Tallenna valinnat " + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Lisää foorumi" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Kuvaus:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Tallenna foorumi" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Lisää kategoria" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Tallenna kategoria" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Tallenna käyttäjäryhmä" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Valitse Käyttäjäryhmä" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Lisää käyttäjiä" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Sinun on määritettävä ryhmän nimi" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Ryhmä päivitetty onnistuneesti" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Sinun on määritettävä foorumin nimi" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum päivitetty onnistuneesti" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Muokkaa kategoriaa" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Käyttäjäryhmät:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Valituilla Käyttäjäryhmillä on pääsy tämän kategorian foorumeille:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Ei käyttäjäryhmiä" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Tallenna ryhmä" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Muokkaa foorumia" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Valitse käyttäjä" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Lisää moderaattori" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Sinun täytyy määrittää nimi Käyttäjäryhmälle" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Käyttäjäryhmä päivitetty onnistuneesti" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Muokkaa Käyttäjäryhmää" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Tallenna Käyttäjäryhmä" + +#~ msgid "General Options" +#~ msgstr "Yleiset asetukset" + +#~ msgid "Categories and forums" +#~ msgstr "Kategoriat ja foorumit" + +#~ msgid "Remove this post?" +#~ msgstr "Poista tämä viesti?" + +#, fuzzy +#~ msgid "Messages" +#~ msgstr "Viesti:" + +#~ msgid "New Message" +#~ msgstr "Uusi viesti" + +#, fuzzy +#~ msgid "Read Message Thread" +#~ msgstr "Lue viesti" + +#, fuzzy +#~ msgid "new" +#~ msgstr "Lisää uusi" + +#~ msgid "Use Private Messages:" +#~ msgstr "Käytä Yksityiset viestit:" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Suurin Viestit Saapuneet (0 = rajoittamaton):" + +#~ msgid "Message Deleted" +#~ msgstr "Viesti poistettu" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Viesti on poistettu!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Takaisin postilaatikkoon" + +#~ msgid "ERROR" +#~ msgstr "ERROR" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Sinulla ei ole oikeuksia tarkastella tätä!" + +#~ msgid "Create New Message" +#~ msgstr "Luo uusi viesti" + +#~ msgid "Unlimited" +#~ msgstr "Rajoittamaton" + +#, fuzzy +#~ msgid "Message Box Size" +#~ msgstr "Viesti lähetetty" + +#~ msgid "of" +#~ msgstr "ja" + +#, fuzzy +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Olet saanut uuden viestin" + +#, fuzzy +#~ msgid "Started By" +#~ msgstr "Aloittanut" + +#, fuzzy +#~ msgid "Last Reply" +#~ msgstr "Vastaa viestiin" + +#, fuzzy +#~ msgid "No Messages" +#~ msgstr "Uusi viesti" + +#~ msgid "Message Sent" +#~ msgstr "Viesti lähetetty" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Viesti lähetettiin onnistuneesti!" + +#, fuzzy +#~ msgid "Back To Your Messages" +#~ msgstr "Takaisin postilaatikkoon" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Olet saanut uuden viestin" + +#~ msgid "follow this link to view:" +#~ msgstr "seuraa tätä linkkiä, jos haluat nähdä:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Viestiä ei voi lähettää!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Vastaanottajien postilaatikko on täynnä!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Täytä kaikki kentät ennen lähettämistä viesti!" + +#~ msgid "To:" +#~ msgstr "Voit:" + +#~ msgid "Select User" +#~ msgstr "Valitse User" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Sinun täytyy olla kirjautuneena Luo yksityisiä viestejä!" + +#~ msgid "Message Contents" +#~ msgstr "Viestien sisältö" + +#, fuzzy +#~ msgid "Reply:" +#~ msgstr "Vastaus" + +#~ msgid "Feed" +#~ msgstr "Rehu" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "Sähköposti" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Seurustella Forum Teemat:" + +#~ msgid "Posts" +#~ msgstr "Viestejä" + +#~ msgid "Topics " +#~ msgstr "Aiheet" + +#~ msgid "Posted on: " +#~ msgstr "Postitettu:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Anna sähköposti-ilmoitukset?" + +#~ msgid "Notify" +#~ msgstr "Ilmoittaa" + +#~ msgid "View Inbox" +#~ msgstr "Katso Saapuneet" + +#~ msgid "Contact:" +#~ msgstr "Yhteystiedot:" + +#~ msgid "Inbox size" +#~ msgstr "Saapuneet koko" + +#~ msgid "total" +#~ msgstr "koko" + +#~ msgid "From" +#~ msgstr "Alkaen" + +#~ msgid "NEW" +#~ msgstr "UUSI" + +#~ msgid "OLD" +#~ msgstr "OLD" + +#~ msgid "Empty Inbox" +#~ msgstr "Tyhjä Saapuneet" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Saapuneet-kansiossa on tyhjä!" + +#~ msgid "Try Again" +#~ msgstr "Yritä uudelleen" + +#~ msgid "Reply To Message" +#~ msgstr "Vastaa viestiin" diff --git a/i18n/mingleforum-fi_FI.mo b/i18n/mingleforum-fi_FI.mo new file mode 100644 index 0000000..7a36dc2 Binary files /dev/null and b/i18n/mingleforum-fi_FI.mo differ diff --git a/i18n/mingleforum-fi_FI.po b/i18n/mingleforum-fi_FI.po new file mode 100644 index 0000000..af271cb --- /dev/null +++ b/i18n/mingleforum-fi_FI.po @@ -0,0 +1,1739 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:39-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Foorumin Otsikko:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Foorumi" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Aihe:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Ei löydy käyttäjää" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Sinulla ei ole tilauksia" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Muokkaa foorumin asetuksia" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Salli muiden nähdä profiilini?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Sinulla on sähköposti tilauksia näistä aiheista:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Tallenna valinnat" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Huijaamassa, eikö niin?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Suojakoodi ei täsmää" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Virhe tapahtui" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Sinun tulee lisätä aihe" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Sinun tulee lisätä viesti" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "loi foorumin aiheen:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "vastasi foorumin aiheeseen:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Lainaus" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Vastaa viestiin" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Aihe:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Viesti:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Lähetä" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Muokkaa" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Tallenna viesti" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Kirjoita uusi aihe" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Anteeksi. sinulla ei ole oikeutta kirjoittaa." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "Newbie" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "Beginner" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "Advanced" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:171 +#: wpf.class.php:172 +msgid "Mingle Forum - Options" +msgstr "Mingle Foorumi> Asetukset" + +#: wpf.class.php:172 +msgid "Options" +msgstr "Asetukset" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "Mainokset" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Teemoja" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "Foorumin rakenne - Kategoriat ja foorumit" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "Foorumin rakenne" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderaattorit" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Käyttäjäryhmät" + +#: wpf.class.php:178 +msgid "About" +msgstr "Tietoja" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Foorumin viimeisimmät tapahtumat" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "kirjoittanut:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Näkyviin sivupaneeliin:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Kuinka monta kohdetta haluat näyttää?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Sivu latautui:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekunnissa." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Foorumi" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versio:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Vieras" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "kirjoittanut" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Viimeisimmän viestin kirjoitti" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Anteeksi, mutta sinulla ei ole pääsyä tälle foorumille" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Tila" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Otsikko:" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Aloittanut" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Vastauksia" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Luettu" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Uusin viesti:" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Kiinnitetyt aiheet" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Siirrä aihe" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Poista Aihe" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Uusia viestejä viime käyntisi jälkeen" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Aiheet" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Poista tämä aihe sähköposti ilmoituksista?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Lisää tämä aihe sähköposti ilmoituksiin?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "KETJU SULJETTU" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Kirjoittaja" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Viestejä:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Pikavastaus" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Tallenna pikavastaus" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Viesti" + +#: wpf.class.php:939 +msgid "on:" +msgstr "kirjoitettu:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Lainaus" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Poista" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Muokkaa" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Aiheita:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Viestiä:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Uusia viestejä" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Ei uusia viestejä" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "Merkitse kaikki ketjut luetuksi" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Ei aiheita vielä" + +#: wpf.class.php:1154 +msgid "in" +msgstr "aiheeseen" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Foorumin RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "Oletko varma että haluat poistaa tämän?" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Hakutulokset" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profiili" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Uusi aihe" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderaattorit:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Kumoa Sticky" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Sticky" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Avaa uudelleen" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Sulje" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Vastaa" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Tilaa aihe" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Tilaa aihe" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "RSS-syöte" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-syöte" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Oma profiili" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Oma profiili" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Foorumin Etusivu" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Kirjaudu ulos" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Haku" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Olet kirjautunut nimellä:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Käyttäjätunnus:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Salasana:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Muista minut" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Admin" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderaattori" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Uusia viestejä viime käyntisi jälkeen" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Yhteenvetoa" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Muokkaa profiilia" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Tervetuloa" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Viimeinen vierailusi oli:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Näytä uudet viestit viime käyntisi jälkeen" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Muokkaa foorumin asetuksia" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Tervetuloa vieras, kirjaudu sisään tai" + +#: wpf.class.php:1928 +msgid "register." +msgstr "rekisteröidy." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Tervetuloa vieras, kirjoittaminen foorumilla edellyttää" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "rekisteröintiä." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Näytä/piilota" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Search Forums" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Sivut:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "Ensimmäinen" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +msgid "Last" +msgstr "Viimeinen" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Viesti poistettu" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Näytä profiili" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Korostus" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Kursivoitu" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Alleviivaus" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Yliviivaus" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Koodi" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Listan kohde" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Linkki" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Kuva" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Sähköposti" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Lisää Hex Väri" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Youtube video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Hymiö" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Surullinen" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutraali" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Kiukkuinen" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Hämillään" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Silmänisku" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Yllättynyt" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Siisti" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Tilastoja" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Viestiä" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "aiheesta, käyttäjiä yhteensä" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Jäsentä" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Uusin jäsen on:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Uusia aiheita viime käyntisi jälkeen" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Yhteenveto" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nimi:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Rekisteröitynyt:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Asema:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Verkkosivusto:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Elämäkertatietoja:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Etsi:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Käyttäjän mukaan:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Viestin ikä:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Välillä" + +#: wpf.class.php:2467 +msgid "and" +msgstr "ja" + +#: wpf.class.php:2467 +msgid "days" +msgstr "päivää" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Klikkaa käyttääksesi Foorumin hakua" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Tarkista kaikki" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Aloita haku" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Aihe" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Merkitys" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Posted" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Suljettu aihe" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normaali aihe" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Kuuma aihe" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Erittäin kuuma aihe" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Suojakoodi:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Syötä suojakoodi (vaaditaan):" + +#: wpf.class.php:2685 +msgid "New post in forum:" +msgstr "Uusi viesti foorumilla:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "YKSITYISKOHDAT:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Päiväys:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Vastattu foorumilla aiheeseen:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Katso aihetta" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Saapuneet" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Lähetä viesti" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Luokka" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Aihe" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Sinun täytyy määrittää käyttäjäryhmän nimi." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Olet valinnut nimen jo olemassa tietokannassa, ilmoita toinen" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Käyttäjäryhmä lisätty." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Et ole määrittänyt käyttäjää:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Sinun on valittava käyttäjäryhmä" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Virhe" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Ei löydy käyttäjää:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Varoitus" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Käyttäjä" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "on jo tässä ryhmässä" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "lisäys onnistui" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Virheet:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Varoitukset:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Käyttäjät lisätty:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Käyttäjäryhmä (t) poistettu." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Jäsen poistettu onnistuneesti." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Foorumi >> Hallitse käyttäjäryhmiä" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "lisää uusi" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Poista" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Lisää jäseniä" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Ei jäseniä tässä ryhmässä" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Teema aktivoitu." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Foorumi> Teeman asetukset" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Hae lisää teemoja" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "TÄRKEÄÄ: Versiosta 1.0.03 ylöspäin teemojen sijainti muuttui /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Miksi se muuttui?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "kuvakaappaus" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nimi" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versio" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Kuvaus" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Toiminta" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Käytössä" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivoi" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Tietoja Foorumista" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Nykyinen versio:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Tekijä:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Plugin Page:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Support Forum:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Foorumi teemat:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Valinnat onnistuneesti tallennettu." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Foorumi" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Tilastot" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Arvo" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Viestejä:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Aiheita:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Käyttäjiä:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Tietokannan koko:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Tietokantapalvelin:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum versio:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Yleiset asetukset" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "oletusarvo" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Asetuksen nimi" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Asetuksen valinta" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Viestejä per sivu:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Aiheita per sivu:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Kuumia aiheita:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Erittäin suositut aiheet:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Nimen näyttö:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Uuden käyttäjän nimi:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Käyttäjä Taso 1 Nimike:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Käyttäjä Taso 1 Count:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Käyttäjä Taso 2 Otsikko:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Käyttäjä Taso 2 Count:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Käyttäjä Level 3 Otsikko:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Käyttäjä Level 3 Count:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:467 +msgid "Notify Admin on new posts:" +msgstr "Ilmoita ylläpidolle uusista viesteistä:" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "Ei päällä" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Näytä kirjautumiskaavake:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "Päällä" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Näytä Avatarit foorumilla:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Näytä käyttäjän allekirjoitus viestin alla:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Foorumin RSS- syöte päällä:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "TÄRKEÄÄ: Jätä ruksaamatta tämä jos WP asetuksissa osoiterakenne on 'Oletus'" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Rekisteröinti vaaditaan kirjoittamiseen:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Asennettu versio:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD- kirjastoa ei ole asennettu" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Käytä Captcha- suojakoodia rekisteröimättömille käyttäjille:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Edellyttää " + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Jos sinulla on 'Rekisteröinti vaaditaan kirjoittamiseen' päällä, jätä tämä ruksaamatta" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Päivämäärän muoto:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Oletus päivämäärä:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Tarkasta " + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "päivämäärän muotoilu." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Ryhmät poistettu:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Foorumit poistettu:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Aiheita poistettu:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Viestejä poistettu:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Sinun täytyy antaa nimi" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategoria lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Sinun täytyy valita kategoria" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Olet valinnut foorumin nimen joka on jo tässä ryhmässä, ilmoita toinen" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Foorumi lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Foorumi >> Kategoriat ja foorumit" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Muuta" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Lisää foorumi" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "Ryhmä siirretty alaspäin" + +#: fs-admin/fs-admin.php:837 +msgid "Forum Moved Down" +msgstr "Foorumi siirretty alaspäin" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "Ryhmä siirretty ylöspäin" + +#: fs-admin/fs-admin.php:857 +msgid "Forum Moved Up" +msgstr "Foorumi siirretty ylöspäin" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderaattori poistettu onnistuneesti." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderaattori onnistuneesti lisätty." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderaattoria EI poistettu." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Sinun täytyy valita käyttäjä" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Global Moderator lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderaattori lisätty onnistuneesti" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Hallitse Moderaattoreita" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Tällä hetkellä valvoo" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Päivitä" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Super moderaattori: (Käyttäjä voi moderoida kaikkia foorumeita)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Ei valvojia vielä" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "Mainoksen lisäys onnistui" + +#: fs-admin/fs-admin.php:1019 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Foorumin asetukset > Mainokset " + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML sallittu mainosalueilla" + +#: fs-admin/fs-admin.php:1025 +msgid "Ads Option" +msgstr "Mainos asetukset" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "Kytke foorumin yllä oleva alue päälle" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "css- arvo" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "Kytke foorumin alla oleva alue päälle" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "Kytke 'Tilastoja' yläpuolella oleva alue päälle" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "Kytke pikavastauksen yllä oleva alue käyttöön" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "Kytke ensimmäisen viestin alle oleva alue päälle" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "HUOMIO: Ellet tiedä mikä tämä on, jätä tyhjäksi" + +#: fs-admin/fs-admin.php:1095 +msgid "Save Options" +msgstr "Tallenna asetukset" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Lisää foorumi" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Kuvaus:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Tallenna foorumi" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Lisää kategoria" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Tallenna kategoria" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Tallenna käyttäjäryhmä" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Valitse Käyttäjäryhmä" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Lisää käyttäjiä" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Sinun on määritettävä ryhmän nimi" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Ryhmä päivitetty onnistuneesti" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Sinun on määritettävä foorumin nimi" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum päivitetty onnistuneesti" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Muokkaa kategoriaa" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Käyttäjäryhmät:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Vain tietyillä jäsenillä on pääsy tälle alueelle:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Ei käyttäjäryhmää" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Tallenna ryhmä" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Muokkaa foorumia" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Valitse käyttäjä" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Lisää moderaattori" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Sinun täytyy määrittää nimi Käyttäjäryhmälle" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Käyttäjäryhmä päivitetty onnistuneesti" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Muokkaa Käyttäjäryhmää" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Tallenna Käyttäjäryhmä" + +#~ msgid "Remove this post?" +#~ msgstr "Poista tämä viesti?" + +#~ msgid "General Options" +#~ msgstr "Yleiset asetukset" + +#~ msgid "Categories and forums" +#~ msgstr "Kategoriat ja foorumit" + +#, fuzzy +#~ msgid "Messages" +#~ msgstr "Viesti:" + +#~ msgid "New Message" +#~ msgstr "Uusi viesti" + +#, fuzzy +#~ msgid "Read Message Thread" +#~ msgstr "Lue viesti" + +#, fuzzy +#~ msgid "new" +#~ msgstr "Lisää uusi" + +#~ msgid "Use Private Messages:" +#~ msgstr "Käytä Yksityiset viestit:" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Suurin Viestit Saapuneet (0 = rajoittamaton):" + +#~ msgid "Message Deleted" +#~ msgstr "Viesti poistettu" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Viesti on poistettu!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Takaisin postilaatikkoon" + +#~ msgid "ERROR" +#~ msgstr "ERROR" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Sinulla ei ole oikeuksia tarkastella tätä!" + +#~ msgid "Create New Message" +#~ msgstr "Luo uusi viesti" + +#~ msgid "Unlimited" +#~ msgstr "Rajoittamaton" + +#, fuzzy +#~ msgid "Message Box Size" +#~ msgstr "Viesti lähetetty" + +#~ msgid "of" +#~ msgstr "ja" + +#, fuzzy +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Olet saanut uuden viestin" + +#, fuzzy +#~ msgid "Started By" +#~ msgstr "Aloittanut" + +#, fuzzy +#~ msgid "Last Reply" +#~ msgstr "Vastaa viestiin" + +#, fuzzy +#~ msgid "No Messages" +#~ msgstr "Uusi viesti" + +#~ msgid "Message Sent" +#~ msgstr "Viesti lähetetty" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Viesti lähetettiin onnistuneesti!" + +#, fuzzy +#~ msgid "Back To Your Messages" +#~ msgstr "Takaisin postilaatikkoon" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Olet saanut uuden viestin" + +#~ msgid "follow this link to view:" +#~ msgstr "seuraa tätä linkkiä, jos haluat nähdä:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Viestiä ei voi lähettää!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Vastaanottajien postilaatikko on täynnä!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Täytä kaikki kentät ennen lähettämistä viesti!" + +#~ msgid "To:" +#~ msgstr "Voit:" + +#~ msgid "Select User" +#~ msgstr "Valitse User" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Sinun täytyy olla kirjautuneena Luo yksityisiä viestejä!" + +#~ msgid "Message Contents" +#~ msgstr "Viestien sisältö" + +#, fuzzy +#~ msgid "Reply:" +#~ msgstr "Vastaus" + +#~ msgid "Feed" +#~ msgstr "Rehu" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "Sähköposti" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Seurustella Forum Teemat:" + +#~ msgid "Posts" +#~ msgstr "Viestejä" + +#~ msgid "Topics " +#~ msgstr "Aiheet" + +#~ msgid "Posted on: " +#~ msgstr "Postitettu:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Anna sähköposti-ilmoitukset?" + +#~ msgid "Notify" +#~ msgstr "Ilmoittaa" + +#~ msgid "View Inbox" +#~ msgstr "Katso Saapuneet" + +#~ msgid "Contact:" +#~ msgstr "Yhteystiedot:" + +#~ msgid "Inbox size" +#~ msgstr "Saapuneet koko" + +#~ msgid "total" +#~ msgstr "koko" + +#~ msgid "From" +#~ msgstr "Alkaen" + +#~ msgid "NEW" +#~ msgstr "UUSI" + +#~ msgid "OLD" +#~ msgstr "OLD" + +#~ msgid "Empty Inbox" +#~ msgstr "Tyhjä Saapuneet" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Saapuneet-kansiossa on tyhjä!" + +#~ msgid "Try Again" +#~ msgstr "Yritä uudelleen" + +#~ msgid "Reply To Message" +#~ msgstr "Vastaa viestiin" diff --git a/i18n/mingleforum-fr_FR.mo b/i18n/mingleforum-fr_FR.mo new file mode 100644 index 0000000..277920e Binary files /dev/null and b/i18n/mingleforum-fr_FR.mo differ diff --git a/i18n/mingleforum-fr_FR.po b/i18n/mingleforum-fr_FR.po new file mode 100644 index 0000000..ff6122a --- /dev/null +++ b/i18n/mingleforum-fr_FR.po @@ -0,0 +1,1411 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-08-20 10:58+0100\n" +"PO-Revision-Date: 2013-08-20 10:58+0100\n" +"Last-Translator: Xefir Destiny \n" +"Language-Team: Gobiel \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: ..\n" +"X-Generator: Poedit 1.5.7\n" +"X-Poedit-SearchPath-0: .\n" + +#: bbcode.php:122 +msgid "Code" +msgstr "Code" + +#: bbcode.php:126 +msgid "Embed YouTube Video" +msgstr "Ajouter une vidéo Youtube" + +#: bbcode.php:130 +msgid "Embed Google Map" +msgstr "Insérer la carte Google" + +#: bbcode.php:134 +msgid "Spoiler" +msgstr "Objet caché" + +#: feed.php:24 feed.php:25 +msgid "Forum Feed" +msgstr "Fil RSS du forum" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Sujet du forum:" + +#: feed.php:30 wpf.class.php:1815 wpf_define.php:30 +msgid "Forum" +msgstr "Forum" + +#: feed.php:30 +msgid "Topic: " +msgstr "Discussion:" + +#: feed.php:70 +msgid "Feeds are disabled" +msgstr "Les flux sont désactivées" + +#: wpf-edit-profile.php:10 +msgid "No such user" +msgstr "Utilisateur introuvable" + +#: wpf-edit-profile.php:27 +msgid "You have no Topic subscriptions at this time" +msgstr "Vous n'êtes abonné à aucun sujet à l'heure actuelle" + +#: wpf-edit-profile.php:37 +msgid "You have no Forum subscriptions at this time" +msgstr "Vous n'êtes abonné à aucun forum en ce moment" + +#: wpf-edit-profile.php:41 +msgid "Edit forum options" +msgstr "Modifier les options du forum" + +#: wpf-edit-profile.php:46 +msgid "Allow others to view my profile?" +msgstr "Autoriser les autres à voir mon profil?" + +#: wpf-edit-profile.php:49 +msgid "Edit Signature:" +msgstr "Modifier la signature :" + +#: wpf-edit-profile.php:53 +msgid "You have email notifications for these Forums:" +msgstr "Vous avez des notifications par courriel pour ces discussions:" + +#: wpf-edit-profile.php:56 +msgid "You have email notifications for these Topics:" +msgstr "Vous avez des notifications par courriel pour ces discussions:" + +#: wpf-edit-profile.php:59 fs-admin/fs-admin.php:576 +msgid "Save options" +msgstr "Sauvegarder les options" + +#: wpf-edit-profile.php:65 wpf.class.php:589 wpf.class.php:2055 +#: wpf.class.php:2077 wpf.class.php:2108 wpf.class.php:2132 wpf.class.php:2140 +#: wpf.class.php:2274 +msgid "An unknown error has occured. Please try again." +msgstr "" +"Une erreur inconnue s'est produite. Réessayez de nouveau s'il vous plait." + +#: wpf-insert.php:27 +msgid "Oops only Administrators can post in this Forum!" +msgstr "Oups. Seuls les administrateurs peuvent poster sur ce forum !" + +#: wpf-insert.php:36 +msgid "To help prevent spam, we require that you wait" +msgstr "Pour éviter le spam, nous vous demandons d'attendre" + +#: wpf-insert.php:36 +msgid "" +"minutes before posting again. Please use your browsers back button to return." +msgstr "" +"quelques minutes avant de poster à nouveau. Utilisez le bouton retour de " +"votre navigateur pour revenir en arrière." + +#: wpf-insert.php:137 +msgid "Security code does not match" +msgstr "Les codes de sécurité ne sont pas les mêmes" + +#: wpf-insert.php:154 wpf-insert.php:159 wpf-insert.php:164 wpf-insert.php:218 +#: wpf-insert.php:223 wpf-insert.php:228 wpf-insert.php:274 wpf-insert.php:279 +#: wpf-insert.php:285 +msgid "An error occured" +msgstr "Erreur" + +#: wpf-insert.php:155 wpf-insert.php:219 wpf-insert.php:275 +msgid "You must enter a subject" +msgstr "Vous devez entrer un sujet" + +#: wpf-insert.php:160 wpf-insert.php:224 wpf-insert.php:280 +msgid "You must enter a message" +msgstr "Vous devez entrer un message" + +#: wpf-insert.php:286 +msgid "You do not have permission to edit this post!" +msgstr "Vous n'avez pas la permission pour voir cela" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citation de" + +#: wpf-post.php:10 wpf.class.php:648 wpf.class.php:657 wpf.class.php:1211 +msgid "on" +msgstr "le" + +#: wpf-post.php:20 wpf.class.php:1348 wpf.class.php:1881 +msgid "Post Reply" +msgstr "Répondre au message" + +#: wpf-post.php:23 wpf-post.php:76 wpf-thread.php:14 +msgid "Subject:" +msgstr "Sujet:" + +#: wpf-post.php:24 wpf.class.php:928 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 wpf-post.php:80 wpf-thread.php:18 +msgid "Message:" +msgstr "Message:" + +#: wpf-post.php:39 wpf-thread.php:29 +msgid "Images:" +msgstr "Image" + +#: wpf-post.php:50 wpf-thread.php:40 +msgid "Submit" +msgstr "Envoyer" + +#: wpf-post.php:73 wpf.class.php:1345 wpf.class.php:1884 +msgid "Edit Post" +msgstr "Modifier" + +#: wpf-post.php:88 +msgid "Save Post" +msgstr "Sauvegarder" + +#: wpf-thread.php:11 +msgid "Post new Topic" +msgstr "Créer une nouvelle discussion" + +#: wpf-thread.php:48 +msgid "Sorry. you don't have permission to post." +msgstr "Désolé. Vous n'avez pas la permission pour publier" + +#: wpf.class.php:151 fs-admin/fs-admin.php:439 +msgid "Newbie" +msgstr "Nouveau" + +#: wpf.class.php:152 fs-admin/fs-admin.php:443 +msgid "Beginner" +msgstr "Débutant" + +#: wpf.class.php:153 fs-admin/fs-admin.php:451 +msgid "Advanced" +msgstr "Avancé" + +#: wpf.class.php:154 fs-admin/fs-admin.php:459 +msgid "Pro" +msgstr "Profil" + +#: wpf.class.php:177 wpf.class.php:178 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Options de Skins" + +#: wpf.class.php:178 +msgid "Options" +msgstr "Options générales" + +#: wpf.class.php:179 +msgid "Ads" +msgstr "Annonces" + +#: wpf.class.php:180 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:181 +msgid "Forum Structure - Categories & Forums" +msgstr "Catégories et forums" + +#: wpf.class.php:181 +msgid "Forum Structure" +msgstr "Structure du forum" + +#: wpf.class.php:182 +msgid "Moderators" +msgstr "Modérateurs" + +#: wpf.class.php:183 +msgid "User Groups" +msgstr "Groupes" + +#: wpf.class.php:184 +msgid "About" +msgstr "À propos" + +#: wpf.class.php:193 wpf.class.php:194 +msgid "Forums Latest Activity" +msgstr "Dernières activités du forum" + +#: wpf.class.php:213 wpf.class.php:233 +msgid "by:" +msgstr "par:" + +#: wpf.class.php:250 +msgid "Title to display in the sidebar:" +msgstr "Titre à afficher dans la barre latérale:" + +#: wpf.class.php:252 +msgid "How many items would you like to display?" +msgstr "Combien de messages voulez-vou afficher ?" + +#: wpf.class.php:639 wpf.class.php:2309 +msgid "Guest" +msgstr "Invité" + +#: wpf.class.php:648 wpf.class.php:1210 +msgid "by" +msgstr "par" + +#: wpf.class.php:657 +msgid "Latest Post by" +msgstr "Dernier message par" + +#: wpf.class.php:688 wpf.class.php:1131 +msgid "Topics: " +msgstr "Discussions: " + +#: wpf.class.php:688 wpf.class.php:1131 +msgid "Posts: " +msgstr "Messages: " + +#: wpf.class.php:711 +msgid "Remove this Forum from your email notifications?" +msgstr "Supprimer cette discussion de vos alertes par courriel?" + +#: wpf.class.php:713 +msgid "" +"This will notify you of all new Topics created in this Forum. Are you sure " +"that is what you want to do?" +msgstr "" +"Cela va vous informer de tous les sujets créés dans ce forum. Etes-vous sûr " +"que c'est ce que vous voulez faire ?" + +#: wpf.class.php:719 wpf.class.php:856 +msgid "Sorry, but you don't have access to this forum" +msgstr "Désolé, mais vous n'avez pas l'accès à ce forum" + +#: wpf.class.php:725 wpf.class.php:1432 +msgid "Subforums" +msgstr "Sous-forums" + +#: wpf.class.php:738 wpf.class.php:2362 +msgid "Status" +msgstr "Statut" + +#: wpf.class.php:739 wpf.class.php:2363 +msgid "Topic Title" +msgstr "Titre" + +#: wpf.class.php:740 wpf.class.php:2364 wpf.class.php:2476 +msgid "Started by" +msgstr "Créé par" + +#: wpf.class.php:741 wpf.class.php:1059 wpf.class.php:2365 +msgid "Replies" +msgstr "Réponses" + +#: wpf.class.php:742 wpf.class.php:1059 +msgid "Views" +msgstr "Vues" + +#: wpf.class.php:743 wpf.class.php:1210 wpf.class.php:2366 +msgid "Last post" +msgstr "Dernier message" + +#: wpf.class.php:747 +msgid "Sticky Topics" +msgstr "Discussions du moment" + +#: wpf.class.php:751 wpf.class.php:753 wpf.class.php:797 wpf.class.php:799 +#: wpf.class.php:1663 wpf.class.php:1671 +msgid "Move Topic" +msgstr "Déplacer la discussion" + +#: wpf.class.php:751 wpf.class.php:753 wpf.class.php:797 wpf.class.php:799 +msgid "Delete Topic" +msgstr "Supprimer la discussion" + +#: wpf.class.php:763 wpf.class.php:792 wpf.class.php:1049 +msgid "New posts since last visit" +msgstr "Nouveaux messages depuis la dernière visite" + +#: wpf.class.php:780 +msgid "Forum Topics" +msgstr "Discussions" + +#: wpf.class.php:846 +msgid "Remove this Topic from your email notifications?" +msgstr "Supprimer cette discussion de vos alertes par courriel?" + +#: wpf.class.php:848 +msgid "" +"This will notify you of all responses to this Topic. Are you sure that is " +"what you want to do?" +msgstr "" +"Cela va vous informer de toutes les réponses à cette rubrique. Etes-vous sûr " +"que c'est ce que vous voulez faire ?" + +#: wpf.class.php:867 +msgid "TOPIC CLOSED" +msgstr "DISCUSSION FERMÉE" + +#: wpf.class.php:873 +msgid "Author" +msgstr "Auteur" + +#: wpf.class.php:889 wpf.class.php:2420 +msgid "Posts:" +msgstr "Messages:" + +#: wpf.class.php:927 +msgid "Quick Reply" +msgstr "Réponse rapide" + +#: wpf.class.php:935 +msgid "Submit Quick Reply" +msgstr "Réponse rapide" + +#: wpf.class.php:959 wpf_define.php:33 +msgid "Post" +msgstr "Publier" + +#: wpf.class.php:962 +msgid "on:" +msgstr "le:" + +#: wpf.class.php:968 wpf.class.php:977 +msgid "Quote" +msgstr "Citer" + +#: wpf.class.php:970 wpf.class.php:979 fs-admin/fs-admin.php:149 +#: fs-admin/fs-admin.php:975 +msgid "Remove" +msgstr "Supprimer" + +#: wpf.class.php:972 wpf.class.php:981 +msgid "Edit" +msgstr "Modifier" + +#: wpf.class.php:1038 +msgid "Latest posts" +msgstr "Derniers messages" + +#: wpf.class.php:1089 wpf.class.php:1142 +msgid "New posts" +msgstr "Nouveaux messages" + +#: wpf.class.php:1089 wpf.class.php:1142 +msgid "No new posts" +msgstr "Aucun nouveau message" + +#: wpf.class.php:1089 +msgid "Mark All Read" +msgstr "Marquer tout comme lu" + +#: wpf.class.php:1208 +msgid "No topics yet" +msgstr "Aucune discussion pour l'instant" + +#: wpf.class.php:1211 +msgid "in" +msgstr "dans" + +#: wpf.class.php:1269 +msgid "Forums RSS" +msgstr "Fil RSS des forums" + +#: wpf.class.php:1284 +msgid "Are you sure you want to remove this?" +msgstr "Êtes-vous sûr de vouloir supprimer cela ?" + +#: wpf.class.php:1339 wpf.class.php:1874 +msgid "Search Results" +msgstr "Résultats de la recherche" + +#: wpf.class.php:1342 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1351 wpf.class.php:1572 wpf.class.php:1887 +msgid "New Topic" +msgstr "Nouvelle discussion" + +#: wpf.class.php:1422 +msgid "Moderators:" +msgstr "Modérateurs:" + +#: wpf.class.php:1577 wpf.class.php:1637 +msgid "Unsubscribe" +msgstr "Souscrire" + +#: wpf.class.php:1579 wpf.class.php:1639 +msgid "Subscribe" +msgstr "Souscrire" + +#: wpf.class.php:1603 wpf.class.php:1616 +msgid "Undo Sticky" +msgstr "-Important" + +#: wpf.class.php:1605 wpf.class.php:1618 +msgid "Sticky" +msgstr "+Important" + +#: wpf.class.php:1608 wpf.class.php:1621 +msgid "Re-open" +msgstr "Réouvrir" + +#: wpf.class.php:1610 wpf.class.php:1623 +msgid "Close" +msgstr "Fermer" + +#: wpf.class.php:1632 +msgid "Reply" +msgstr "Répondre" + +#: wpf.class.php:1642 +msgid "RSS feed" +msgstr "Fil RSS" + +#: wpf.class.php:1656 +msgid "My profile" +msgstr "Mon profil" + +#: wpf.class.php:1656 +msgid "My Profile" +msgstr "Mon profil" + +#: wpf.class.php:1661 wpf.class.php:1669 +msgid "Forum Home" +msgstr "Accueil" + +#: wpf.class.php:1736 +msgid "You are logged in as:" +msgstr "Vous êtes enregistrés sous:" + +#: wpf.class.php:1742 +msgid "Username: " +msgstr "Pseudonyme:" + +#: wpf.class.php:1743 +msgid "Password: " +msgstr "Mot de passe:" + +#: wpf.class.php:1745 +msgid "Remember Me" +msgstr "Se rappeler de moi" + +#: wpf.class.php:1764 +msgid "Administrator" +msgstr "Administrateur" + +#: wpf.class.php:1768 +msgid "Moderator" +msgstr "Modérateur" + +#: wpf.class.php:1868 +msgid "New Topics since last visit" +msgstr "Nouvelles discussions depuis la dernière visite" + +#: wpf.class.php:1878 +msgid "Profile Info" +msgstr "Infos du profil" + +#: wpf.class.php:1934 +msgid "Edit Profile" +msgstr "Modifier le profil" + +#: wpf.class.php:1937 wpf.class.php:1948 +msgid "Welcome" +msgstr "Bienvenue" + +#: wpf.class.php:1938 +msgid "Your last visit was:" +msgstr "Votre dernière visite était le:" + +#: wpf.class.php:1939 +msgid "Show new topics since your last visit" +msgstr "Montrer les nouvelles discussions" + +#: wpf.class.php:1940 +msgid "Edit your forum options" +msgstr "Modifier les options du forum" + +#: wpf.class.php:1942 +msgid "Log out" +msgstr "Se déconnecter" + +#: wpf.class.php:1947 +msgid "Welcome Guest, please login or" +msgstr "Bienvenue utilisateur invité. Merci de vous enregistrer ou de vous " + +#: wpf.class.php:1947 +msgid "register." +msgstr "inscrire." + +#: wpf.class.php:1952 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Bienvenue utilisateur invité, publier sur ce forum requiert" + +#: wpf.class.php:1952 +msgid "registration." +msgstr "une inscription." + +#: wpf.class.php:1960 +msgid "Show/Hide Header" +msgstr "Afficher/Cacher l'entête" + +#: wpf.class.php:1974 +msgid "Search forums" +msgstr "Rechercher dans les forums" + +#: wpf.class.php:1988 wpf.class.php:2019 +msgid "Pages:" +msgstr "Pages:" + +#: wpf.class.php:2001 wpf.class.php:2032 +msgid "First" +msgstr "Premier de la liste" + +#: wpf.class.php:2012 wpf.class.php:2043 +msgid "Last" +msgstr "Dernier de la liste" + +#: wpf.class.php:2067 +msgid "Move" +msgstr "Déplacer" + +#: wpf.class.php:2067 +msgid "to new forum:" +msgstr "vers un nouveau forum :" + +#: wpf.class.php:2130 +msgid "Post deleted" +msgstr "Message supprimé" + +#: wpf.class.php:2308 fs-admin/fs-admin.php:151 +msgid "View profile" +msgstr "Voir le profil" + +#: wpf.class.php:2326 +msgid "Info Center" +msgstr "Centre d'informations" + +#: wpf.class.php:2333 +msgid "Posts in" +msgstr "Messages dans" + +#: wpf.class.php:2333 +msgid "Topics Made by" +msgstr "discussions crées par" + +#: wpf.class.php:2333 fs-admin/fs-admin.php:143 +msgid "Members" +msgstr "Membres" + +#: wpf.class.php:2333 +msgid "Latest Member:" +msgstr "Derniers membres:" + +#: wpf.class.php:2359 +msgid "New topics since your last visit" +msgstr "Nouvelles discussions depuis votre dernière visite" + +#: wpf.class.php:2405 +msgid "Summary" +msgstr "Sommaire" + +#: wpf.class.php:2411 wpf.class.php:2619 wpf.class.php:2641 wpf.class.php:2663 +#: fs-admin/wpf-add-forum.php:14 fs-admin/wpf-edit-forum-group.php:38 +#: fs-admin/wpf-usergroup-edit.php:32 +msgid "Name:" +msgstr "Nom" + +#: wpf.class.php:2416 +msgid "Registered:" +msgstr "Enregistré:" + +#: wpf.class.php:2424 +msgid "Position:" +msgstr "Rang:" + +#: wpf.class.php:2427 +msgid "Website:" +msgstr "Site web:" + +#: wpf.class.php:2431 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2435 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2438 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +#: wpf.class.php:2442 +msgid "Biographical Info:" +msgstr "Biographie:" + +#: wpf.class.php:2474 +msgid "Subject" +msgstr "Sujet" + +#: wpf.class.php:2475 +msgid "Relevance" +msgstr "Pertinence" + +#: wpf.class.php:2477 +msgid "Posted" +msgstr "Publié" + +#: wpf.class.php:2542 +msgid "Closed topic" +msgstr "Discussion fermée" + +#: wpf.class.php:2545 +msgid "Normal topic" +msgstr "Discussion normale" + +#: wpf.class.php:2548 +msgid "Hot topic" +msgstr "Discussion en vogue" + +#: wpf.class.php:2551 +msgid "Very Hot topic" +msgstr "Discussion très en vogue" + +#: wpf.class.php:2583 +msgid "Security Code:" +msgstr "Code de sécurité:" + +#: wpf.class.php:2603 +msgid "Enter Security Code: (required)" +msgstr "Code de sécurité:" + +#: wpf.class.php:2617 wpf.class.php:2639 +msgid "Forum post - " +msgstr "Discussions" + +#: wpf.class.php:2618 wpf.class.php:2640 wpf.class.php:2662 +msgid "DETAILS:" +msgstr "DÉTAILS:" + +#: wpf.class.php:2620 wpf.class.php:2642 wpf.class.php:2664 +msgid "Email:" +msgstr "Email" + +#: wpf.class.php:2621 wpf.class.php:2643 wpf.class.php:2665 +msgid "Date:" +msgstr "Date" + +#: wpf.class.php:2622 wpf.class.php:2644 wpf.class.php:2666 +msgid "Reply Content:" +msgstr "Réponse:" + +#: wpf.class.php:2623 wpf.class.php:2645 wpf.class.php:2667 +msgid "View Post Here:" +msgstr "Voir discussion:" + +#: wpf.class.php:2661 +msgid "New Forum content - " +msgstr "Nouveau contenu sur le forum - " + +#: wpf.class.php:2861 +msgid "Mingle Forum Post Options" +msgstr "Mingle Forum >> Options de Skins" + +#: wpf.class.php:2867 +msgid "Add this post to" +msgstr "Supprimer ce message?" + +#: wpf.class.php:2871 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "Ne cochez pas cette option si ce post a déjà été lié sur le forum !" + +#: wpf.class.php:2903 +msgid "Join the Forum discussion on this post" +msgstr "Rejoignez le forum de discussion sur ce post" + +#: wpf_define.php:29 +msgid "Category" +msgstr "Catégorie" + +#: wpf_define.php:31 +msgid "Group" +msgstr "Groupes" + +#: wpf_define.php:32 +msgid "Topic" +msgstr "Discussion" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Vous devez spécifier un nom de groupe?" + +#: fs-admin/fs-admin.php:35 fs-admin/fs-admin.php:696 +#: fs-admin/wpf-usergroup-edit.php:14 +msgid "" +"You have choosen a name that already exists in the database, please specify " +"another" +msgstr "Vous avez choisi un nom qui existe déjà, merci d'en choisir un autre" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Groupe créé avec succès." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Vous n'avez pas spécifier l'utilisateur à ajouter:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Vous devez choisir un groupe" + +#: fs-admin/fs-admin.php:67 +msgid "Error" +msgstr "Erreur" + +#: fs-admin/fs-admin.php:67 +msgid "No such user:" +msgstr "Aucun utilisateur:" + +#: fs-admin/fs-admin.php:72 +msgid "Warning" +msgstr "Attention" + +#: fs-admin/fs-admin.php:72 fs-admin/fs-admin.php:77 +msgid "User" +msgstr "Utiliteur" + +#: fs-admin/fs-admin.php:72 +msgid "is already in this group" +msgstr "est déjà dans ce groupe" + +#: fs-admin/fs-admin.php:77 +msgid "added successfully" +msgstr "ajouté avec succès" + +#: fs-admin/fs-admin.php:85 +msgid "Errors:" +msgstr "Erreurs:" + +#: fs-admin/fs-admin.php:86 +msgid "Warnings:" +msgstr "Attention:" + +#: fs-admin/fs-admin.php:87 +msgid "Users added:" +msgstr "Utilisateur ajoutés:" + +#: fs-admin/fs-admin.php:100 +msgid "User Group(s) successfully deleted." +msgstr "Groupe(s) supprimé(s) avec succès." + +#: fs-admin/fs-admin.php:108 +msgid "Member successfully removed." +msgstr "Membre supprimé avec succès." + +#: fs-admin/fs-admin.php:114 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Forum >> Groupes d'utilisateurs" + +#: fs-admin/fs-admin.php:114 fs-admin/fs-admin.php:788 +#: fs-admin/fs-admin.php:961 +msgid "add new" +msgstr "ajouter nouveau" + +#: fs-admin/fs-admin.php:121 fs-admin/fs-admin.php:809 +msgid "Delete" +msgstr "Surpprimer" + +#: fs-admin/fs-admin.php:155 fs-admin/fs-admin.php:161 +msgid "Add members" +msgstr "Ajouter des membres" + +#: fs-admin/fs-admin.php:160 +msgid "No members in this group" +msgstr "Aucun membre dans ce groupe" + +#: fs-admin/fs-admin.php:224 +msgid "Skin successfully activated." +msgstr "Skin activé avec succès" + +#: fs-admin/fs-admin.php:230 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Options de Skins" + +#: fs-admin/fs-admin.php:231 +msgid "Get More Skins" +msgstr "Avoir plus de Skins" + +#: fs-admin/fs-admin.php:235 +msgid "Screenshot" +msgstr "Capture d'écran" + +#: fs-admin/fs-admin.php:236 +msgid "Name" +msgstr "Nom" + +#: fs-admin/fs-admin.php:237 +msgid "Version" +msgstr "Version" + +#: fs-admin/fs-admin.php:238 fs-admin/wpf-edit-forum-group.php:42 +msgid "Description" +msgstr "Description" + +#: fs-admin/fs-admin.php:239 +msgid "Action" +msgstr "Action" + +#: fs-admin/fs-admin.php:254 +msgid "In Use" +msgstr "En cours d'utilisation" + +#: fs-admin/fs-admin.php:256 +msgid "Activate" +msgstr "Activer" + +#: fs-admin/fs-admin.php:285 +msgid "About Mingle Forum" +msgstr "A propos" + +#: fs-admin/fs-admin.php:288 +msgid "Current Version: " +msgstr "Version actuelle:" + +#: fs-admin/fs-admin.php:292 +msgid "" +"Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over " +"from WP Forum and has been improved upon GREATLY. It now fully supports " +"integration with or without the Mingle plugin (by Blair Williams). Also I " +"want to give a big thanks to Eric Hamby for his previous work on the forum " +"script." +msgstr "" +"Mingle Forum a une simple mission: RESTER SIMPLE! Il a été créé à partir de " +"\"WP Forum\" et a été amélioré dans tous les recoins. Il supporte maintenant " +"l'intégration avec ou sans le plugin \"Mingle\" (par Williams Blair). Aussi, " +"je veux dire un grand merci à Eric Hamby pour son travail sur le script." + +#: fs-admin/fs-admin.php:294 +msgid "Author: " +msgstr "Auteur:" + +#: fs-admin/fs-admin.php:295 +msgid "Plugin Page:" +msgstr "Page du plugin:" + +#: fs-admin/fs-admin.php:296 +msgid "Support Forum:" +msgstr "Forum de support:" + +#: fs-admin/fs-admin.php:297 +msgid "Mingle Forum Skins:" +msgstr "Forum" + +#: fs-admin/fs-admin.php:345 +msgid "Options successfully saved." +msgstr "Options enregistrées avec succès." + +#: fs-admin/fs-admin.php:350 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:354 +msgid "Statistic" +msgstr "Statistiques" + +#: fs-admin/fs-admin.php:355 +msgid "Value" +msgstr "Valeur" + +#: fs-admin/fs-admin.php:359 +msgid "Number of posts:" +msgstr "Nombre de messages:" + +#: fs-admin/fs-admin.php:363 +msgid "Number of threads:" +msgstr "Nombre de sujets:" + +#: fs-admin/fs-admin.php:367 +msgid "Number of users:" +msgstr "Nombre d'utilisateurs:" + +#: fs-admin/fs-admin.php:371 +msgid "Total database size:" +msgstr "Taille de la BDD:" + +#: fs-admin/fs-admin.php:375 +msgid "Database server:" +msgstr "Serveur de la BDD:" + +#: fs-admin/fs-admin.php:379 +msgid "Mingle Forum version:" +msgstr "Version du Forum:" + +#: fs-admin/fs-admin.php:384 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Options Générales" + +#: fs-admin/fs-admin.php:389 +msgid "default " +msgstr "défaut" + +#: fs-admin/fs-admin.php:393 +msgid "Option Name" +msgstr "Nom de l'option" + +#: fs-admin/fs-admin.php:394 +msgid "Option Input" +msgstr "Valeur de l'option" + +#: fs-admin/fs-admin.php:399 +msgid "Integrate WordPress Posts with Forum:" +msgstr "Intégrer les articles de WordPress avec le forum :" + +#: fs-admin/fs-admin.php:403 fs-admin/fs-admin.php:470 +#: fs-admin/fs-admin.php:493 fs-admin/fs-admin.php:517 +#: fs-admin/fs-admin.php:556 fs-admin/fs-admin.php:572 +msgid "Off" +msgstr "Off" + +#: fs-admin/fs-admin.php:407 +msgid "Posts per page:" +msgstr "Messages par page:" + +#: fs-admin/fs-admin.php:411 +msgid "Threads per page:" +msgstr "Sujet par page:" + +#: fs-admin/fs-admin.php:417 +msgid "Number of posts for Hot Topic:" +msgstr "Nombres de messages pour les discussions en vogue:" + +#: fs-admin/fs-admin.php:421 +msgid "Number of posts for Very Hot Topic:" +msgstr "Nombres de messages pour les discussions très en vogue:" + +#: fs-admin/fs-admin.php:425 +msgid "Username Display:" +msgstr "Pseudonyme:" + +#: fs-admin/fs-admin.php:438 +msgid "New User's Title:" +msgstr "Titre du nouvel utilisateur:" + +#: fs-admin/fs-admin.php:442 +msgid "User Level 1 Title:" +msgstr "Titre d'un utilisateur Niveau 1:" + +#: fs-admin/fs-admin.php:446 +msgid "User Level 1 Count:" +msgstr "Compteur de l'utilisateur niveau 1:" + +#: fs-admin/fs-admin.php:447 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:450 +msgid "User Level 2 Title:" +msgstr "Titre de l'utilisateur niveau 2:" + +#: fs-admin/fs-admin.php:454 +msgid "User Level 2 Count:" +msgstr "Compteur de l'utilisateur niveau 2:" + +#: fs-admin/fs-admin.php:455 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:458 +msgid "User Level 3 Title:" +msgstr "Titre de l'utilisateur niveau 3:" + +#: fs-admin/fs-admin.php:462 +msgid "User Level 3 Count:" +msgstr "Compteur de l'utilisateur niveau 3:" + +#: fs-admin/fs-admin.php:463 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:466 +msgid "Notify Admin on new posts:" +msgstr "Aucun nouveau message" + +#: fs-admin/fs-admin.php:473 +msgid "Show Forum Login Form:" +msgstr "Afficher le formulaire \"Se connecter\" sur le forum :" + +#: fs-admin/fs-admin.php:477 fs-admin/fs-admin.php:485 +#: fs-admin/fs-admin.php:501 fs-admin/fs-admin.php:509 +#: fs-admin/fs-admin.php:525 +msgid "On" +msgstr "On" + +#: fs-admin/fs-admin.php:481 +msgid "Show Avatars in the forum:" +msgstr "Afficher les avatars dans le forum:" + +#: fs-admin/fs-admin.php:489 +msgid "Allow Images to be uploaded:" +msgstr "Autoriser les images à être téléversé :" + +#: fs-admin/fs-admin.php:497 +msgid "Show users Signature at the bottom of posts:" +msgstr "Montrer la signature à la fin des messages :" + +#: fs-admin/fs-admin.php:505 +msgid "Use Forum RSS:" +msgstr "Fil RSS des forums" + +#: fs-admin/fs-admin.php:513 +msgid "Use SEO friendly URLs:" +msgstr "Utiliser les permaliens :" + +#: fs-admin/fs-admin.php:513 +msgid "" +"IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" +"IMPORTANT : Laissez cette option désactivée si vos permaliens sont réglés " +"sur \"par défaut\"" + +#: fs-admin/fs-admin.php:521 +msgid "Registration required to post:" +msgstr "Enregistrement requis pour publier:" + +#: fs-admin/fs-admin.php:530 +msgid "Installed version:" +msgstr "Version installée:" + +#: fs-admin/fs-admin.php:534 +msgid "GD Library is not installed" +msgstr "Librairie GD non installée:" + +#: fs-admin/fs-admin.php:537 +msgid "Use Captcha for unregistered users:" +msgstr "Utiliser un Captcha pour les utilisateur non enregistrés:" + +#: fs-admin/fs-admin.php:541 +msgid "Requires " +msgstr "Requiert" + +#: fs-admin/fs-admin.php:541 +msgid "" +"If you have 'Registration required to post' above enabled, leave this off" +msgstr "" +"Si vous avez activé \"Inscription obligatoire pour poster\" ci-dessus, " +"désactiver ceci" + +#: fs-admin/fs-admin.php:545 +msgid "Date format:" +msgstr "Format de date:" + +#: fs-admin/fs-admin.php:545 +msgid "Default date:" +msgstr "Date par défaut:" + +#: fs-admin/fs-admin.php:545 +msgid "Check " +msgstr "Cocher" + +#: fs-admin/fs-admin.php:545 +msgid "for date formatting." +msgstr "pour le formatage des dates." + +#: fs-admin/fs-admin.php:549 +msgid "Closed Categories (Admin posting only):" +msgstr "Catégories fermés (seul les Admins peuvent poster) :" + +#: fs-admin/fs-admin.php:549 +msgid "Comma separated list of Category ID's (Ex: 1, 2, 3)" +msgstr "Liste des IDs de Catégories séparée par des virgules" + +#: fs-admin/fs-admin.php:552 +msgid "Users can reply in locked categories" +msgstr "Les utilisateurs peuvent répondre dans les catégories verrouillées" + +#: fs-admin/fs-admin.php:560 +msgid "Time limit between posting:" +msgstr "Délai entre deux posts :" + +#: fs-admin/fs-admin.php:560 +msgid "Prevent lots of SPAM by making users wait a time period between posts." +msgstr "" +"Éviter beaucoup de SPAM en faisant attendre les utilisateurs une période de " +"temps entre les messages." + +#: fs-admin/fs-admin.php:560 +msgid "seconds" +msgstr "secondes." + +#: fs-admin/fs-admin.php:564 +msgid "Number of last posts on home:" +msgstr "Nombre de messages:" + +#: fs-admin/fs-admin.php:564 +msgid "0 to disable" +msgstr "0 pour désactiver" + +#: fs-admin/fs-admin.php:568 +msgid "Disable Branding:" +msgstr "Activer la zone au-dessus du branding" + +#: fs-admin/fs-admin.php:672 +msgid "Forums deleted:" +msgstr "Forums supprimés:" + +#: fs-admin/fs-admin.php:673 +msgid "Threads deleted:" +msgstr "Sujets supprimés:" + +#: fs-admin/fs-admin.php:674 +msgid "Posts deleted:" +msgstr "Messages supprimés:" + +#: fs-admin/fs-admin.php:694 fs-admin/fs-admin.php:718 +msgid "You must enter a name" +msgstr "Vous devez entrer un nom:" + +#: fs-admin/fs-admin.php:703 +msgid "Category added successfully" +msgstr "Catégorie ajoutée avec succès" + +#: fs-admin/fs-admin.php:715 +msgid "You must select a category" +msgstr "Vous devez choisir une catégorie" + +#: fs-admin/fs-admin.php:721 +msgid "" +"You have choosen a forum name that already exists in this group, please " +"specify another" +msgstr "" +"Vous avez choisi un nom de forum qui existe déjà dans ce groupe, merci d'en " +"spécifier un autre" + +#: fs-admin/fs-admin.php:728 +msgid "Forum added successfully" +msgstr "Forum ajouté avec succès" + +#: fs-admin/fs-admin.php:755 fs-admin/fs-admin.php:800 +msgid "Modify" +msgstr "Modifier" + +#: fs-admin/fs-admin.php:755 fs-admin/fs-admin.php:810 +msgid "Add forum" +msgstr "Ajouter un forum" + +#: fs-admin/fs-admin.php:782 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Catégories et Forums" + +#: fs-admin/fs-admin.php:834 +msgid "Group Moved Down" +msgstr "Groupe déplacé vers le bas" + +#: fs-admin/fs-admin.php:844 +msgid "Forum Moved Down" +msgstr "Fil RSS du forum" + +#: fs-admin/fs-admin.php:854 +msgid "Group Moved Up" +msgstr "Groupe déplacé vers le haut" + +#: fs-admin/fs-admin.php:864 +msgid "Forum Moved Up" +msgstr "Fil RSS du forum" + +#: fs-admin/fs-admin.php:911 fs-admin/fs-admin.php:918 +msgid "Moderator successfully removed." +msgstr "Modérateur supprimé avec succès" + +#: fs-admin/fs-admin.php:913 +msgid "Moderator successfully saved." +msgstr "Modérateur sauvé avec succès" + +#: fs-admin/fs-admin.php:920 +msgid "Moderator NOT removed." +msgstr "Modérateur NON supprimé?" + +#: fs-admin/fs-admin.php:932 +msgid "You must select a user" +msgstr "Vous devez sélectionner un utilisateur" + +#: fs-admin/fs-admin.php:936 +msgid "Global Moderator added successfully" +msgstr "Modérateur Global ajouté avec succès" + +#: fs-admin/fs-admin.php:940 +msgid "Moderator added successfully" +msgstr "Modérateur ajouté avec succès" + +#: fs-admin/fs-admin.php:961 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Gérer les Modérateurs" + +#: fs-admin/fs-admin.php:970 +msgid "Currently moderating" +msgstr "En cours de modération" + +#: fs-admin/fs-admin.php:974 +msgid "Update" +msgstr "Mise à jour" + +#: fs-admin/fs-admin.php:984 fs-admin/wpf-moderator.php:25 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Modérateur Global: (peut modérer tous les forums)" + +#: fs-admin/fs-admin.php:1003 +msgid "No moderators yet" +msgstr "Aucun modérateur pour l'instant" + +#: fs-admin/fs-admin.php:1028 +msgid "Ads saved successfully" +msgstr "ajouté avec succès" + +#: fs-admin/fs-admin.php:1033 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Options de Skins" + +#: fs-admin/fs-admin.php:1035 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML est autorisé dans toutes les zones d'annonces ci-dessous" + +#: fs-admin/fs-admin.php:1039 +msgid "Ads Option" +msgstr "Nom de l'option" + +#: fs-admin/fs-admin.php:1046 +msgid "Enable Area Above Forum" +msgstr "Activer la zone au-dessus du forum" + +#: fs-admin/fs-admin.php:1048 fs-admin/fs-admin.php:1056 +#: fs-admin/fs-admin.php:1064 fs-admin/fs-admin.php:1072 +#: fs-admin/fs-admin.php:1080 fs-admin/fs-admin.php:1088 +#: fs-admin/fs-admin.php:1096 +msgid "css-value:" +msgstr "Valeur CSS :" + +#: fs-admin/fs-admin.php:1054 +msgid "Enable Area Below Forum" +msgstr "Activer la zone en dessous du forum" + +#: fs-admin/fs-admin.php:1062 +msgid "Enable Area Above Branding" +msgstr "Activer la zone au-dessus du branding" + +#: fs-admin/fs-admin.php:1070 +msgid "Enable Area Above Info Center" +msgstr "Activer la zone au-dessus du centre d'informations" + +#: fs-admin/fs-admin.php:1078 +msgid "Enable Area Above Breadcrumbs" +msgstr "Activer la zone au-dessus du fil d'Ariane" + +#: fs-admin/fs-admin.php:1086 +msgid "Enable Area Above Quick Reply Form" +msgstr "Activer la zone au-dessus du formulaire de réponse rapide" + +#: fs-admin/fs-admin.php:1094 +msgid "Enable Area Below First Post" +msgstr "Activer la zone en dessous du premier post" + +#: fs-admin/fs-admin.php:1101 +msgid "Below you can modify/add your own CSS" +msgstr "Ci-dessous vous pouvez modifier / ajouter votre propre CSS" + +#: fs-admin/fs-admin.php:1102 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "REMARQUE : Si vous ne savez pas ce que c'est, laissez ce champ vide" + +#: fs-admin/fs-admin.php:1109 +msgid "Save Options" +msgstr "Sauvegarder les options" + +#: fs-admin/wpf-add-forum.php:8 +msgid "Add category" +msgstr "Modifier les catégories" + +#: fs-admin/wpf-add-forum.php:8 +msgid "Add forum to" +msgstr "Ajouter le forum à" + +#: fs-admin/wpf-add-forum.php:18 fs-admin/wpf-usergroup-edit.php:36 +msgid "Description:" +msgstr "Description:" + +#: fs-admin/wpf-add-forum.php:26 fs-admin/wpf-edit-forum-group.php:128 +msgid "Save forum" +msgstr "Sauvegarder le forum" + +#: fs-admin/wpf-add-usergroup.php:7 +msgid "Add User Group" +msgstr "Modifier le groupe" + +#: fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "Sauvegarder le groupe" + +#: fs-admin/wpf-addusers.php:9 fs-admin/wpf-addusers.php:32 +msgid "Add users" +msgstr "Ajouter des utilisateurs" + +#: fs-admin/wpf-addusers.php:22 +msgid "Select User group" +msgstr "Sélectionner le groupe" + +#: fs-admin/wpf-edit-forum-group.php:13 +msgid "You must specify a forum name" +msgstr "Vous devez spécifier un nom de forum" + +#: fs-admin/wpf-edit-forum-group.php:20 +msgid "Forum updated successfully" +msgstr "Forum mis à jour avec succès" + +#: fs-admin/wpf-edit-forum-group.php:32 +msgid "Edit forum" +msgstr "Modifier le forum" + +#: fs-admin/wpf-edit-forum-group.php:46 fs-admin/wpf-edit-forum-group.php:87 +msgid "User Groups:" +msgstr "Groupes d'utilisateurs:" + +#: fs-admin/wpf-edit-forum-group.php:49 +msgid "" +"Members of the checked User Groups have access to the forums in this " +"category:" +msgstr "Les membres du groupe coché ont accès aux forums dans cette catégorie:" + +#: fs-admin/wpf-edit-forum-group.php:81 fs-admin/wpf-edit-forum-group.php:121 +msgid "There are no User Groups" +msgstr "Il n'y a pas de groupes d'utilisateurs" + +#: fs-admin/wpf-edit-forum-group.php:90 +msgid "" +"Members of the checked User Groups can post to the forums in this category:" +msgstr "Les membres du groupe coché ont accès aux forums dans cette catégorie:" + +#: fs-admin/wpf-moderator.php:8 fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "Ajouter un modérateur" + +#: fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "Sélectionner l'utilisateur" + +#: fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "Vous devez spécifier un nom pour ce groupe" + +#: fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "Groupe mis à jour avec succès" + +#: fs-admin/wpf-usergroup-edit.php:27 +msgid "Edit User Group" +msgstr "Modifier le groupe" + +#: fs-admin/wpf-usergroup-edit.php:41 +msgid "Save User Group" +msgstr "Sauvegarder le groupe" diff --git a/i18n/mingleforum-ge_GE.mo b/i18n/mingleforum-ge_GE.mo new file mode 100644 index 0000000..3ce2cd1 Binary files /dev/null and b/i18n/mingleforum-ge_GE.mo differ diff --git a/i18n/mingleforum-ge_GE.po b/i18n/mingleforum-ge_GE.po new file mode 100644 index 0000000..c8d08be --- /dev/null +++ b/i18n/mingleforum-ge_GE.po @@ -0,0 +1,1761 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "ფორუმის თემა:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "ფორუმი" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "თემა: " + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "მომხმარებელი არ არსებობს" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "ფორუმის პარამეტრების რედაქტირება" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "დავრთო სხვა მომხმარებლებს ჩემი პროფაილის ნახვის უფლება?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "თქვენ გაქვთ შეტყობინება ელ-ფოსტაზე ამ თემებისთვის : " + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "დაიმახსოვრე პარამეტრები" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "მოტყუებას ვდილობთ?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "დამცავი კოდი არ ემთხვევა" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "დაფიქსირდა შეცდომა" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "გთხოვთ მიუთითეთ თემის სათაური" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "გთხოვთ დაწეროთ შეტყობინება" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "შექმნა ფორუმის თემა:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "გამოეხმაურა ფორუმის თემაში:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "ციტატა" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "თარიღი: " + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "გამოხმაურება" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "სათაური: " + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "პასუხი:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "პოსტი: " + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "გამოაქვეყნე" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "რედაქტირება" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "განაახლე" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "ახალი თემის გახსნა" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "თქვენ არ გაქვთ შეტყობინების გაგზავნის უფლება" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "პროფაილი" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> გარსის პარამეტრები" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "პარამეტრის სახელი" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "გარსი" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "კატეგორიები და ფორუმები" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "მოდერატორები" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "მომხმარებლის ჯგუფები" + +#: wpf.class.php:178 +msgid "About" +msgstr "ჩანართის შესახებ" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "ფორუმის აქტივობა" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "ავტორი: " + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "სათაური გვერდით პანელში ასახვისთვის" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "რამდენი ელემენტის ჩვენება გსურთ?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "გვერდი ჩაიტვირთა" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "წამში" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "ვერსია" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "სტუმარი" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "*" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "ბოლო პოსტის ავტორი: " + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "თქვენ არ გაქვთ ამ ფორუმის ნახვის უფლება" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "სტატუსი" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "თემის სათაური" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "ავტორი" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "გამოხმაურება" + +#: wpf.class.php:722 +msgid "Views" +msgstr "დათვალიერება" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "ბოლო პოსტის ავტორი: " + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "მნიშვნელოვანი თემა" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "თემის გადატანა" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "თემის წაშლა" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "წინა ვიზიტიდან ამ დრომდე დაწერილი შეტყობინებები" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "თემა:" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "წავშალო ეს თემა ელ-ფოსტით შეტყობინებათა სიიდან?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "დავამატო ეს თემა ელ-ფოსტით შეტყობინებათა სიაში?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "" + +#: wpf.class.php:856 +msgid "Author" +msgstr "ავტორი" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "პოსტი: " + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "სწრაფი პასუხი:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "სწრაფი პასუხი:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "პოსტი" + +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "თარიღი: " + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "ციტირება" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "წაშალე" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "რედაქტირება" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "თემა: " + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "პოსტი: " + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "ახალი პოსტი" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "ახალი პოსტი არ არის" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "ფორუმი ცარიელია" + +#: wpf.class.php:1154 +msgid "in" +msgstr "თემა: " + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS არხი" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "ძებნის შედეგები" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "პროფაილი" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "ახალი თემა" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "მოდერატორი" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "წაშალე მნიშვნელოვანი თემების სიიდან" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "მნიშვნელოვანი თემა" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#, fuzzy +msgid "Re-open" +msgstr "წაშალე" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +#, fuzzy +msgid "Close" +msgstr "კოდი" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "გამოხმაურება" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "გამოიწერე" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "გამოიწერე" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS არხი" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS არხი" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "ჩემი პროფაილი " + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "| პროფაილი |" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "| საწყისი გვერდი |" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "გასვლა" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "| ძებნა |" + +#: wpf.class.php:1720 +#, fuzzy +msgid "You are logged in as:" +msgstr "გვერდი ჩაიტვირთა" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "მომხმარებლის სახელი" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "პაროლი" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "დაიმახსოვრე" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "ადმინისტრატორი" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "მოდერატორი" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "ბოლო ვიზიტიდან ამ დრომდე შექმნილი თემები" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "მომხმარებლის პროფაილი" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "პროფაილის რედაქტირება" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "გამარჯობა" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "ფორუმზე თქვენი ბოლო შემოსვლის თარიღი:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "ჩემი ბოლო შემოსვლიდან ამ დრომდე შექმნილი თემები" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "ფორუმის პარამეტრების შეცვლა" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "სტუმარს სალამი! გთხოვთ გაიაროთ ავტორიზაცია, ან" + +#: wpf.class.php:1928 +msgid "register." +msgstr "დარეგისტრირდით" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "ფორუმში მონაწილეობისთვის აუცილებელია" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "რეგისტრაცია" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "ფორუმზე ძებნა" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "გვერდი" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "ჩამონათვალი" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "ჩამონათვალი" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "პოსტი წაიშალა" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "პროფაილის დათვალიერება" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "მუქი" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "კურსივი" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "ხაზგასმული" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Strikethrough" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "კოდი" + +#: wpf.class.php:2283 +msgid "List" +msgstr "ჩამონათვალი" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "List item" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "ბმული" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "სურათი" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "ელ-ფოსტა" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "დაამატე Hex ფერი" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "ჩასვი ვიდეო YouTube-დან" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +#, fuzzy +msgid "Smile" +msgstr "ელ-ფოსტა" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +#, fuzzy +msgid "Sad" +msgstr "-დან" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +#, fuzzy +msgid "Mad" +msgstr "-დან" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +#, fuzzy +msgid "Wink" +msgstr "ბმული" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "საინფორმაციო ცენტრი" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Posts in" +msgstr "პოსტი: " + +#: wpf.class.php:2325 +#, fuzzy +msgid "Topics Made by" +msgstr "ავტორი" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "მომხმარებლები" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "ბოლოს დარეგისტრირდა:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "ბოლო ვიზიტიდან ამ დრომდე შექმნილი თემები" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "რეზიუმე" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "სახელი:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "დარეგისტრირდა" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "პოზიცია" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "ვებ-გვერდი" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "დამატებით:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "ძებნა:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "მომხმარებლის სახელის მიხედვით" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "შეტყობინების ასაკი" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "|" + +#: wpf.class.php:2467 +msgid "and" +msgstr "-დან" + +#: wpf.class.php:2467 +msgid "days" +msgstr "-მდე დღე" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "ძებნის დამატებითი პარამეტრების შეცვლა" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "მონიშნე ყველა ფორუმი" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "მოძებნე" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "სათაური" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevance" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "თარიღი" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "დახურული ტოპიკი" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "ჩვეულებრივი ტოპიკი" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "პოპულარული ტოპიკი" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "ყველაზე პოპულარული ტოპიკი" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "დამცავი კოდი:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "დამცავი კოდი:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "ახალი გამოხმაურება ტოპიკზე:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "" + +#: wpf.class.php:2689 +#, fuzzy +msgid "Date:" +msgstr "სახელი:" + +#: wpf.class.php:2690 +#, fuzzy +msgid "Reply Content:" +msgstr "შეტყობინების შინაარსი" + +#: wpf.class.php:2691 +#, fuzzy +msgid "View Topic Here:" +msgstr "ახალი თემა" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "გაგზავნე!" + +#: wpf_define.php:33 +msgid "Category" +msgstr "კატეგორია" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "ტოპიკი" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "გთხოვთ მიუთითოთ მომხმარებელთა ჯგუფის სახელი" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "სახელი, რომელიც თქვენ მიუთითეთ უკვე დაკავებულია. გთხოვთ სცადოთ სხვა" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "მომხმარებლთა ჯგუფი წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "დასამატებლად გთხოვთ მიუთითოთ მომხმარებლის სახელი" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "გთხოვთ აირჩიოთ მომხმარებელთა ჯგუფი" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "შეცდომა" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "მომხმარებელი არ არსებობს:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "გაფრთხილება" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "მომხმარებელი" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "უკვე არის ამ სიაში" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "შეცდომები:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "გაფრთხილებები:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "მომხმარებელი დაემატა:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "მომხმარებელთა ჯგუფი/ჯგუფები წარმატებით წაიშალა" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "მომხმარებელი წარმატებით წაიშალა." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> მომხმარებელთა ჯგუფების მართვა" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "დაამატე ახალი" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "წაშალე" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "დაამატე მომხმარებელი" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "ჯგუფი ცარიელია" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "გარსი წარმატებით გააქტიურდა." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> გარსის პარამეტრები" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "გადმოწერე ამ ჩანართის თემები" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "ყურადღება: 1.0.03 ვერსიიდან მოყოლებული, გარსების ფოლდერმა გადაინაცვლა შემდეგ ფოლდერში: /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "რატომ?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "ეკრანის ანაბეჭდი" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "სახელი" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "ვერსია" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "აღწერა" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "მდგომარეობა" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "აქტიურია" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "გაააქტიურე" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Mingle Forum-ის შესხებ" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "ჩანართის ვერსია" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum-ის მიზანია იყოს მარტივი მოსახმარი და ყველასთვის გასაგები. მაგალითი აღებული იქნა ჩანართისგან \"WP Forum\". მოხდა მისი გაუმჯობესება და დახვეწა. ჩანართი \"Mingle Forum\" ამიერიდან მუშაობს ავტონომიურად და აღარ საჭიროებს ჩანართს \"Mingle plugin\" (ავტორი: ბლეირ უილიამსი (Blair Williams)). განსაკუთრებული მადლობა მინდა გადავუხადო ერიკ ჰემბის (Eric Hamby) ფორუმის სკრიპტის შექმნაში მიღებული მონაწილეობისთვის." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "ავტორი: " + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "ჩანართის გვერდი: " + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "ტექნიკური მხარდაჭერა: " + +#: fs-admin/fs-admin.php:307 +#, fuzzy +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum " + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "პარამეტრები შენახულია!" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forumს" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "სტატისტიკა" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "მაჩვენებელი" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "პოსტების რაოდენობა: " + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "თემების რაოდენობა: " + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "მომხმარებელთა რაოდენობა: " + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "მონაცემთა ბაზის მოცულობა: " + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "მონაცემთა ბაზის სერვერი: " + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "ფორუმის ვერსია: " + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> ზოგადი პარამეტრები" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "ნაგულისხმევი" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "პარამეტრის სახელი" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "პარამეტრის შეყვანა" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "შეტყობინებების რაოდენობა გვერდზე: " + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "თემების რაოდენობა გვერდზე: " + +#: fs-admin/fs-admin.php:418 +#, fuzzy +msgid "Number of posts for Hot Topic:" +msgstr "პოსტების რაოდენობა პოპულარული ტოპიკებისთვის" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "პოსტების რაოდენობა ყველაზე პოპულარული ტოპიკებისთვის" + +#: fs-admin/fs-admin.php:426 +#, fuzzy +msgid "Username Display:" +msgstr "მომხმარებლის სახელი" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "ახალი მომხმარებლის წოდება:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "მომხმარებლის რანგი I:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "მომხმარებლის I რანგის პოსტების რაოდენობა:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "მომხმარებლის რანგი III:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "მომხმარებლის II რანგის პოსტების რაოდენობა:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "მომხმარებლის რანგი III:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "მომხმარებლის II რანგის პოსტების რაოდენობა:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "ახალი პოსტი არ არის" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "ავატარები გამოჩნდეს ფორუმზე?" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "RSS არხი" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "დაპოსტვისთვის რეგისტრაცია აუცილებელია?" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "დაინსტალირებულია ვერსია:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library არ არის დაინსტალირებული" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "ჩართე დამცავი კოდის გენერატორი (Captcha) დაურეგისტრირებელი მომხმარებლებისთვის:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "პარამეტრი მოითხოვს" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:538 +#, fuzzy +msgid "Date format:" +msgstr "ფორუმის დამახსოვრება" + +#: fs-admin/fs-admin.php:538 +#, fuzzy +msgid "Default date:" +msgstr "ნაგულისხმევი" + +#: fs-admin/fs-admin.php:538 +#, fuzzy +msgid "Check " +msgstr "მონიშნე ყველა ფორუმი" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "" + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "ჯგუფი წაშლილია" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "ფორუმები წაიშალა:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "თემები წაიშალა:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "პოსტი წაიშალა:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "გთხოვთ მიუთითოთ სახელი" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "კატეგორია წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "გთხოვთ აირჩიოთ კატეგორია" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "სახელი, რომელიც თქვენ მიუთითეთ უკვე დაკავებულია. გთხოვთ სცადოთ სხვა" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "ფორუმი წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> კატეგორიები და ფორუმები" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "| რედაქტირება |" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "დაამატე ფორუმი" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "მოდერატორი წარმატებით წაიშალა." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "მოდერატორის პარამეტრები წარმატებით განახლდა." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "მოდერატორი არ წაიშალა." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "გთხოვთ აირჩიოთ მომხმარებელი" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "გლობალური მოდერატორი წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "მოდერატორი წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> მოდერატორების მართვა" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "მოდერირების უფლება ფორუმებში" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "განაახლე" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "გლობალური მოდერატორი: (მომხმარებელს ყველა თემაში შეუძლია მოდერირება)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "ჯერ-ჯერობით მოდერატორი არავინაა" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "წარმატებით დაემატა" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> გარსის პარამეტრები" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "პარამეტრის სახელი" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "დაიმახსოვრე პარამეტრები" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "დაამატე ფორუმი" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "აღწერა" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "ფორუმის დამახსოვრება" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "კატეგორიის რედაქტირება" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "კატეგორიის რედაქტირება" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "მომხმარებელთა ჯგუფის დამახსოვრება" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "აირჩიე მომხმარებელთა ჯგუფი" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "დაამატე მომხმარებლები" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "გთხოვთ მიუთითოთ ჯგუფის სახელი" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "ჯგუფი წარმატებით განახლდა" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "გთხოვთ მიუთითოთ ფორუმის სახელი" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "ფორუმი წარმატებით განახლდა" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "კატეგორიის რედაქტირება" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "მომხმარებელთა ჯგუფი:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "მონიშნული მომხმარებელთა ჯგუფის წევრებს, ამ კატეგორიაში აქვთ წვდომა შემდეგ ფორუმებზე:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "მომხმარებელთა ჯგუფი არ არის" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "დაიმახსოვრე ჯგუფი" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "ფორუმის რედაქტირება" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "აირჩიე მომხმარებელი" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "დაამატე მოდერატორი" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "გთხოვთ, მიუთითეთ მომხმარებელთა ჯგუფის სახელი" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "მომხმარებელთა ჯგუფი წარმატებით განახლდა" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "მომხმარებელთა ჯგუფის რედაქტირება" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "დაიმახსოვრე მომხმარებელთა ჯგუფი" + +#~ msgid "General Options" +#~ msgstr "ზოგადი პარამეტრები" + +#~ msgid "Categories and forums" +#~ msgstr "კატეგორიები და ფორუმები" + +#~ msgid "Remove this post?" +#~ msgstr "წავშალო ეს თემა?" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "მივიღო შეტყობინება ახალი მესიჯის მიღების შესახებ?" + +#~ msgid "Messages" +#~ msgstr "შეტყობინებები" + +#~ msgid "New Message" +#~ msgstr "ახალი შეტყობინება" + +#~ msgid "Read Message Thread" +#~ msgstr "შეტყობინებები" + +#~ msgid "new" +#~ msgstr "ახალი" + +#~ msgid "Use Private Messages:" +#~ msgstr "ჩავრთო პირადი მიმოწერის ფუნქცია?" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "რეკომენდებულია ამ პარამეტრის გამორთვა და მის ნაცვლად " + +#~ msgid "instead." +#~ msgstr "- ამ ჩანართის გამოყენება." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "" +#~ "პირადი შეტყობინებების მაქსიმალური რაოდენობა \"შემომავალში\" (0 = ულიმიტო)" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "ეს პარამეტრი ადმინისტრატორის ანგარიშს არ ეხება." + +#~ msgid "Message Deleted" +#~ msgstr "შეტყობინება წაიშალა" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "თქვენი შეტყობინება წაშლილია!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "\"შემომავალში\" დაბრუნება" + +#~ msgid "ERROR" +#~ msgstr "შეცდომა" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "თქვენ არ გაქვთ დათვალიერების უფლება" + +#~ msgid "Create New Message" +#~ msgstr "ახალი შეტყობინება" + +#~ msgid "Unlimited" +#~ msgstr "ულიმიტო" + +#~ msgid "Message Box Size" +#~ msgstr "შეტყობინებების ყუთის ზომა" + +#~ msgid "of" +#~ msgstr "*" + +#~ msgid "Message Box Is Full!" +#~ msgstr "შეტყობინებების ყუთი სავსეა!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "თქვენ არ შეგიძლიათ მეტი შეტყობინების მიღება/გაგზავნა" + +#~ msgid "Started By" +#~ msgstr "ავტორი" + +#~ msgid "Last Reply" +#~ msgstr "ბოლო გამოხმაურება" + +#~ msgid "Unread" +#~ msgstr "წაუკითხავი" + +#~ msgid "Read" +#~ msgstr "წაკითხული" + +#~ msgid "No Messages" +#~ msgstr "ყუთი ცარიელია" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "თქვენ არ გაქვთ ახალი შეტყობინება!" + +#~ msgid "Message Sent" +#~ msgstr "შეტყობინება გაიგზავნა" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "შეტყობინება წარმატებით გაიგზავნა!" + +#~ msgid "Back To Your Messages" +#~ msgstr "შეტყობინებებში დაბრუნება" + +#~ msgid "You have recieved a new message from" +#~ msgstr "თქვენ მიიღეთ ახალი შეტყობინება" + +#~ msgid "follow this link to view:" +#~ msgstr "წასაკითხად მიჰყევით ამ ბმულს" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "წერილი არ გაიგზავნება!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "მიმღების შეტყობინებების ყუთი სავსეა!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "წერილის გაგზავნამდე, გთხოვთ შეავსოთ ყველა ველი!" + +#~ msgid "To:" +#~ msgstr "ადრესატი:" + +#~ msgid "Select User" +#~ msgstr "აირჩიე მომხმარებელი" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "მომხმარებლის სახელი" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "შეტყობინების გასაგზავნად აუცილებელია ავტორიზაციის გავლა!" + +#~ msgid "Sender" +#~ msgstr "ადრესანტი" + +#~ msgid "Message Contents" +#~ msgstr "შეტყობინების შინაარსი" + +#~ msgid "Reply:" +#~ msgstr "პასუხი:" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "ელ-ფოსტა" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "ჩანართის თემები: " + +#~ msgid "Posts" +#~ msgstr "პოსტი: " + +#~ msgid "Topics " +#~ msgstr "თემა: " + +#~ msgid "Posted on: " +#~ msgstr "თარიღი: " diff --git a/i18n/mingleforum-he_IL.mo b/i18n/mingleforum-he_IL.mo new file mode 100644 index 0000000..e09109d Binary files /dev/null and b/i18n/mingleforum-he_IL.mo differ diff --git a/i18n/mingleforum-he_IL.po b/i18n/mingleforum-he_IL.po new file mode 100644 index 0000000..8ab1b99 --- /dev/null +++ b/i18n/mingleforum-he_IL.po @@ -0,0 +1,1596 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: \n" +"Last-Translator: Paul \n" +"Language-Team: bainternet.info \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Hebrew\n" +"X-Poedit-Country: ISRAEL\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "פורום Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "נושא הפורום:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "פורום" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "הנושא:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "המשתמש לא קיים" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "עריכת אפשרויות הפורום" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "לאפשר לאחרים לראות את הפרופיל שלי?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "יש לך הודעות דוא"ל עבור נושאים אלה:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "שמור אפשרויות" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "רמאות?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "קוד אבטחה לא תואם" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "אירעה שגיאה" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "אתה חייב להכניס את נושא" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "עליך להזין הודעה" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "יצר את הנושא בפורום:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "ענה על הנושא בפורום:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "ציטוט מ" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "על" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "שליחת תגובה" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "נושא:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "הודעה:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "שלח" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "עריכת פוסט" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "שמור פוסט" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "הודעה חדשה" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "סליחה. אין לך הרשאה לכתוב." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "פרופיל" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum>> אפשרויות סקינים" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "שם האפשרות" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "סקינים" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "קטגוריות & ופורומים" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "מנהלים" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "קבוצות משתמשים" + +#: wpf.class.php:178 +msgid "About" +msgstr "אודות" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "הפעילות האחרונה בפורומים" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "על ידי:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "כותרת כדי להציג בסרגל הצדדי:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "כמה פריטים אתה רוצה להציג?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "הדף נטען ב:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "שניות." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "גירסה:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "אורח" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "על ידי" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "הודעה אחרונה על ידי" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "מצטערים, אבל אין לך גישה לפורום זה" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "מצב" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "כותרת ההודעה" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "הותחל על ידי" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "תגובות" + +#: wpf.class.php:722 +msgid "Views" +msgstr "צפיות" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "הודעה אחרונה" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "נושאים דביקים" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "העברת נושא" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "מחק נושא" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "הודעות חדשות מאז ביקורך האחרון" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "הנושאים פורום" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "הסר נושא זה מן הודעות הדואר האלקטרוני שלך?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "הוסף נושא זה אל הודעות הדוא"ל שלך?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "שיחה סגורה" + +#: wpf.class.php:856 +msgid "Author" +msgstr "מחבר" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "הודעות:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "השב" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "הודעה" + +#: wpf.class.php:939 +msgid "on:" +msgstr "ב:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "לצטט" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "להסיר" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "לערוך" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "נושאים:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "הודעות:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "הודעות חדשות" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "אין הודעות חדשות" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "אין עדיין נושאים" + +#: wpf.class.php:1154 +msgid "in" +msgstr "בתוך" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "פורומים RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "תוצאות חיפוש" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "פרופיל" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "נושא חדש" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "מנהלים:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "בטל דביק" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "דביק" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "פתח מחדש" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "סגור" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "השב" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "הירשם" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "הירשם" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "הפרופיל שלי" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "הפרופיל שלי" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "פורום ראשי" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "התנתק" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "לחפש" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "אתה מחובר כ:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "שם משתמש:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "סיסמה:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "זכור אותי" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "מנהל" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "מנחה" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "נושאים חדשים מאז ביקורך האחרון" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "פרופיל משתמש" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "עריכת פרופיל" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "ברוך הבא" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "ביקורך האחרון היה:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "הצג נושאים חדשים מאז ביקורך האחרון" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "עריכת הפורום שלך אפשרויות" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "שלום אורח, אנא התחבר או" + +#: wpf.class.php:1928 +msgid "register." +msgstr "הרשם." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "שלום אורח, פירסום בפורום זה מחייב" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "הרשמה." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "הצג / הסתר כותרת" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "חיפוש בפורומים" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "דפים:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "רשימה" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "רשימה" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "פוסט נמחק" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "הצג פרופיל" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "בולד" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "נטוי" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "קו תחתון" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "קו חוצה" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "קוד" + +#: wpf.class.php:2283 +msgid "List" +msgstr "רשימה" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "פריט רשימה" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "קישור" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "תמונה" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "דואר אלקטרוני" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "הוסף צבע הקס" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Embed YouTube Video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "סמילי" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "חיוך גדול" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "עצוב" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "ללא שינוי" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "משוגע" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "מבולבל" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "איק!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "קריצה" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "מופתע" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "קריר" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "מרכז מידע" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "הודעות ב" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "נושאים נוצרו על ידי" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "חברים" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "נרשם אחרון:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "נושאים חדשים מאז ביקורך האחרון" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "תקציר" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "שם:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "רשומים:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "מיקום:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "אתר אינטרנט:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "יאהו:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "ג 'אבר / גוגל טוק:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "מידע ביוגרפי:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "חפש:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "על ידי המשתמש:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "גיל ההודעה:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "בין" + +#: wpf.class.php:2467 +msgid "and" +msgstr "ו -" + +#: wpf.class.php:2467 +msgid "days" +msgstr "ימים" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "לחץ כדי לבחור פורום (ים) לחפש בהם" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "בדוק את כל" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "התחל חיפוש" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "נושא" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "רלוונטיות" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "פורסם" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "נושא סגור" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "נושא רגיל" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr " חם נושא" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "נושא חם מאוד" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "קוד אבטחה:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "קוד אבטחה:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "חדש תשובה בפורום בנושא:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "פרטים:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "תאריך:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "תוכן השב:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "הצגת הנושאים כאן:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "תיבת הדואר הנכנס" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "שלח הודעה" + +#: wpf_define.php:33 +msgid "Category" +msgstr "קטגוריה" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "נושא" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "אתה חייב לציין שם קבוצת המשתמש." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "בחרת בשם שכבר קיים באתר, נא לציין אחר" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "קבוצת המשתמשים נוספה בהצלחה." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "אתה לא ציינת משתמש להוסיף:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "עליך לבחור קבוצת משתמשים" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "שגיאה" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "המשתמש לא קיים:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "אזהרה" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "משתמש" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "הוא כבר בקבוצה זו" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "נוסף בהצלחה" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "שגיאות:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "אזהרות:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "הוסיף משתמשים :" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "קבוצה (ות) המשתמש (ים) נמחקו בהצלחה." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "הסיר חבר בהצלחה." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum>> פורום ניהול קבוצות משתמשים" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "להוסיף חדש" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "למחוק" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "הוסף חברים" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "אין חברים בקבוצה זו" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "סקין הופעל בהצלחה." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum>> אפשרויות סקינים" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "קבל סקינים נוספים" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "חשוב: נכון לגרסה 1.0.03 ספריית הסקינים הועברה / wp-content/mingle-forum-skins /" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "למה לשינית את זה?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "תצלום מסך" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "שם" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "גרסה" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "תאור" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "פעולה" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "השתמש ב" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "להפעיל" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "אודות Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "גרסה נוכחית:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum יש משימה אחת פשוטה: לשמור על "זה פשוט!" היא צולמה על מ WP פורום שופרה מאוד על. עכשיו זה תומך באופן מלא שילוב עם או בלי תוסף מתערבבות (על ידי בלייר ויליאמס). כמו כן אני רוצה לתת תודה גדולה לאריק Hamby לעבודה הקודמת שלו על התסריט בפורום." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "מחבר:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "עמוד התוסף:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "פורום תמיכה:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum סקינים:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "אפשרויות נשמרו בהצלחה." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "סטטיסטיקה" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "ערך" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "מספר הודעות:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "מספר הנושאים:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "מספר משתמשים:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "גודל כולל של ממסד הנתונים:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "שרת מסד הנתונים:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "גירסת Mingle Forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> אפשרויות כלליות" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "ברירת מחדל" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "שם האפשרות" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "קלט האפשרות" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "הודעות בכל עמוד:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "האשכולות לעמוד:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "מספר ההודעות על נושא חם:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "מספר ההודעות על דיון מאוד חם:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "שם משתמש לתצוגה:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "כותר חדש של המשתמש:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "משתמש רמה 1 תאור:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "משתמש רמה 1 ספירה:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "משתמש רמה 2 כותרת:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "משתמש רמה 2 הרוזן:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "משתמש רמה 3 תאור:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "משתמש רמה 3 הרוזן:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "אין הודעות חדשות" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "הצג טופס כניסה לפורום:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "הצג אווטרים בפורום:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "פורומים RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "נדרשת הרשמה כדי לכתוב:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "גירסה מותקנת:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "ספריית GD לא מותקנת" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "השתמש Captcha עבור משתמשים לא רשומים:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "דורש" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "אם יש לך "נדרשת הרשמה כדי לכתוב" מעל מופעלת, עזוב את זה" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "תאריך בפורמט:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "ברירת מחדל תאריך:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "בדוק" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "על עיצוב התאריך." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "קבוצות שנמחקו:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "פורומים שנמחקו:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "אשכולות שנמחקו:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "הודעות שנמחקו:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "עליך להזין שם" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "קטגוריה נוספה בהצלחה" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "עליך לבחור קטגוריה" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "בחרת שם הפורום שכבר קיים בקבוצה זו, נא לציין אחר" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "פורום נוסף בהצלחה" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum>> קטגוריות ופורומים" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "לעדכן" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "הוסף הפורום" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "פורום Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "פורום Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "הסיר מנחה בהצלחה." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "מנחה נשמר בהצלחה." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "מנחה לא הוסר." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "עליך לבחור המשתמש" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "מנחה גלובלי נוסף בהצלחה" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "מנחה נוסף בהצלחה" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum>> ניהול מנהלים" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "בשלב זה מונחה" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "לעדכן" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "מנהל גלובלי: (משתמש יכול להנחות בכל הפורומים)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "אין מנחים עדין" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "נוסף בהצלחה" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum>> אפשרויות סקינים" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "שם האפשרות" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "שמור אפשרויות" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "נוסף לפורום" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "תיאור:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "שמור פורום" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "עריכת קטגוריה" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "עריכת קטגוריה" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "שמור קבוצת משתמשים" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "בחר קבוצת משתמש" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "הוספת משתמשים" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "אתה חייב לציין שם קבוצה" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "הקבוצה עודכנה בהצלחה" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "אתה חייב לציין שם הפורום" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "הפורום עודכן בהצלחה" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "עריכת קטגוריה" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "קבוצות משתמשים:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "לחברי קבוצה (ות) גישה לפורומים בקטגוריה זו:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "אין קבוצות משתמשים" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "שמור קבוצה" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "עריכת פורום" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "בחירת המשתמש" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "הוסף מנהל" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "אתה חייב לציין שם עבור קבוצת המשתמשים" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "קבוצת משתמשים עודכנו בהצלחה" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "עריכת קבוצת משתמשים" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "שמור קבוצת משתמשים" + +#~ msgid "General Options" +#~ msgstr "אפשרויות כלליות" + +#~ msgid "Categories and forums" +#~ msgstr "קטגוריות ופורומים" + +#~ msgid "Remove this post?" +#~ msgstr "הסר להודעה זו?" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" diff --git a/i18n/mingleforum-hr.mo b/i18n/mingleforum-hr.mo new file mode 100644 index 0000000..ef49701 Binary files /dev/null and b/i18n/mingleforum-hr.mo differ diff --git a/i18n/mingleforum-hr.po b/i18n/mingleforum-hr.po new file mode 100644 index 0000000..6f0db2e --- /dev/null +++ b/i18n/mingleforum-hr.po @@ -0,0 +1,1756 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-07-13 20:06-0700\n" +"PO-Revision-Date: 2011-07-14 14:53-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Forum feed" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Tema foruma:" + +#: feed.php:30 +#: wpf.class.php:1815 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:30 +#: wpf.class.php:866 +msgid "Topic: " +msgstr "Tema:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Feeds su onemogućeni" + +#: wpf-edit-profile.php:12 +msgid "No such user" +msgstr "Nema takvog korisnika" + +#: wpf-edit-profile.php:27 +msgid "You have no subscriptions at this time" +msgstr "Trenutačno nemate pretplate" + +#: wpf-edit-profile.php:32 +msgid "Edit forum options" +msgstr "Uredi mogućnosti foruma" + +#: wpf-edit-profile.php:37 +msgid "Allow others to view my profile?" +msgstr "Dopusti drugima da vide moj profil?" + +#: wpf-edit-profile.php:39 +msgid "Edit Signature (HTML is allowed):" +msgstr "" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Ima email obavijesti za ove teme : " + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:560 +msgid "Save options" +msgstr "Spremite mogućnosti" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:622 +#: wpf.class.php:2078 +#: wpf.class.php:2104 +#: wpf.class.php:2122 +#: wpf.class.php:2144 +#: wpf.class.php:2153 +#: wpf.class.php:2212 +msgid "Cheating, are we?" +msgstr "Varamo, zar ne?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Sigurnosni kodovi nisu upareni" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:189 +#: wpf-insert.php:194 +#: wpf-insert.php:248 +#: wpf-insert.php:253 +msgid "An error occured" +msgstr "Dogodila se greška" + +#: wpf-insert.php:114 +#: wpf-insert.php:190 +#: wpf-insert.php:249 +msgid "You must enter a subject" +msgstr "Morate unijeti predmet" + +#: wpf-insert.php:119 +#: wpf-insert.php:195 +#: wpf-insert.php:254 +msgid "You must enter a message" +msgstr "Morate unijeti poruku" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "Kreirajte temu na forumu" + +#: wpf-insert.php:206 +msgid "replied to the forum topic:" +msgstr "Odgovorite na temu u forumu:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citat iz" + +#: wpf-post.php:10 +#: wpf.class.php:685 +#: wpf.class.php:694 +#: wpf.class.php:1163 +msgid "on" +msgstr "uključeno" + +#: wpf-post.php:20 +#: wpf.class.php:1288 +#: wpf.class.php:1861 +msgid "Post Reply" +msgstr "Podnesi odgovor" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Predmet:" + +#: wpf-post.php:24 +#: wpf.class.php:916 +msgid "Re:" +msgstr "Kopija:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Poruka:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Slika" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Pošalji" + +#: wpf-post.php:73 +#: wpf.class.php:1285 +#: wpf.class.php:1864 +msgid "Edit Post" +msgstr "Uredi post" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Spremi post" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Pošalji novu temu" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Oprostite. Ali nemate potrebna ovlaštenja da bi postali." + +#: wpf.class.php:158 +#: fs-admin/fs-admin.php:449 +msgid "Newbie" +msgstr "Početnik" + +#: wpf.class.php:159 +#: fs-admin/fs-admin.php:453 +msgid "Beginner" +msgstr "Početnik" + +#: wpf.class.php:160 +#: fs-admin/fs-admin.php:461 +msgid "Advanced" +msgstr "Napredno" + +#: wpf.class.php:161 +#: fs-admin/fs-admin.php:469 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:179 +#: wpf.class.php:180 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Mogućnosti" + +#: wpf.class.php:180 +msgid "Options" +msgstr "Mogućnosti" + +#: wpf.class.php:181 +msgid "Ads" +msgstr "Oglasi" + +#: wpf.class.php:182 +msgid "Skins" +msgstr "Skinovi" + +#: wpf.class.php:183 +msgid "Forum Structure - Categories & Forums" +msgstr "Struktura Foruma - Kategorije i forumi" + +#: wpf.class.php:183 +msgid "Forum Structure" +msgstr "Struktura foruma" + +#: wpf.class.php:184 +msgid "Moderators" +msgstr "Modratori" + +#: wpf.class.php:185 +msgid "User Groups" +msgstr "Korisničke grupe" + +#: wpf.class.php:186 +msgid "About" +msgstr "O nama" + +#: wpf.class.php:197 +#: wpf.class.php:198 +msgid "Forums Latest Activity" +msgstr "Zadnja aktivnost na forumu" + +#: wpf.class.php:217 +#: wpf.class.php:237 +msgid "by:" +msgstr "od:" + +#: wpf.class.php:254 +msgid "Title to display in the sidebar:" +msgstr "Naslov koji će se prikaziti u sidebar" + +#: wpf.class.php:256 +msgid "How many items would you like to display?" +msgstr "Koliko stavke želite prikazati?" + +#: wpf.class.php:653 +msgid "Page loaded in:" +msgstr "Stranica učitana u:" + +#: wpf.class.php:653 +msgid "seconds." +msgstr "sekundi." + +#: wpf.class.php:656 +msgid "Mingle Forum " +msgstr "Mingle forum" + +#: wpf.class.php:657 +msgid "Version:" +msgstr "Verzija:" + +#: wpf.class.php:676 +#: wpf.class.php:2276 +msgid "Guest" +msgstr "Gost" + +#: wpf.class.php:685 +#: wpf.class.php:1162 +msgid "by" +msgstr "od" + +#: wpf.class.php:694 +msgid "Latest Post by" +msgstr "Zadnji je postao:" + +#: wpf.class.php:717 +#: wpf.class.php:848 +msgid "Sorry, but you don't have access to this forum" +msgstr "Nemate potrebno ovlaštenje da biste pristupili forumu" + +#: wpf.class.php:727 +#: wpf.class.php:2364 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:728 +#: wpf.class.php:2365 +msgid "Topic Title" +msgstr "Naziv teme" + +#: wpf.class.php:729 +#: wpf.class.php:2366 +#: wpf.class.php:2557 +msgid "Started by" +msgstr "Kreirano od" + +#: wpf.class.php:730 +#: wpf.class.php:2367 +msgid "Replies" +msgstr "Odgovora" + +#: wpf.class.php:731 +msgid "Views" +msgstr "Pogleda" + +#: wpf.class.php:732 +#: wpf.class.php:1162 +#: wpf.class.php:2368 +msgid "Last post" +msgstr "Zadnji post" + +#: wpf.class.php:736 +msgid "Sticky Topics" +msgstr "Važne teme" + +#: wpf.class.php:740 +#: wpf.class.php:742 +#: wpf.class.php:786 +#: wpf.class.php:788 +#: wpf.class.php:1649 +#: wpf.class.php:1666 +msgid "Move Topic" +msgstr "Premjesti temu" + +#: wpf.class.php:740 +#: wpf.class.php:742 +#: wpf.class.php:786 +#: wpf.class.php:788 +msgid "Delete Topic" +msgstr "Obriši temu" + +#: wpf.class.php:752 +#: wpf.class.php:781 +msgid "New posts since last visit" +msgstr "Novi postovi od zadnje posjete" + +#: wpf.class.php:769 +msgid "Forum Topics" +msgstr "Teme na forumu" + +#: wpf.class.php:836 +msgid "Remove this topic from your email notifications?" +msgstr "Maknuti ovu temu sa Vaših email obavijesti?" + +#: wpf.class.php:838 +msgid "Add this topic to your email notifications?" +msgstr "Dodaj ovu temu na Vaše email obavijesti?" + +#: wpf.class.php:859 +msgid "TOPIC CLOSED" +msgstr "Teme je zatvorena." + +#: wpf.class.php:865 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:881 +#: wpf.class.php:2423 +msgid "Posts:" +msgstr "Postova" + +#: wpf.class.php:914 +msgid "Quick Reply" +msgstr "Brzi odgovor" + +#: wpf.class.php:923 +msgid "Submit Quick Reply" +msgstr "Podnesi brzi odgovor" + +#: wpf.class.php:945 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:948 +msgid "on:" +msgstr "uključeno:" + +#: wpf.class.php:952 +#: wpf.class.php:961 +#: wpf.class.php:2292 +msgid "Quote" +msgstr "Citat" + +#: wpf.class.php:954 +#: wpf.class.php:963 +#: fs-admin/fs-admin.php:152 +#: fs-admin/fs-admin.php:980 +msgid "Remove" +msgstr "Ukloni" + +#: wpf.class.php:956 +#: wpf.class.php:965 +msgid "Edit" +msgstr "Uredi" + +#: wpf.class.php:1039 +#: wpf.class.php:1090 +msgid "Topics: " +msgstr "Teme:" + +#: wpf.class.php:1039 +#: wpf.class.php:1090 +msgid "Posts: " +msgstr "Postovi:" + +#: wpf.class.php:1049 +#: wpf.class.php:1100 +msgid "New posts" +msgstr "Novi postovi" + +#: wpf.class.php:1049 +#: wpf.class.php:1100 +msgid "No new posts" +msgstr "Nema novih postova" + +#: wpf.class.php:1049 +msgid "Mark All Read" +msgstr "Zabilježi da je sve pročitano" + +#: wpf.class.php:1160 +msgid "No topics yet" +msgstr "Nema tema" + +#: wpf.class.php:1163 +msgid "in" +msgstr "u:" + +#: wpf.class.php:1214 +msgid "Forums RSS" +msgstr "RSS foruma" + +#: wpf.class.php:1225 +msgid "Are you sure you want to remove this?" +msgstr "Da li ste sigurni da želite ovo ukloniti?" + +#: wpf.class.php:1279 +#: wpf.class.php:1854 +msgid "Search Results" +msgstr "Rezultati pretrage" + +#: wpf.class.php:1282 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1291 +#: wpf.class.php:1511 +#: wpf.class.php:1643 +#: wpf.class.php:1660 +#: wpf.class.php:1867 +msgid "New Topic" +msgstr "Nova tema" + +#: wpf.class.php:1358 +msgid "Moderators:" +msgstr "Moderatori" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1646 +#: wpf.class.php:1663 +msgid "Undo Sticky" +msgstr "Poništi važnu" + +#: wpf.class.php:1536 +#: wpf.class.php:1549 +#: wpf.class.php:1645 +#: wpf.class.php:1662 +msgid "Sticky" +msgstr "Važno" + +#: wpf.class.php:1539 +#: wpf.class.php:1552 +#: wpf.class.php:1648 +#: wpf.class.php:1665 +msgid "Re-open" +msgstr "Ponovno otvori" + +#: wpf.class.php:1541 +#: wpf.class.php:1554 +#: wpf.class.php:1647 +#: wpf.class.php:1664 +msgid "Close" +msgstr "Zatvori" + +#: wpf.class.php:1561 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Reply" +msgstr "Odgovori" + +#: wpf.class.php:1568 +#: wpf.class.php:1584 +msgid "Unsubscribe" +msgstr "Otkaži pretplatu" + +#: wpf.class.php:1570 +#: wpf.class.php:1586 +msgid "Subscribe" +msgstr "Pretplati se" + +#: wpf.class.php:1573 +msgid "RSS feed" +msgstr "RSS feed" + +#: wpf.class.php:1589 +#: wpf.class.php:1644 +#: wpf.class.php:1661 +msgid "RSS-Feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1627 +#: wpf.class.php:1631 +msgid "My profile" +msgstr "Moj profil" + +#: wpf.class.php:1627 +#: wpf.class.php:1631 +msgid "My Profile" +msgstr "Moj Profil" + +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Forum Home" +msgstr "Početna stranica foruma" + +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#: wpf.class.php:1932 +msgid "Log out" +msgstr "Odjavi se" + +#: wpf.class.php:1641 +#: wpf.class.php:1658 +#: wpf.class.php:2466 +msgid "Search" +msgstr "Pretraga" + +#: wpf.class.php:1729 +msgid "You are logged in as:" +msgstr "Ulogirani ste kao:" + +#: wpf.class.php:1735 +msgid "Username: " +msgstr "Korisničko ime:" + +#: wpf.class.php:1736 +msgid "Password: " +msgstr "Lozinka" + +#: wpf.class.php:1738 +msgid "Remember Me" +msgstr "Zapamti me" + +#: wpf.class.php:1774 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1778 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1848 +msgid "New Topics since last visit" +msgstr "Nove teme od zadnje posjete" + +#: wpf.class.php:1858 +msgid "Profile Info" +msgstr "Informacije o profilu" + +#: wpf.class.php:1922 +msgid "Edit Profile" +msgstr "Uredi profil" + +#: wpf.class.php:1926 +#: wpf.class.php:1938 +msgid "Welcome" +msgstr "Dobrodošao" + +#: wpf.class.php:1927 +msgid "Your last visit was:" +msgstr "Vaša zadnje posjeta bila je:" + +#: wpf.class.php:1929 +msgid "Show new topics since your last visit" +msgstr "Pokaži nove teme od moje zadnje posjete" + +#: wpf.class.php:1930 +msgid "Edit your forum options" +msgstr "Uredi moje postavke foruma" + +#: wpf.class.php:1937 +msgid "Welcome Guest, please login or" +msgstr "Dobrodošao gost, molimo Vas da se ulogirajte" + +#: wpf.class.php:1937 +msgid "register." +msgstr "registriraj." + +#: wpf.class.php:1942 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Dobrodašo goste, postanje u forumu zahtjeva" + +#: wpf.class.php:1942 +msgid "registration." +msgstr "registraciju" + +#: wpf.class.php:1950 +msgid "Show/Hide Header" +msgstr "Pokaži/Sakrij zaglavlje" + +#: wpf.class.php:1964 +msgid "Search forums" +msgstr "Pretraži forume" + +#: wpf.class.php:1999 +#: wpf.class.php:2030 +msgid "Pages:" +msgstr "Stranica:" + +#: wpf.class.php:2012 +#: wpf.class.php:2043 +msgid "First" +msgstr "Ime" + +#: wpf.class.php:2023 +#: wpf.class.php:2054 +msgid "Last" +msgstr "Prezime" + +#: wpf.class.php:2141 +msgid "Post deleted" +msgstr "Post obrisan" + +#: wpf.class.php:2269 +#: wpf.class.php:2273 +#: fs-admin/fs-admin.php:154 +msgid "View profile" +msgstr "Pregledaj profil" + +#: wpf.class.php:2287 +msgid "Bold" +msgstr "Podebljano" + +#: wpf.class.php:2288 +msgid "Italic" +msgstr "Kurziv" + +#: wpf.class.php:2289 +msgid "Underline" +msgstr "Podcrtano" + +#: wpf.class.php:2290 +msgid "Strikethrough" +msgstr "Precrtano" + +#: wpf.class.php:2291 +msgid "Code" +msgstr "Kod" + +#: wpf.class.php:2293 +msgid "List" +msgstr "Popis" + +#: wpf.class.php:2294 +msgid "List item" +msgstr "Stavka popisa" + +#: wpf.class.php:2295 +msgid "Link" +msgstr "Poveznica" + +#: wpf.class.php:2296 +msgid "Image" +msgstr "Slika" + +#: wpf.class.php:2297 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2298 +msgid "Add Hex Color" +msgstr "Dodaj Heksadecimalnu vrijednost boje" + +#: wpf.class.php:2299 +msgid "Embed YouTube Video" +msgstr "Ugradi YouTube video" + +#: wpf.class.php:2300 +msgid "Embed Google Map" +msgstr "Ugradi Google mapu" + +#: wpf.class.php:2306 +msgid "Smile" +msgstr "Smješko" + +#: wpf.class.php:2307 +msgid "Big Grin" +msgstr "Veliki smješno" + +#: wpf.class.php:2308 +msgid "Sad" +msgstr "Tužan" + +#: wpf.class.php:2309 +msgid "Neutral" +msgstr "Neutralni" + +#: wpf.class.php:2310 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2311 +msgid "Mad" +msgstr "Lud" + +#: wpf.class.php:2312 +msgid "Confused" +msgstr "Zbunjeni" + +#: wpf.class.php:2313 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2314 +msgid "Wink" +msgstr "Namiguša" + +#: wpf.class.php:2315 +msgid "Surprised" +msgstr "Iznenađeni" + +#: wpf.class.php:2316 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2328 +msgid "Info Center" +msgstr "Info centar" + +#: wpf.class.php:2335 +msgid "Posts in" +msgstr "Postovi u" + +#: wpf.class.php:2335 +msgid "Topics Made by" +msgstr "Tema kreirana od" + +#: wpf.class.php:2335 +#: fs-admin/fs-admin.php:146 +msgid "Members" +msgstr "Korisnici" + +#: wpf.class.php:2335 +msgid "Latest Member:" +msgstr "Zadnji korisnik" + +#: wpf.class.php:2361 +msgid "New topics since your last visit" +msgstr "Nove teme od Vaše zadnje posjete" + +#: wpf.class.php:2408 +msgid "Summary" +msgstr "Sažetak" + +#: wpf.class.php:2414 +#: wpf.class.php:2700 +#: fs-admin/wpf-add-forum.php:10 +msgid "Name:" +msgstr "Ime:" + +#: wpf.class.php:2419 +msgid "Registered:" +msgstr "Registriran" + +#: wpf.class.php:2427 +msgid "Position:" +msgstr "Pozicija:" + +#: wpf.class.php:2430 +msgid "Website:" +msgstr "Web stranica:" + +#: wpf.class.php:2434 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2438 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2441 +msgid "Jabber/google Talk:" +msgstr "Jabber/google talk:" + +#: wpf.class.php:2445 +msgid "Biographical Info:" +msgstr "Biografija" + +#: wpf.class.php:2470 +msgid "Search for:" +msgstr "Traži:" + +#: wpf.class.php:2474 +msgid "By user:" +msgstr "Po korisniku:" + +#: wpf.class.php:2479 +msgid "Message Age:" +msgstr "Starost poruke" + +#: wpf.class.php:2480 +msgid "Between" +msgstr "Između" + +#: wpf.class.php:2480 +msgid "and" +msgstr "i" + +#: wpf.class.php:2480 +msgid "days" +msgstr "dani" + +#: wpf.class.php:2486 +msgid "Click to choose Forum(s) to search" +msgstr "Klikni za izbor Forume za pretragu" + +#: wpf.class.php:2508 +msgid "Check all" +msgstr "Zabilježi sve" + +#: wpf.class.php:2513 +msgid "Start Search" +msgstr "Počni pretragu" + +#: wpf.class.php:2555 +msgid "Subject" +msgstr "Predmet" + +#: wpf.class.php:2556 +msgid "Relevance" +msgstr "Važnost" + +#: wpf.class.php:2558 +msgid "Posted" +msgstr "Postano" + +#: wpf.class.php:2624 +msgid "Closed topic" +msgstr "Zatvori temu" + +#: wpf.class.php:2627 +msgid "Normal topic" +msgstr "Normalna tema" + +#: wpf.class.php:2630 +msgid "Hot topic" +msgstr "Važna tema" + +#: wpf.class.php:2633 +msgid "Very Hot topic" +msgstr "Vrlo važna tema" + +#: wpf.class.php:2665 +msgid "Security Code:" +msgstr "Sigurnosni kod:" + +#: wpf.class.php:2684 +msgid "Enter Security Code: (required)" +msgstr "Unesi sigurnosni kod: (obavezno)" + +#: wpf.class.php:2698 +msgid "New post in forum:" +msgstr "Novi postovi u forumu:" + +#: wpf.class.php:2699 +msgid "DETAILS:" +msgstr "DETALJI:" + +#: wpf.class.php:2702 +msgid "Date:" +msgstr "Datum:" + +#: wpf.class.php:2703 +msgid "Reply Content:" +msgstr "Odgovor:" + +#: wpf.class.php:2704 +msgid "View Topic Here:" +msgstr "Pogledaj teme ovdje" + +#: wpf.class.php:2753 +#: wpf.class.php:2763 +msgid "Inbox" +msgstr "Ulazna pošta:" + +#: wpf.class.php:2779 +#: wpf.class.php:2792 +msgid "Send Message" +msgstr "Pošalji poruku" + +#: wpf.class.php:2970 +#, fuzzy +msgid "Mingle Forum Post Options" +msgstr "Mingle Forum >> Mogućnosti" + +#: wpf.class.php:2976 +#, fuzzy +msgid "Add this post to" +msgstr "წავშალო ეს თემა?" + +#: wpf.class.php:2980 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "" + +#: wpf.class.php:3012 +msgid "Join the Forum discussion on this post" +msgstr "" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategorija" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Tema" + +#: fs-admin/fs-admin.php:32 +msgid "You must specify a user group name." +msgstr "Morate odrediti korisničko ime grupe" + +#: fs-admin/fs-admin.php:34 +#: fs-admin/fs-admin.php:701 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Izabrali ste ime koje već postoji u bazi, molimo Vas da izaberete drugo ime" + +#: fs-admin/fs-admin.php:36 +msgid "User Group successfully added." +msgstr "Korisničko ime grupe uspješno dodano." + +#: fs-admin/fs-admin.php:54 +msgid "You haven't specified any user to add:" +msgstr "Niste odredili korisničko ime za dodati:" + +#: fs-admin/fs-admin.php:58 +msgid "You must choose a user group" +msgstr "Morate izabrati korisničko ime" + +#: fs-admin/fs-admin.php:65 +msgid "Error" +msgstr "Pogreška" + +#: fs-admin/fs-admin.php:65 +msgid "No such user:" +msgstr "Nema takvog korisnika:" + +#: fs-admin/fs-admin.php:69 +msgid "Warning" +msgstr "Upozorenje" + +#: fs-admin/fs-admin.php:69 +#: fs-admin/fs-admin.php:73 +msgid "User" +msgstr "Korisnik" + +#: fs-admin/fs-admin.php:69 +msgid "is already in this group" +msgstr "je već u ovoj grupio" + +#: fs-admin/fs-admin.php:73 +msgid "added successfully" +msgstr "dodan uspješno" + +#: fs-admin/fs-admin.php:81 +msgid "Errors:" +msgstr "Pogreške:" + +#: fs-admin/fs-admin.php:82 +msgid "Warnings:" +msgstr "Upozorenja:" + +#: fs-admin/fs-admin.php:83 +msgid "Users added:" +msgstr "Korsnici dodani:" + +#: fs-admin/fs-admin.php:97 +msgid "User Group(s) successfully deleted." +msgstr "Korisnička grupa uspješno obrisana" + +#: fs-admin/fs-admin.php:105 +msgid "Member successfully removed." +msgstr "Korisnik uspješno isključen." + +#: fs-admin/fs-admin.php:111 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Upravljaj sa korisničkim grupama" + +#: fs-admin/fs-admin.php:111 +#: fs-admin/fs-admin.php:766 +#: fs-admin/fs-admin.php:966 +msgid "add new" +msgstr "dodaj novu" + +#: fs-admin/fs-admin.php:118 +#: fs-admin/fs-admin.php:820 +msgid "Delete" +msgstr "obriši" + +#: fs-admin/fs-admin.php:158 +#: fs-admin/fs-admin.php:164 +msgid "Add members" +msgstr "dodaj korisnike" + +#: fs-admin/fs-admin.php:163 +msgid "No members in this group" +msgstr "Nema korisnika u ovoj grupi" + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Skin uspješno aktiviran." + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> opcije na skinovima." + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "Dobavi još skinova." + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "VAŽNO: Od verzije 1.0.03 direktorij skinova je premješten u /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Zašto se to izmjenili?" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Slika ekrana" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:12 +msgid "Name" +msgstr "Ime" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Verzija" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:13 +msgid "Description" +msgstr "Opis" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Radnja" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "Koristi se" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Aktiviraj" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "O Mingle forumu" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Trenutačna verzija" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle forum ima jednu jednostavnu misiju: da sve bude jednostavno. Mingle forum je razvijen na kodu od WP Foruma i od tada se je jako poboljšao. WP forum sada daje mogućnost intergracije sa ili bez Mingle plugina (izradio Blair Williams). Također želio bih zahvaliti Ericu Hambyu na njeovom prijašnjem radu na kodu foruma." + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Stranica plugina:" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Podrška za forum: " + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Mingle forum skinovi" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Mogućnost uspješno spremljena!" + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Statistika" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Vrijednost" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Broj postova:" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Broj tema" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Broj korisnika:" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Ukupna veličina baze: " + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Server na kojem se nalazi baza: " + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Mingle Forum verzija:" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Opće postavke" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "zadano" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Ime mogućnosti" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Ulazni parametar mogućnosti" + +#: fs-admin/fs-admin.php:409 +msgid "Integrate WordPress Posts with Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:413 +#: fs-admin/fs-admin.php:480 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:527 +msgid "Off" +msgstr "Isključeno" + +#: fs-admin/fs-admin.php:417 +msgid "Posts per page:" +msgstr "Postova po stranici:" + +#: fs-admin/fs-admin.php:421 +msgid "Threads per page:" +msgstr "Tema po stranici:" + +#: fs-admin/fs-admin.php:427 +msgid "Number of posts for Hot Topic:" +msgstr "Broj postova za goruće teme" + +#: fs-admin/fs-admin.php:431 +msgid "Number of posts for Very Hot Topic:" +msgstr "Broj postova za vrlo važnu temu:" + +#: fs-admin/fs-admin.php:435 +msgid "Username Display:" +msgstr "Prikaz korisničkog imena" + +#: fs-admin/fs-admin.php:448 +msgid "New User's Title:" +msgstr "Naziv novog korisnika:" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 1 Title:" +msgstr "Naziv korisnika 1 razine:" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 1 Count:" +msgstr "Broj korisnika 1 razine:" + +#: fs-admin/fs-admin.php:457 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 2 Title:" +msgstr "Naziv korisnika 2 razine:" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 2 Count:" +msgstr "Broj korisnika 2 razine:" + +#: fs-admin/fs-admin.php:465 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:468 +msgid "User Level 3 Title:" +msgstr "Naziv korisnika 3 razine:" + +#: fs-admin/fs-admin.php:472 +msgid "User Level 3 Count:" +msgstr "Broj korisnika 3 razine:" + +#: fs-admin/fs-admin.php:473 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:476 +msgid "Notify Admin on new posts:" +msgstr "Obavijesti admina o novim postovima" + +#: fs-admin/fs-admin.php:483 +msgid "Show Forum Login Form:" +msgstr "Prikaži login formu od foruma:" + +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:519 +#: fs-admin/fs-admin.php:535 +msgid "On" +msgstr "Uključeno" + +#: fs-admin/fs-admin.php:491 +msgid "Show Avatars in the forum:" +msgstr "Pokaži avatare u forumu:" + +#: fs-admin/fs-admin.php:499 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:507 +#, fuzzy +msgid "Show users Signature at the bottom of posts:" +msgstr "Pokaži Bio korisnika na dnu posta" + +#: fs-admin/fs-admin.php:515 +msgid "Use Forum RSS:" +msgstr "Koristi RSS od foruma" + +#: fs-admin/fs-admin.php:523 +msgid "Use SEO friendly URLs:" +msgstr "Koristi SEO pristupačne URL-ove" + +#: fs-admin/fs-admin.php:523 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "VAŽNO: Ostavi ovu mogućnost isključnoe ukoliko su stalni linkovi postavljeni na 'default'" + +#: fs-admin/fs-admin.php:531 +msgid "Registration required to post:" +msgstr "Obavezna registracija za postanje:" + +#: fs-admin/fs-admin.php:540 +msgid "Installed version:" +msgstr "Instalirana verzija:" + +#: fs-admin/fs-admin.php:544 +msgid "GD Library is not installed" +msgstr "GD Library nije instaliran" + +#: fs-admin/fs-admin.php:547 +msgid "Use Captcha for unregistered users:" +msgstr "Koristi Captchu za neregistrirane korisnike: " + +#: fs-admin/fs-admin.php:551 +msgid "Requires " +msgstr "Obvezno" + +#: fs-admin/fs-admin.php:551 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Ako imate postavljeno 'Da se zahtjeva registracija za post', ostavite ovo isključeno" + +#: fs-admin/fs-admin.php:555 +msgid "Date format:" +msgstr "Format datuma" + +#: fs-admin/fs-admin.php:555 +msgid "Default date:" +msgstr "Zadani datum" + +#: fs-admin/fs-admin.php:555 +msgid "Check " +msgstr "Provjeri" + +#: fs-admin/fs-admin.php:555 +msgid "for date formatting." +msgstr "za formatiranje datuma." + +#: fs-admin/fs-admin.php:672 +msgid "Groups deleted:" +msgstr "Obrisano grupa:" + +#: fs-admin/fs-admin.php:673 +msgid "Forums deleted:" +msgstr "Obrisano foruma:" + +#: fs-admin/fs-admin.php:674 +msgid "Threads deleted:" +msgstr "Obrisano tema:" + +#: fs-admin/fs-admin.php:675 +msgid "Posts deleted:" +msgstr "Obrisano postova:" + +#: fs-admin/fs-admin.php:699 +#: fs-admin/fs-admin.php:723 +msgid "You must enter a name" +msgstr "Morate unijeti ime" + +#: fs-admin/fs-admin.php:708 +msgid "Category added successfully" +msgstr "Kategorija uspješno dodana" + +#: fs-admin/fs-admin.php:720 +msgid "You must select a category" +msgstr "Morate izabrati kategoriju" + +#: fs-admin/fs-admin.php:726 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Izabrali ste ime koje već postoji u ovoj grupi, izaberite drugačije ime" + +#: fs-admin/fs-admin.php:733 +msgid "Forum added successfully" +msgstr "Forum uspješno dodan" + +#: fs-admin/fs-admin.php:760 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorije i forumi" + +#: fs-admin/fs-admin.php:782 +#: fs-admin/fs-admin.php:812 +msgid "Modify" +msgstr "Izmijeni" + +#: fs-admin/fs-admin.php:821 +msgid "Add forum" +msgstr "Dodaj forum" + +#: fs-admin/fs-admin.php:846 +msgid "Group Moved Down" +msgstr "Grupa premještena dolje." + +#: fs-admin/fs-admin.php:856 +msgid "Forum Moved Down" +msgstr "Forum premještaj dolje" + +#: fs-admin/fs-admin.php:866 +msgid "Group Moved Up" +msgstr "Grupa premještena gore" + +#: fs-admin/fs-admin.php:876 +msgid "Forum Moved Up" +msgstr "Forum premješten gore" + +#: fs-admin/fs-admin.php:913 +#: fs-admin/fs-admin.php:920 +msgid "Moderator successfully removed." +msgstr "Moderator uspješno uklonjen." + +#: fs-admin/fs-admin.php:915 +msgid "Moderator successfully saved." +msgstr "Moderato uspješno spremljen." + +#: fs-admin/fs-admin.php:922 +msgid "Moderator NOT removed." +msgstr "Modrator NIJE uklonjen." + +#: fs-admin/fs-admin.php:936 +msgid "You must select a user" +msgstr "Morate izabrati korisnika." + +#: fs-admin/fs-admin.php:940 +msgid "Global Moderator added successfully" +msgstr "Globalni moderator uspješno dodan." + +#: fs-admin/fs-admin.php:944 +msgid "Moderator added successfully" +msgstr "Moderator uspješno dodan." + +#: fs-admin/fs-admin.php:966 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Upravljaj sa moderatorima." + +#: fs-admin/fs-admin.php:975 +msgid "Currently moderating" +msgstr "Tretutačno uređuje" + +#: fs-admin/fs-admin.php:979 +msgid "Update" +msgstr "Ažuriraj" + +#: fs-admin/fs-admin.php:989 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global moderator: (Korisnik može moderirati sve forume)" + +#: fs-admin/fs-admin.php:1008 +msgid "No moderators yet" +msgstr "Trenutačno nema moderatora" + +#: fs-admin/fs-admin.php:1033 +msgid "Ads saved successfully" +msgstr "Oglasi uspješno spremljeni" + +#: fs-admin/fs-admin.php:1038 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum oglasi >> mogućnosti" + +#: fs-admin/fs-admin.php:1040 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML je dopušten kod svih oglasnih područje navedenih dolje" + +#: fs-admin/fs-admin.php:1044 +msgid "Ads Option" +msgstr "Mogućnosti za oglase" + +#: fs-admin/fs-admin.php:1051 +msgid "Enable Area Above Forum" +msgstr "Omogući područje iznad foruma" + +#: fs-admin/fs-admin.php:1053 +#: fs-admin/fs-admin.php:1061 +#: fs-admin/fs-admin.php:1069 +#: fs-admin/fs-admin.php:1077 +#: fs-admin/fs-admin.php:1085 +#: fs-admin/fs-admin.php:1093 +#: fs-admin/fs-admin.php:1101 +msgid "css-value:" +msgstr "css-vrijednost:" + +#: fs-admin/fs-admin.php:1059 +msgid "Enable Area Below Forum" +msgstr "Omogući područje ispod foruma" + +#: fs-admin/fs-admin.php:1067 +msgid "Enable Area Above Branding" +msgstr "Omogući područje iznad branda" + +#: fs-admin/fs-admin.php:1075 +msgid "Enable Area Above Info Center" +msgstr "Omogući područje" + +#: fs-admin/fs-admin.php:1083 +msgid "Enable Area Above Breadcrumbs" +msgstr "Omogući područje iznad breadcrumbsa" + +#: fs-admin/fs-admin.php:1091 +msgid "Enable Area Above Quick Reply Form" +msgstr "Omogući područje brzog odgovora za forum" + +#: fs-admin/fs-admin.php:1099 +msgid "Enable Area Below First Post" +msgstr "Omogući područje ispod prvog posta" + +#: fs-admin/fs-admin.php:1106 +msgid "Below you can modify/add your own CSS" +msgstr "Ispod možete urediti/dodati svoj CSS" + +#: fs-admin/fs-admin.php:1107 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "NAPOMENA: Ako ne znate za što je ovo, ostavite prazno" + +#: fs-admin/fs-admin.php:1114 +msgid "Save Options" +msgstr "Spremi mogućnosti" + +#: fs-admin/wpf-add-forum.php:5 +msgid "Add forum to" +msgstr "Dodaj forum" + +#: fs-admin/wpf-add-forum.php:14 +msgid "Description:" +msgstr "Opis" + +#: fs-admin/wpf-add-forum.php:30 +msgid "Save forum" +msgstr "Spremi forum" + +#: fs-admin/wpf-add-group.php:7 +msgid "Add category" +msgstr "Dodaj kategoriju" + +#: fs-admin/wpf-add-group.php:21 +msgid "Save category" +msgstr "Spremi kategoriju" + +#: fs-admin/wpf-add-usergroup.php:23 +#: .\fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "Spremi korisničku grupu" + +#: fs-admin/wpf-addusers.php:21 +#: .\fs-admin/wpf-addusers.php:21 +msgid "Select User group" +msgstr "Izaberi korisničku grupu" + +#: fs-admin/wpf-addusers.php:31 +#: .\fs-admin/wpf-addusers.php:31 +msgid "Add users" +msgstr "Dodaj korisnike" + +#: fs-admin/wpf-edit-forum-group.php:12 +#: .\fs-admin/wpf-edit-forum-group.php:12 +msgid "You must specify a group name" +msgstr "Morate odrediti ime grupe" + +#: fs-admin/wpf-edit-forum-group.php:24 +#: .\fs-admin/wpf-edit-forum-group.php:24 +msgid "Group updated successfully" +msgstr "Grupa uspješno dodana" + +#: fs-admin/wpf-edit-forum-group.php:34 +#: .\fs-admin/wpf-edit-forum-group.php:34 +msgid "You must specify a forum name" +msgstr "Morate odrediti ime foruma" + +#: fs-admin/wpf-edit-forum-group.php:37 +#: .\fs-admin/wpf-edit-forum-group.php:37 +msgid "Forum updated successfully" +msgstr "Forum je uspješno ažuriran" + +#: fs-admin/wpf-edit-forum-group.php:49 +#: .\fs-admin/wpf-edit-forum-group.php:49 +msgid "Edit category" +msgstr "Uredi kategoriju" + +#: fs-admin/wpf-edit-forum-group.php:63 +#: .\fs-admin/wpf-edit-forum-group.php:63 +msgid "User Groups:" +msgstr "Korisničke grupe:" + +#: fs-admin/wpf-edit-forum-group.php:66 +#: .\fs-admin/wpf-edit-forum-group.php:66 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Zabilježeni korisnici imaju pristup forumima u ovim kategorijama:" + +#: fs-admin/wpf-edit-forum-group.php:98 +#: .\fs-admin/wpf-edit-forum-group.php:98 +msgid "There are no User Groups" +msgstr "Nema korisničkih grupa" + +#: fs-admin/wpf-edit-forum-group.php:105 +#: .\fs-admin/wpf-edit-forum-group.php:105 +msgid "Save group" +msgstr "Spremi grupu" + +#: fs-admin/wpf-edit-forum-group.php:119 +#: .\fs-admin/wpf-edit-forum-group.php:119 +msgid "Edit forum" +msgstr "Uredi forum" + +#: fs-admin/wpf-moderator.php:19 +#: .\fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "Izaberi korisnika" + +#: fs-admin/wpf-moderator.php:36 +#: .\fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "Dodaj moderatora" + +#: fs-admin/wpf-usergroup-edit.php:11 +#: .\fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "Morate odrediti ime za korisničku grupu" + +#: fs-admin/wpf-usergroup-edit.php:18 +#: .\fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "Korisnička grupa uspješno ažurirana" + +#: fs-admin/wpf-usergroup-edit.php:25 +#: .\fs-admin/wpf-usergroup-edit.php:25 +msgid "Edit User Group" +msgstr "Uredi korisničku grupu" + +#: fs-admin/wpf-usergroup-edit.php:39 +#: .\fs-admin/wpf-usergroup-edit.php:39 +msgid "Save User Group" +msgstr "Spremi korisničku grupu" + +#~ msgid "General Options" +#~ msgstr "ზოგადი პარამეტრები" + +#~ msgid "Categories and forums" +#~ msgstr "კატეგორიები და ფორუმები" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "მივიღო შეტყობინება ახალი მესიჯის მიღების შესახებ?" + +#~ msgid "Messages" +#~ msgstr "შეტყობინებები" + +#~ msgid "New Message" +#~ msgstr "ახალი შეტყობინება" + +#~ msgid "Read Message Thread" +#~ msgstr "შეტყობინებები" + +#~ msgid "new" +#~ msgstr "ახალი" + +#~ msgid "Use Private Messages:" +#~ msgstr "ჩავრთო პირადი მიმოწერის ფუნქცია?" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "რეკომენდებულია ამ პარამეტრის გამორთვა და მის ნაცვლად " + +#~ msgid "instead." +#~ msgstr "- ამ ჩანართის გამოყენება." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "" +#~ "პირადი შეტყობინებების მაქსიმალური რაოდენობა \"შემომავალში\" (0 = ულიმიტო)" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "ეს პარამეტრი ადმინისტრატორის ანგარიშს არ ეხება." + +#~ msgid "Message Deleted" +#~ msgstr "შეტყობინება წაიშალა" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "თქვენი შეტყობინება წაშლილია!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "\"შემომავალში\" დაბრუნება" + +#~ msgid "ERROR" +#~ msgstr "შეცდომა" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "თქვენ არ გაქვთ დათვალიერების უფლება" + +#~ msgid "Create New Message" +#~ msgstr "ახალი შეტყობინება" + +#~ msgid "Unlimited" +#~ msgstr "ულიმიტო" + +#~ msgid "Message Box Size" +#~ msgstr "შეტყობინებების ყუთის ზომა" + +#~ msgid "of" +#~ msgstr "*" + +#~ msgid "Message Box Is Full!" +#~ msgstr "შეტყობინებების ყუთი სავსეა!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "თქვენ არ შეგიძლიათ მეტი შეტყობინების მიღება/გაგზავნა" + +#~ msgid "Started By" +#~ msgstr "ავტორი" + +#~ msgid "Last Reply" +#~ msgstr "ბოლო გამოხმაურება" + +#~ msgid "Unread" +#~ msgstr "წაუკითხავი" + +#~ msgid "Read" +#~ msgstr "წაკითხული" + +#~ msgid "No Messages" +#~ msgstr "ყუთი ცარიელია" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "თქვენ არ გაქვთ ახალი შეტყობინება!" + +#~ msgid "Message Sent" +#~ msgstr "შეტყობინება გაიგზავნა" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "შეტყობინება წარმატებით გაიგზავნა!" + +#~ msgid "Back To Your Messages" +#~ msgstr "შეტყობინებებში დაბრუნება" + +#~ msgid "You have recieved a new message from" +#~ msgstr "თქვენ მიიღეთ ახალი შეტყობინება" + +#~ msgid "follow this link to view:" +#~ msgstr "წასაკითხად მიჰყევით ამ ბმულს" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "წერილი არ გაიგზავნება!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "მიმღების შეტყობინებების ყუთი სავსეა!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "წერილის გაგზავნამდე, გთხოვთ შეავსოთ ყველა ველი!" + +#~ msgid "To:" +#~ msgstr "ადრესატი:" + +#~ msgid "Select User" +#~ msgstr "აირჩიე მომხმარებელი" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "მომხმარებლის სახელი" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "შეტყობინების გასაგზავნად აუცილებელია ავტორიზაციის გავლა!" + +#~ msgid "Sender" +#~ msgstr "ადრესანტი" + +#~ msgid "Message Contents" +#~ msgstr "შეტყობინების შინაარსი" + +#~ msgid "Reply:" +#~ msgstr "პასუხი:" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "ელ-ფოსტა" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "ჩანართის თემები: " + +#~ msgid "Posts" +#~ msgstr "პოსტი: " + +#~ msgid "Topics " +#~ msgstr "თემა: " + +#~ msgid "Posted on: " +#~ msgstr "თარიღი: " diff --git a/i18n/mingleforum-hu_HU.mo b/i18n/mingleforum-hu_HU.mo new file mode 100644 index 0000000..0f752f5 Binary files /dev/null and b/i18n/mingleforum-hu_HU.mo differ diff --git a/i18n/mingleforum-hu_HU.po b/i18n/mingleforum-hu_HU.po new file mode 100644 index 0000000..f06e9a6 --- /dev/null +++ b/i18n/mingleforum-hu_HU.po @@ -0,0 +1,1912 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum HU\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-07-13 20:06-0700\n" +"PO-Revision-Date: 2011-07-14 14:49-0700\n" +"Last-Translator: Paul \n" +"Language-Team: FYGureout \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-Language: Hungarian\n" +"X-Poedit-Country: HUNGARY\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Poedit-Basepath: ../\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" + +# @ mingleforum +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Fórum RSS" + +# @ mingleforum +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Fórum téma:" + +# @ mingleforum +#: feed.php:30 +#: wpf.class.php:1815 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Fórum" + +# @ mingleforum +#: feed.php:30 +#: wpf.class.php:866 +msgid "Topic: " +msgstr "Téma:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "RSS kikapcsolva" + +# @ mingleforum +#: wpf-edit-profile.php:12 +msgid "No such user" +msgstr "Nincs ilyen felhasználó!" + +#: wpf-edit-profile.php:27 +msgid "You have no subscriptions at this time" +msgstr "Nincs feliratkozása egy témához sem!" + +# @ mingleforum +#: wpf-edit-profile.php:32 +msgid "Edit forum options" +msgstr "Fórum beállításainak szerkesztése" + +# @ mingleforum +#: wpf-edit-profile.php:37 +msgid "Allow others to view my profile?" +msgstr "Adatlapomat mások is megtekinthetik?" + +#: wpf-edit-profile.php:39 +msgid "Edit Signature (HTML is allowed):" +msgstr "" + +# @ mingleforum +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "A következő témákra az email értesítés beállítva:" + +# @ mingleforum +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:560 +msgid "Save options" +msgstr "Beállítások mentése" + +# @ mingleforum +#: wpf-edit-profile.php:53 +#: wpf.class.php:622 +#: wpf.class.php:2078 +#: wpf.class.php:2104 +#: wpf.class.php:2122 +#: wpf.class.php:2144 +#: wpf.class.php:2153 +#: wpf.class.php:2212 +msgid "Cheating, are we?" +msgstr "" + +# @ mingleforum +#: wpf-insert.php:98 +msgid "Security code does not match" +msgstr "Biztonsági kód nem egyezik!" + +# @ mingleforum +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:189 +#: wpf-insert.php:194 +#: wpf-insert.php:248 +#: wpf-insert.php:253 +msgid "An error occured" +msgstr "Hiba történt a folyamatban" + +# @ mingleforum +#: wpf-insert.php:114 +#: wpf-insert.php:190 +#: wpf-insert.php:249 +msgid "You must enter a subject" +msgstr "Tárgy beírása kötelező" + +# @ mingleforum +#: wpf-insert.php:119 +#: wpf-insert.php:195 +#: wpf-insert.php:254 +msgid "You must enter a message" +msgstr "Üzenet beírása kötelező" + +# @ mingleforum +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "a következő fórumtéma létrehozva:" + +# @ mingleforum +#: wpf-insert.php:206 +msgid "replied to the forum topic:" +msgstr "válasz a következő fórum témához:" + +# @ mingleforum +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Idézet >> " + +# @ mingleforum +#: wpf-post.php:10 +#: wpf.class.php:685 +#: wpf.class.php:694 +#: wpf.class.php:1163 +msgid "on" +msgstr ". " + +# @ mingleforum +#: wpf-post.php:20 +#: wpf.class.php:1288 +#: wpf.class.php:1861 +msgid "Post Reply" +msgstr "Válasz a hozzászólásra" + +# @ mingleforum +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Tárgy:" + +#: wpf-post.php:24 +#: wpf.class.php:916 +msgid "Re:" +msgstr "Válasz:" + +# @ mingleforum +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Üzenet:" + +# @ mingleforum +#: wpf-post.php:40 +#: wpf-thread.php:30 +msgid "Images:" +msgstr "Képek:" + +# @ mingleforum +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Beküld" + +# @ mingleforum +#: wpf-post.php:73 +#: wpf.class.php:1285 +#: wpf.class.php:1864 +msgid "Edit Post" +msgstr "Hozzászólás szerkesztése" + +# @ mingleforum +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Hozzászólás mentése" + +# @ mingleforum +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Új téma küldése" + +# @ mingleforum +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Elnézés, nincs megfelelő jogosultság a küldéshez." + +#: wpf.class.php:158 +#: fs-admin/fs-admin.php:449 +msgid "Newbie" +msgstr "Újonc" + +#: wpf.class.php:159 +#: fs-admin/fs-admin.php:453 +msgid "Beginner" +msgstr "Fórumozgató" + +#: wpf.class.php:160 +#: fs-admin/fs-admin.php:461 +msgid "Advanced" +msgstr "Fórumfüggő" + +# @ mingleforum +#: wpf.class.php:161 +#: fs-admin/fs-admin.php:469 +msgid "Pro" +msgstr "Fórumprofesszor" + +# @ mingleforum +#: wpf.class.php:179 +#: wpf.class.php:180 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum - Beállítások" + +# @ mingleforum +#: wpf.class.php:180 +msgid "Options" +msgstr "Beállítások" + +#: wpf.class.php:181 +msgid "Ads" +msgstr "Hirdetések" + +# @ mingleforum +#: wpf.class.php:182 +msgid "Skins" +msgstr "Fórum sablonok" + +# @ mingleforum +#: wpf.class.php:183 +msgid "Forum Structure - Categories & Forums" +msgstr "Fórum szerkezete - Kategóriák és Fórumok" + +#: wpf.class.php:183 +msgid "Forum Structure" +msgstr "Fórum szerkezete" + +# @ mingleforum +#: wpf.class.php:184 +msgid "Moderators" +msgstr "Moderátorok" + +# @ mingleforum +#: wpf.class.php:185 +msgid "User Groups" +msgstr "Felhasználói csoportok" + +# @ mingleforum +#: wpf.class.php:186 +msgid "About" +msgstr "Névjegy" + +# @ mingleforum +#: wpf.class.php:197 +#: wpf.class.php:198 +msgid "Forums Latest Activity" +msgstr "Legutóbbi fórum-történések" + +# @ mingleforum +#: wpf.class.php:217 +#: wpf.class.php:237 +msgid "by:" +msgstr "Szerző:" + +# @ mingleforum +#: wpf.class.php:254 +msgid "Title to display in the sidebar:" +msgstr "Rang megjelenítése az oldalsávban:" + +# @ mingleforum +#: wpf.class.php:256 +msgid "How many items would you like to display?" +msgstr "Hány elemet jelenítsünk meg?" + +# @ mingleforum +#: wpf.class.php:653 +msgid "Page loaded in:" +msgstr "Oldal betöltése:" + +# @ mingleforum +#: wpf.class.php:653 +msgid "seconds." +msgstr "másodperc" + +# @ mingleforum +#: wpf.class.php:656 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +# @ mingleforum +#: wpf.class.php:657 +msgid "Version:" +msgstr "Verzió:" + +# @ mingleforum +#: wpf.class.php:676 +#: wpf.class.php:2276 +msgid "Guest" +msgstr "Vendég" + +# @ mingleforum +#: wpf.class.php:685 +#: wpf.class.php:1162 +msgid "by" +msgstr "szerző " + +# @ mingleforum +#: wpf.class.php:694 +msgid "Latest Post by" +msgstr "Legutóbbi hozzászóló" + +# @ mingleforum +#: wpf.class.php:717 +#: wpf.class.php:848 +msgid "Sorry, but you don't have access to this forum" +msgstr "Elnézést, nincs jogosutság ehhez a fórumhoz" + +# @ mingleforum +#: wpf.class.php:727 +#: wpf.class.php:2364 +msgid "Status" +msgstr "Állapot" + +# @ mingleforum +#: wpf.class.php:728 +#: wpf.class.php:2365 +msgid "Topic Title" +msgstr "Téma címe" + +# @ mingleforum +#: wpf.class.php:729 +#: wpf.class.php:2366 +#: wpf.class.php:2557 +msgid "Started by" +msgstr "Indította" + +# @ mingleforum +#: wpf.class.php:730 +#: wpf.class.php:2367 +msgid "Replies" +msgstr "Válaszok" + +# @ mingleforum +#: wpf.class.php:731 +msgid "Views" +msgstr "Megtekintések" + +# @ mingleforum +#: wpf.class.php:732 +#: wpf.class.php:1162 +#: wpf.class.php:2368 +msgid "Last post" +msgstr "Legutolsó hozzászólás" + +# @ mingleforum +#: wpf.class.php:736 +msgid "Sticky Topics" +msgstr "Ragadós témák" + +# @ mingleforum +#: wpf.class.php:740 +#: wpf.class.php:742 +#: wpf.class.php:786 +#: wpf.class.php:788 +#: wpf.class.php:1649 +#: wpf.class.php:1666 +msgid "Move Topic" +msgstr "Téma áthelyezése" + +# @ mingleforum +#: wpf.class.php:740 +#: wpf.class.php:742 +#: wpf.class.php:786 +#: wpf.class.php:788 +msgid "Delete Topic" +msgstr "Téma törlése" + +# @ mingleforum +#: wpf.class.php:752 +#: wpf.class.php:781 +msgid "New posts since last visit" +msgstr "Új hozzászólások" + +# @ mingleforum +#: wpf.class.php:769 +msgid "Forum Topics" +msgstr "Fórum témák" + +# @ mingleforum +#: wpf.class.php:836 +msgid "Remove this topic from your email notifications?" +msgstr "Eltávolítsuk az email értesítések közül ezt a témát?" + +# @ mingleforum +#: wpf.class.php:838 +msgid "Add this topic to your email notifications?" +msgstr "Hozzáadjuk ezt a témát az email értesítésekhez?" + +#: wpf.class.php:859 +msgid "TOPIC CLOSED" +msgstr "TÉMA LEZÁRVA!" + +# @ mingleforum +#: wpf.class.php:865 +msgid "Author" +msgstr "Szerző" + +# @ mingleforum +#: wpf.class.php:881 +#: wpf.class.php:2423 +msgid "Posts:" +msgstr "Hozzászólások:" + +# @ mingleforum +#: wpf.class.php:914 +msgid "Quick Reply" +msgstr "Gyorsválasz" + +#: wpf.class.php:923 +msgid "Submit Quick Reply" +msgstr "Gyorsválasz küldése" + +# @ mingleforum +#: wpf.class.php:945 +#: wpf_define.php:36 +msgid "Post" +msgstr "Hozzászólás" + +# @ mingleforum +#: wpf.class.php:948 +msgid "on:" +msgstr ":" + +# @ mingleforum +#: wpf.class.php:952 +#: wpf.class.php:961 +#: wpf.class.php:2292 +msgid "Quote" +msgstr "Idézet" + +# @ mingleforum +#: wpf.class.php:954 +#: wpf.class.php:963 +#: fs-admin/fs-admin.php:152 +#: fs-admin/fs-admin.php:980 +msgid "Remove" +msgstr "Eltávolítás" + +# @ mingleforum +#: wpf.class.php:956 +#: wpf.class.php:965 +msgid "Edit" +msgstr "Szerkesztés" + +# @ mingleforum +#: wpf.class.php:1039 +#: wpf.class.php:1090 +msgid "Topics: " +msgstr "Témák:" + +# @ mingleforum +#: wpf.class.php:1039 +#: wpf.class.php:1090 +msgid "Posts: " +msgstr "Hozzászólások:" + +# @ mingleforum +#: wpf.class.php:1049 +#: wpf.class.php:1100 +msgid "New posts" +msgstr "Új hozzászólások" + +# @ mingleforum +#: wpf.class.php:1049 +#: wpf.class.php:1100 +msgid "No new posts" +msgstr "Nincs új hozzászólás" + +#: wpf.class.php:1049 +msgid "Mark All Read" +msgstr "Valamennyi megjelölése olvasottként" + +# @ mingleforum +#: wpf.class.php:1160 +msgid "No topics yet" +msgstr "Még nincs téma" + +# @ mingleforum +#: wpf.class.php:1163 +msgid "in" +msgstr " -" + +# @ mingleforum +#: wpf.class.php:1214 +msgid "Forums RSS" +msgstr "Fórumok RSS" + +#: wpf.class.php:1225 +msgid "Are you sure you want to remove this?" +msgstr "Bizonyos, hogy ezt eltávolítsuk?" + +# @ mingleforum +#: wpf.class.php:1279 +#: wpf.class.php:1854 +msgid "Search Results" +msgstr "Keresés eredménye" + +# @ mingleforum +#: wpf.class.php:1282 +msgid "Profile" +msgstr "Adatlap" + +# @ mingleforum +#: wpf.class.php:1291 +#: wpf.class.php:1511 +#: wpf.class.php:1643 +#: wpf.class.php:1660 +#: wpf.class.php:1867 +msgid "New Topic" +msgstr "Új téma" + +# @ mingleforum +#: wpf.class.php:1358 +msgid "Moderators:" +msgstr "Moderátorok:" + +# @ mingleforum +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1646 +#: wpf.class.php:1663 +msgid "Undo Sticky" +msgstr "Ragadós visszavonása" + +# @ mingleforum +#: wpf.class.php:1536 +#: wpf.class.php:1549 +#: wpf.class.php:1645 +#: wpf.class.php:1662 +msgid "Sticky" +msgstr "Ragadós" + +# @ mingleforum +#: wpf.class.php:1539 +#: wpf.class.php:1552 +#: wpf.class.php:1648 +#: wpf.class.php:1665 +msgid "Re-open" +msgstr "Újranyitás" + +# @ mingleforum +#: wpf.class.php:1541 +#: wpf.class.php:1554 +#: wpf.class.php:1647 +#: wpf.class.php:1664 +msgid "Close" +msgstr "Bezárás" + +# @ mingleforum +#: wpf.class.php:1561 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Reply" +msgstr "Válasz" + +# @ mingleforum +#: wpf.class.php:1568 +#: wpf.class.php:1584 +msgid "Unsubscribe" +msgstr "Leiratkozás" + +# @ mingleforum +#: wpf.class.php:1570 +#: wpf.class.php:1586 +msgid "Subscribe" +msgstr "Feliratkozás" + +# @ mingleforum +#: wpf.class.php:1573 +msgid "RSS feed" +msgstr "RSS" + +# @ mingleforum +#: wpf.class.php:1589 +#: wpf.class.php:1644 +#: wpf.class.php:1661 +msgid "RSS-Feed" +msgstr "RSS" + +# @ mingleforum +#: wpf.class.php:1627 +#: wpf.class.php:1631 +msgid "My profile" +msgstr "Adatlapom" + +# @ mingleforum +#: wpf.class.php:1627 +#: wpf.class.php:1631 +msgid "My Profile" +msgstr "Adatlapom" + +# @ mingleforum +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Forum Home" +msgstr "Fórum kezdőlap" + +# @ mingleforum +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#: wpf.class.php:1932 +msgid "Log out" +msgstr "Kilépés" + +# @ mingleforum +#: wpf.class.php:1641 +#: wpf.class.php:1658 +#: wpf.class.php:2466 +msgid "Search" +msgstr "Keresés" + +# @ mingleforum +#: wpf.class.php:1729 +msgid "You are logged in as:" +msgstr "Bejelentkezve, mint" + +# @ mingleforum +#: wpf.class.php:1735 +msgid "Username: " +msgstr "Felhasználónév:" + +# @ mingleforum +#: wpf.class.php:1736 +msgid "Password: " +msgstr "Jelszó:" + +# @ mingleforum +#: wpf.class.php:1738 +msgid "Remember Me" +msgstr "Jegyezzen meg!" + +# @ mingleforum +#: wpf.class.php:1774 +msgid "Administrator" +msgstr "Adminisztrátor" + +# @ mingleforum +#: wpf.class.php:1778 +msgid "Moderator" +msgstr "Moderátor" + +# @ mingleforum +#: wpf.class.php:1848 +msgid "New Topics since last visit" +msgstr "Új témák a legutóbbi belépés óta" + +# @ mingleforum +#: wpf.class.php:1858 +msgid "Profile Info" +msgstr "Adatlap információ" + +# @ mingleforum +#: wpf.class.php:1922 +msgid "Edit Profile" +msgstr "Adatlap szerkesztése" + +# @ mingleforum +#: wpf.class.php:1926 +#: wpf.class.php:1938 +msgid "Welcome" +msgstr "Üdvözlet" + +# @ mingleforum +#: wpf.class.php:1927 +msgid "Your last visit was:" +msgstr "Legutóbbi belépés ideje:" + +# @ mingleforum +#: wpf.class.php:1929 +msgid "Show new topics since your last visit" +msgstr "Mutassa az új témákat a legutóbbi belépés óta" + +# @ mingleforum +#: wpf.class.php:1930 +msgid "Edit your forum options" +msgstr "Fórumbeállítások szerkesztése" + +# @ mingleforum +#: wpf.class.php:1937 +msgid "Welcome Guest, please login or" +msgstr "Üdvözöljük kedves Vendégeinket a Fórumban! Belépés, vagy" + +# @ mingleforum +#: wpf.class.php:1937 +msgid "register." +msgstr "regisztráció." + +# @ mingleforum +#: wpf.class.php:1942 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Üdvözöljük kedves Vendég! A hozzászólás nálunk elvárás, melyhez kötelező a" + +# @ mingleforum +#: wpf.class.php:1942 +msgid "registration." +msgstr "regisztráció!" + +#: wpf.class.php:1950 +msgid "Show/Hide Header" +msgstr "Mutat / Elrejt" + +# @ mingleforum +#: wpf.class.php:1964 +msgid "Search forums" +msgstr "Keresés a fórumokban" + +# @ mingleforum +#: wpf.class.php:1999 +#: wpf.class.php:2030 +msgid "Pages:" +msgstr "Oldalak:" + +# @ mingleforum +#: wpf.class.php:2012 +#: wpf.class.php:2043 +msgid "First" +msgstr "Első" + +# @ mingleforum +#: wpf.class.php:2023 +#: wpf.class.php:2054 +msgid "Last" +msgstr "Utolsó" + +# @ mingleforum +#: wpf.class.php:2141 +msgid "Post deleted" +msgstr "Hozzászólás törölve" + +# @ mingleforum +#: wpf.class.php:2269 +#: wpf.class.php:2273 +#: fs-admin/fs-admin.php:154 +msgid "View profile" +msgstr "Adatlap megtekintése" + +# @ mingleforum +#: wpf.class.php:2287 +msgid "Bold" +msgstr "Vastagított" + +# @ mingleforum +#: wpf.class.php:2288 +msgid "Italic" +msgstr "Dőlt" + +# @ mingleforum +#: wpf.class.php:2289 +msgid "Underline" +msgstr "Aláhúzott" + +# @ mingleforum +#: wpf.class.php:2290 +msgid "Strikethrough" +msgstr "Áthúzás" + +# @ mingleforum +#: wpf.class.php:2291 +msgid "Code" +msgstr "Kód" + +# @ mingleforum +#: wpf.class.php:2293 +msgid "List" +msgstr "Lista" + +# @ mingleforum +#: wpf.class.php:2294 +msgid "List item" +msgstr "Lista elem" + +# @ mingleforum +#: wpf.class.php:2295 +msgid "Link" +msgstr "Link" + +# @ mingleforum +#: wpf.class.php:2296 +msgid "Image" +msgstr "Kép" + +# @ mingleforum +#: wpf.class.php:2297 +msgid "Email" +msgstr "Email" + +# @ mingleforum +#: wpf.class.php:2298 +msgid "Add Hex Color" +msgstr "Szín hexa-kód hozzáadása" + +# @ mingleforum +#: wpf.class.php:2299 +msgid "Embed YouTube Video" +msgstr "YouTube videó beágyazása" + +#: wpf.class.php:2300 +msgid "Embed Google Map" +msgstr "Google Map beágyazása" + +# @ mingleforum +#: wpf.class.php:2306 +msgid "Smile" +msgstr "Mosolygó" + +#: wpf.class.php:2307 +msgid "Big Grin" +msgstr "Nagy vigyorgó" + +# @ mingleforum +#: wpf.class.php:2308 +msgid "Sad" +msgstr "Szomorú" + +#: wpf.class.php:2309 +msgid "Neutral" +msgstr "Semleges" + +#: wpf.class.php:2310 +msgid "Razz" +msgstr "Kiröhög" + +# @ mingleforum +#: wpf.class.php:2311 +msgid "Mad" +msgstr "Őrült" + +#: wpf.class.php:2312 +msgid "Confused" +msgstr "Zavarodott" + +#: wpf.class.php:2313 +msgid "Eek!" +msgstr "Tudós" + +# @ mingleforum +#: wpf.class.php:2314 +msgid "Wink" +msgstr "Kacsint" + +#: wpf.class.php:2315 +msgid "Surprised" +msgstr "Csoálkozó" + +#: wpf.class.php:2316 +msgid "Cool" +msgstr "Dögös" + +# @ mingleforum +#: wpf.class.php:2328 +msgid "Info Center" +msgstr "Info Center" + +# @ mingleforum +#: wpf.class.php:2335 +msgid "Posts in" +msgstr "hozzászólás" + +# @ mingleforum +#: wpf.class.php:2335 +msgid "Topics Made by" +msgstr "Témaindítók:" + +# @ mingleforum +#: wpf.class.php:2335 +#: fs-admin/fs-admin.php:146 +msgid "Members" +msgstr "tag" + +# @ mingleforum +#: wpf.class.php:2335 +msgid "Latest Member:" +msgstr "Legutóbbi tag:" + +# @ mingleforum +#: wpf.class.php:2361 +msgid "New topics since your last visit" +msgstr "Új témák a legutóbbi belépés óta" + +# @ mingleforum +#: wpf.class.php:2408 +msgid "Summary" +msgstr "Adatlap" + +# @ mingleforum +#: wpf.class.php:2414 +#: wpf.class.php:2700 +#: fs-admin/wpf-add-forum.php:10 +msgid "Name:" +msgstr "Név:" + +# @ mingleforum +#: wpf.class.php:2419 +msgid "Registered:" +msgstr "Regisztrált:" + +# @ mingleforum +#: wpf.class.php:2427 +msgid "Position:" +msgstr "Rangja:" + +# @ mingleforum +#: wpf.class.php:2430 +msgid "Website:" +msgstr "Honlap:" + +# @ mingleforum +#: wpf.class.php:2434 +msgid "AIM:" +msgstr "AIM:" + +# @ mingleforum +#: wpf.class.php:2438 +msgid "Yahoo:" +msgstr "Yahoo:" + +# @ mingleforum +#: wpf.class.php:2441 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +# @ mingleforum +#: wpf.class.php:2445 +msgid "Biographical Info:" +msgstr "Életrajzi információ:" + +# @ mingleforum +#: wpf.class.php:2470 +msgid "Search for:" +msgstr "Keresés szóra, kifejezésre:" + +# @ mingleforum +#: wpf.class.php:2474 +msgid "By user:" +msgstr "Felhasználó:" + +# @ mingleforum +#: wpf.class.php:2479 +msgid "Message Age:" +msgstr "Mikor történt a hozzászólás?" + +# @ mingleforum +#: wpf.class.php:2480 +msgid "Between" +msgstr "Keressünk" + +# @ mingleforum +#: wpf.class.php:2480 +msgid "and" +msgstr "és" + +# @ mingleforum +#: wpf.class.php:2480 +msgid "days" +msgstr "nappal ezelőtti hozzászólásokat." + +# @ mingleforum +#: wpf.class.php:2486 +msgid "Click to choose Forum(s) to search" +msgstr "Ide kattintva kijelölhető, hogy melyik Fórumokban akarunk keresni." + +# @ mingleforum +#: wpf.class.php:2508 +msgid "Check all" +msgstr "Összes ellenőrzése" + +# @ mingleforum +#: wpf.class.php:2513 +msgid "Start Search" +msgstr "Keresés indítása" + +# @ mingleforum +#: wpf.class.php:2555 +msgid "Subject" +msgstr "Állapot" + +# @ mingleforum +#: wpf.class.php:2556 +msgid "Relevance" +msgstr "Tárgyhoz tartozik" + +# @ mingleforum +#: wpf.class.php:2558 +msgid "Posted" +msgstr "Beküldve" + +# @ mingleforum +#: wpf.class.php:2624 +msgid "Closed topic" +msgstr "Lezárt téma" + +# @ mingleforum +#: wpf.class.php:2627 +msgid "Normal topic" +msgstr "Normál téma" + +# @ mingleforum +#: wpf.class.php:2630 +msgid "Hot topic" +msgstr "Menő téma" + +# @ mingleforum +#: wpf.class.php:2633 +msgid "Very Hot topic" +msgstr "Nagyon menő téma" + +# @ mingleforum +#: wpf.class.php:2665 +msgid "Security Code:" +msgstr "Biztonsági kód:" + +# @ mingleforum +#: wpf.class.php:2684 +msgid "Enter Security Code: (required)" +msgstr "Biztonsági kód megadása (kötelező):" + +# @ mingleforum +#: wpf.class.php:2698 +msgid "New post in forum:" +msgstr "Új hozzászólás a fórumon:" + +# @ mingleforum +#: wpf.class.php:2699 +msgid "DETAILS:" +msgstr "RÉSZLETEK:" + +# @ mingleforum +#: wpf.class.php:2702 +msgid "Date:" +msgstr "Dátum:" + +# @ mingleforum +#: wpf.class.php:2703 +msgid "Reply Content:" +msgstr "Válasz tartalma:" + +# @ mingleforum +#: wpf.class.php:2704 +msgid "View Topic Here:" +msgstr "Téma megtekintése itt:" + +#: wpf.class.php:2753 +#: wpf.class.php:2763 +msgid "Inbox" +msgstr "Bejövő fiók" + +# @ mingleforum +#: wpf.class.php:2779 +#: wpf.class.php:2792 +msgid "Send Message" +msgstr "Üzenet küldése" + +# @ mingleforum +#: wpf.class.php:2970 +#, fuzzy +msgid "Mingle Forum Post Options" +msgstr "Mingle Forum - Beállítások" + +#: wpf.class.php:2976 +msgid "Add this post to" +msgstr "" + +#: wpf.class.php:2980 +msgid "Do not check this if this post has already been linked to the forum!" +msgstr "" + +#: wpf.class.php:3012 +msgid "Join the Forum discussion on this post" +msgstr "" + +# @ mingleforum +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategória" + +# @ mingleforum +#: wpf_define.php:35 +msgid "Topic" +msgstr "Téma" + +# @ mingleforum +#: fs-admin/fs-admin.php:32 +msgid "You must specify a user group name." +msgstr "Meg kell adni egy felhasználói csoport nevet." + +# @ mingleforum +#: fs-admin/fs-admin.php:34 +#: fs-admin/fs-admin.php:701 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "A választott név már létezik az adatbázisban, egy másikat kell választani" + +# @ mingleforum +#: fs-admin/fs-admin.php:36 +msgid "User Group successfully added." +msgstr "Felhasználói csoport sikeresen hozzáadva." + +# @ mingleforum +#: fs-admin/fs-admin.php:54 +msgid "You haven't specified any user to add:" +msgstr "Még egyetlen felhasználó sem lett megjelölve a hozzáadáshoz:" + +# @ mingleforum +#: fs-admin/fs-admin.php:58 +msgid "You must choose a user group" +msgstr "Ki kell választani egy felhasználói csoportot" + +# @ mingleforum +#: fs-admin/fs-admin.php:65 +msgid "Error" +msgstr "Hiba" + +# @ mingleforum +#: fs-admin/fs-admin.php:65 +msgid "No such user:" +msgstr "Nincs ilyen felhasználó:" + +# @ mingleforum +#: fs-admin/fs-admin.php:69 +msgid "Warning" +msgstr "Figyelmeztetés" + +# @ mingleforum +#: fs-admin/fs-admin.php:69 +#: fs-admin/fs-admin.php:73 +msgid "User" +msgstr "Felhasználó" + +# @ mingleforum +#: fs-admin/fs-admin.php:69 +msgid "is already in this group" +msgstr "már ebben a csoportban van" + +# @ mingleforum +#: fs-admin/fs-admin.php:73 +msgid "added successfully" +msgstr "sikeresen hozzáadva" + +# @ mingleforum +#: fs-admin/fs-admin.php:81 +msgid "Errors:" +msgstr "Hibák:" + +# @ mingleforum +#: fs-admin/fs-admin.php:82 +msgid "Warnings:" +msgstr "Figyelmeztetések:" + +# @ mingleforum +#: fs-admin/fs-admin.php:83 +msgid "Users added:" +msgstr "Felhasználók hozzáadva:" + +# @ mingleforum +#: fs-admin/fs-admin.php:97 +msgid "User Group(s) successfully deleted." +msgstr "Felhasználói Csoport(ok) sikeresen törlésre került(ek)." + +# @ mingleforum +#: fs-admin/fs-admin.php:105 +msgid "Member successfully removed." +msgstr "Tag sikeresen eltávolítva." + +# @ mingleforum +#: fs-admin/fs-admin.php:111 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Felhasználói csoportok kezelése" + +# @ mingleforum +#: fs-admin/fs-admin.php:111 +#: fs-admin/fs-admin.php:766 +#: fs-admin/fs-admin.php:966 +msgid "add new" +msgstr "új hozzáadása" + +# @ mingleforum +#: fs-admin/fs-admin.php:118 +#: fs-admin/fs-admin.php:820 +msgid "Delete" +msgstr "Törlés" + +# @ mingleforum +#: fs-admin/fs-admin.php:158 +#: fs-admin/fs-admin.php:164 +msgid "Add members" +msgstr "Tagok hozzáadása" + +# @ mingleforum +#: fs-admin/fs-admin.php:163 +msgid "No members in this group" +msgstr "Nincsenek tagok ebben a csoportban" + +# @ mingleforum +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Fórumsablon sikeresen aktivizálva." + +# @ mingleforum +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Fórumsablon beállítások" + +# @ mingleforum +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "További fórumsablonok (angol)" + +# @ mingleforum +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "FONTOS: 1.0.03 verziótól kezdődően a fórumsablonok könytárát a /wp-content/mingle-forum-skins/ könyvtárba helyeztük." + +# @ mingleforum +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Miért is kellett megváltoztatni? (angol)" + +# @ mingleforum +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Képernyőkép" + +# @ mingleforum +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:12 +msgid "Name" +msgstr "Név" + +# @ mingleforum +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Verzió" + +# @ mingleforum +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:13 +msgid "Description" +msgstr "Leírás" + +# @ mingleforum +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Tevékenység" + +# @ mingleforum +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "Használatban" + +# @ mingleforum +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Bekapcsolás" + +# @ mingleforum +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "Mingle Forum névjegy" + +# @ mingleforum +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Jelenlegi verzió:" + +# @ mingleforum +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "A Mingle Forumnak küldetése egyszerű: 'LEGYÜNK EGYSZERŰEK!'. Ezt a WP Forum-tól vettük át és fejlesztettünk jelentősen. Teljes az integráció a Mingle bővítménnyel, vagy nélküle (Blair Williams). Nagy köszönenet mondok Eric Hamby-nek korábbi munkájáért, amit a fórum kódján végzett!" + +# @ mingleforum +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Szerző:" + +# @ mingleforum +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Bővítmény oldala:" + +# @ mingleforum +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Támogatói fórum:" + +# @ mingleforum +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum forumsablonok:" + +# @ mingleforum +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Beállítások sikeresen mentve." + +# @ mingleforum +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +# @ mingleforum +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Statisztika" + +# @ mingleforum +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Érték" + +# @ mingleforum +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Hozzászólások száma:" + +# @ mingleforum +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Összefűzött hozzászólások száma:" + +# @ mingleforum +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Felhasználók száma:" + +# @ mingleforum +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Teljes adatbázis mérete:" + +# @ mingleforum +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Adatbázis szerver:" + +# @ mingleforum +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Mingle Forum verzió:" + +# @ mingleforum +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Általános beállítások" + +# @ mingleforum +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "alapértelmezés" + +# @ mingleforum +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Funkció megnevezése" + +# @ mingleforum +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Érték beállítása" + +#: fs-admin/fs-admin.php:409 +msgid "Integrate WordPress Posts with Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:413 +#: fs-admin/fs-admin.php:480 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:527 +msgid "Off" +msgstr "Kikapcsolva" + +# @ mingleforum +#: fs-admin/fs-admin.php:417 +msgid "Posts per page:" +msgstr "Hozzászólás oldalanként:" + +# @ mingleforum +#: fs-admin/fs-admin.php:421 +msgid "Threads per page:" +msgstr "Összefűzött hozzászólások oldalanként:" + +# @ mingleforum +#: fs-admin/fs-admin.php:427 +msgid "Number of posts for Hot Topic:" +msgstr "A 'Menő Téma'-hoz szükséges hozzászólások száma:" + +# @ mingleforum +#: fs-admin/fs-admin.php:431 +msgid "Number of posts for Very Hot Topic:" +msgstr "A 'Nagyon Menő Téma' hozzászólásainak minimális mennyisége:" + +# @ mingleforum +#: fs-admin/fs-admin.php:435 +msgid "Username Display:" +msgstr "Felhasználó nevének megjelenítési formája:" + +# @ mingleforum +#: fs-admin/fs-admin.php:448 +msgid "New User's Title:" +msgstr "Az új felhasználó rangja:" + +# @ mingleforum +#: fs-admin/fs-admin.php:452 +msgid "User Level 1 Title:" +msgstr "Első szintű felhasználó rangja:" + +# @ mingleforum +#: fs-admin/fs-admin.php:456 +msgid "User Level 1 Count:" +msgstr "Első szintű felhasználó számlálója:" + +#: fs-admin/fs-admin.php:457 +msgid "25" +msgstr "25" + +# @ mingleforum +#: fs-admin/fs-admin.php:460 +msgid "User Level 2 Title:" +msgstr "Második szintű felhasználó rangja:" + +# @ mingleforum +#: fs-admin/fs-admin.php:464 +msgid "User Level 2 Count:" +msgstr "Második szintű felhasználó számlálója:" + +#: fs-admin/fs-admin.php:465 +msgid "50" +msgstr "50" + +# @ mingleforum +#: fs-admin/fs-admin.php:468 +msgid "User Level 3 Title:" +msgstr "Harmadik szintű felhasználó rangja:" + +# @ mingleforum +#: fs-admin/fs-admin.php:472 +msgid "User Level 3 Count:" +msgstr "Harmadik szintű felhasználó számlálója:" + +#: fs-admin/fs-admin.php:473 +msgid "100" +msgstr "100" + +# @ mingleforum +#: fs-admin/fs-admin.php:476 +msgid "Notify Admin on new posts:" +msgstr "Admin figyelmeztetése új hozzászólásról:" + +# @ mingleforum +#: fs-admin/fs-admin.php:483 +msgid "Show Forum Login Form:" +msgstr "Mutassa a Fórum bejelentkezési űrlapot:" + +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:519 +#: fs-admin/fs-admin.php:535 +msgid "On" +msgstr "Bekapcsolva" + +# @ mingleforum +#: fs-admin/fs-admin.php:491 +msgid "Show Avatars in the forum:" +msgstr "Mutassa az avatarokat a fórumban:" + +#: fs-admin/fs-admin.php:499 +msgid "Allow Images to be uploaded:" +msgstr "Képek feltöltésének engedélyezése:" + +#: fs-admin/fs-admin.php:507 +#, fuzzy +msgid "Show users Signature at the bottom of posts:" +msgstr "Mutassa a felhasználó adatait a bejegyzések tetején" + +# @ mingleforum +#: fs-admin/fs-admin.php:515 +msgid "Use Forum RSS:" +msgstr "Fórum RSS használata:" + +#: fs-admin/fs-admin.php:523 +msgid "Use SEO friendly URLs:" +msgstr "SEO-barát URL-ek használata:" + +#: fs-admin/fs-admin.php:523 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "FONTOS: Ezt az opciót kikapcsolva kell tartani, amennyiben az 'Alap' közvetlen link struktúra van használatban!" + +# @ mingleforum +#: fs-admin/fs-admin.php:531 +msgid "Registration required to post:" +msgstr "Regisztráció szükséges a hozzászóláshoz:" + +# @ mingleforum +#: fs-admin/fs-admin.php:540 +msgid "Installed version:" +msgstr "Telepített változat:" + +# @ mingleforum +#: fs-admin/fs-admin.php:544 +msgid "GD Library is not installed" +msgstr "GD könyvtár nincs telepítve" + +# @ mingleforum +#: fs-admin/fs-admin.php:547 +msgid "Use Captcha for unregistered users:" +msgstr "Captcha használata nem regisztrált felhasználóknál:" + +# @ mingleforum +#: fs-admin/fs-admin.php:551 +msgid "Requires " +msgstr "Kötelező" + +# @ mingleforum +#: fs-admin/fs-admin.php:551 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Ha a 'Regisztráció szükséges a bejegyzéshez' engedélyezett, akkor ezt üresen kell hagyni" + +# @ mingleforum +#: fs-admin/fs-admin.php:555 +msgid "Date format:" +msgstr "Dátum formátuma:" + +# @ mingleforum +#: fs-admin/fs-admin.php:555 +msgid "Default date:" +msgstr "Alapértelmezett formátum:" + +# @ mingleforum +#: fs-admin/fs-admin.php:555 +msgid "Check " +msgstr "Ellenőrizzük a" + +# @ mingleforum +#: fs-admin/fs-admin.php:555 +msgid "for date formatting." +msgstr "oldalon a php dátum formázás beállítási lehetőségeit (angol)." + +# @ mingleforum +#: fs-admin/fs-admin.php:672 +msgid "Groups deleted:" +msgstr "Törölt csoportok:" + +# @ mingleforum +#: fs-admin/fs-admin.php:673 +msgid "Forums deleted:" +msgstr "Törölt fórumok:" + +# @ mingleforum +#: fs-admin/fs-admin.php:674 +msgid "Threads deleted:" +msgstr "Törölt összefűzütt hozzászólások:" + +# @ mingleforum +#: fs-admin/fs-admin.php:675 +msgid "Posts deleted:" +msgstr "Törölt hozzászólások:" + +# @ mingleforum +#: fs-admin/fs-admin.php:699 +#: fs-admin/fs-admin.php:723 +msgid "You must enter a name" +msgstr "Egy nevet meg kell adni!" + +# @ mingleforum +#: fs-admin/fs-admin.php:708 +msgid "Category added successfully" +msgstr "Kategória sikeresen hozzáadva" + +# @ mingleforum +#: fs-admin/fs-admin.php:720 +msgid "You must select a category" +msgstr "Ki kell választani egy kategóriát!" + +# @ mingleforum +#: fs-admin/fs-admin.php:726 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Olyan fórumnév került kiválasztásra, amely már ebben a csoportban létezik, ezért egy másikat kell megadni" + +# @ mingleforum +#: fs-admin/fs-admin.php:733 +msgid "Forum added successfully" +msgstr "Fórum sikeresen hozzáadva" + +# @ mingleforum +#: fs-admin/fs-admin.php:760 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategóriák és Fórumok" + +# @ mingleforum +#: fs-admin/fs-admin.php:782 +#: fs-admin/fs-admin.php:812 +msgid "Modify" +msgstr "Módosítás" + +# @ mingleforum +#: fs-admin/fs-admin.php:821 +msgid "Add forum" +msgstr "Fórum hozzáadása" + +#: fs-admin/fs-admin.php:846 +msgid "Group Moved Down" +msgstr "Csoport mozgatása lefelé" + +# @ mingleforum +#: fs-admin/fs-admin.php:856 +msgid "Forum Moved Down" +msgstr "Fórum mozgatása lefelé" + +#: fs-admin/fs-admin.php:866 +msgid "Group Moved Up" +msgstr "Csoport mozgatása felfelé" + +# @ mingleforum +#: fs-admin/fs-admin.php:876 +msgid "Forum Moved Up" +msgstr "Fórum mozgatása felfelé" + +# @ mingleforum +#: fs-admin/fs-admin.php:913 +#: fs-admin/fs-admin.php:920 +msgid "Moderator successfully removed." +msgstr "Moderátor sikeresen eltávolítva" + +# @ mingleforum +#: fs-admin/fs-admin.php:915 +msgid "Moderator successfully saved." +msgstr "Moderátor sikeresen elmentve" + +# @ mingleforum +#: fs-admin/fs-admin.php:922 +msgid "Moderator NOT removed." +msgstr "Moderátor NINCS eltávolítva" + +# @ mingleforum +#: fs-admin/fs-admin.php:936 +msgid "You must select a user" +msgstr "Ki kell választani egy felhasználót" + +# @ mingleforum +#: fs-admin/fs-admin.php:940 +msgid "Global Moderator added successfully" +msgstr "Globális moderátor sikeresen hozzáadva" + +# @ mingleforum +#: fs-admin/fs-admin.php:944 +msgid "Moderator added successfully" +msgstr "Moderátor sikeresen hozzáadva" + +# @ mingleforum +#: fs-admin/fs-admin.php:966 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Moderátorok kezelése" + +# @ mingleforum +#: fs-admin/fs-admin.php:975 +msgid "Currently moderating" +msgstr "Moderációs területe" + +# @ mingleforum +#: fs-admin/fs-admin.php:979 +msgid "Update" +msgstr "Frissítés" + +# @ mingleforum +#: fs-admin/fs-admin.php:989 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Globális moderátor: (A felhasználó moderálhatja az öszes fórumot)" + +# @ mingleforum +#: fs-admin/fs-admin.php:1008 +msgid "No moderators yet" +msgstr "Még nincs moderátor" + +# @ mingleforum +#: fs-admin/fs-admin.php:1033 +msgid "Ads saved successfully" +msgstr "Hirdetések mentése sikeres" + +# @ mingleforum +#: fs-admin/fs-admin.php:1038 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum Hirdetések >> Beállítások" + +#: fs-admin/fs-admin.php:1040 +msgid "HTML is allowed in all ad areas below" +msgstr "A HTML engedélyezett az alábbi területeken" + +# @ mingleforum +#: fs-admin/fs-admin.php:1044 +msgid "Ads Option" +msgstr "Hirdetések beállítása" + +#: fs-admin/fs-admin.php:1051 +msgid "Enable Area Above Forum" +msgstr "Fórum feletti terület bekapcsolása" + +#: fs-admin/fs-admin.php:1053 +#: fs-admin/fs-admin.php:1061 +#: fs-admin/fs-admin.php:1069 +#: fs-admin/fs-admin.php:1077 +#: fs-admin/fs-admin.php:1085 +#: fs-admin/fs-admin.php:1093 +#: fs-admin/fs-admin.php:1101 +msgid "css-value:" +msgstr "css-érték:" + +#: fs-admin/fs-admin.php:1059 +msgid "Enable Area Below Forum" +msgstr "Fórum alatti terület bekapcsolása" + +#: fs-admin/fs-admin.php:1067 +msgid "Enable Area Above Branding" +msgstr "Fórumnév feletti terület bekapcsolása" + +#: fs-admin/fs-admin.php:1075 +msgid "Enable Area Above Info Center" +msgstr "Infóközpont feletti terület bekapcsolása" + +#: fs-admin/fs-admin.php:1083 +msgid "Enable Area Above Breadcrumbs" +msgstr "Navigáció feletti terület bekapcsolása" + +#: fs-admin/fs-admin.php:1091 +msgid "Enable Area Above Quick Reply Form" +msgstr "Gyorsválasz űrlap feletti rész bekapcsolása" + +#: fs-admin/fs-admin.php:1099 +msgid "Enable Area Below First Post" +msgstr "Első hozzászólás alatti rész bekapcsolása" + +#: fs-admin/fs-admin.php:1106 +msgid "Below you can modify/add your own CSS" +msgstr "Saját CSS módosítása/hozzáadása az alul lévő részen lehetséges" + +#: fs-admin/fs-admin.php:1107 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "FIGYELMEZTETÉS: amennyiben nem vagyunk tisztában, hogy mi fog történni, hagyjuk üresen!" + +# @ mingleforum +#: fs-admin/fs-admin.php:1114 +msgid "Save Options" +msgstr "Beállítások mentése" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:5 +msgid "Add forum to" +msgstr "Fórum hozzáadása ehhez a helyhez" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:14 +msgid "Description:" +msgstr "Leírás:" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:30 +msgid "Save forum" +msgstr "Fórum mentése" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:7 +msgid "Add category" +msgstr "Kategória hozzáadása" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:21 +msgid "Save category" +msgstr "Kategória mentése" + +# @ mingleforum +#: fs-admin/wpf-add-usergroup.php:23 +#: .\fs-admin/wpf-add-usergroup.php:23 +msgid "Save user group" +msgstr "Felhasználói csoport mentése" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:21 +#: .\fs-admin/wpf-addusers.php:21 +msgid "Select User group" +msgstr "Felhasználói csoport kiválasztása" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:31 +#: .\fs-admin/wpf-addusers.php:31 +msgid "Add users" +msgstr "Felhasználók hozzáadása" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:12 +#: .\fs-admin/wpf-edit-forum-group.php:12 +msgid "You must specify a group name" +msgstr "Meg kell adni egy csoportnevet" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:24 +#: .\fs-admin/wpf-edit-forum-group.php:24 +msgid "Group updated successfully" +msgstr "Csoport sikeresen módosítva" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:34 +#: .\fs-admin/wpf-edit-forum-group.php:34 +msgid "You must specify a forum name" +msgstr "Egy fórum nevet meg kell adni" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:37 +#: .\fs-admin/wpf-edit-forum-group.php:37 +msgid "Forum updated successfully" +msgstr "Fórum sikeresen frissítve" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:49 +#: .\fs-admin/wpf-edit-forum-group.php:49 +msgid "Edit category" +msgstr "Kategória szerkesztése" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:63 +#: .\fs-admin/wpf-edit-forum-group.php:63 +msgid "User Groups:" +msgstr "Felhasználói csoportok:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:66 +#: .\fs-admin/wpf-edit-forum-group.php:66 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "A bejelölt felhasználói csoportoknak van hozzáférésük a fórumokhoz ebben a kategóriában:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:98 +#: .\fs-admin/wpf-edit-forum-group.php:98 +msgid "There are no User Groups" +msgstr "Nincs felhasználói csoport" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:105 +#: .\fs-admin/wpf-edit-forum-group.php:105 +msgid "Save group" +msgstr "Csoport mentése" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:119 +#: .\fs-admin/wpf-edit-forum-group.php:119 +msgid "Edit forum" +msgstr "Fórum szerkesztése" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:19 +#: .\fs-admin/wpf-moderator.php:19 +msgid "Select user" +msgstr "Felhasználó kiválasztása" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:36 +#: .\fs-admin/wpf-moderator.php:36 +msgid "Add moderator" +msgstr "Moderátor hozzáadása" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:11 +#: .\fs-admin/wpf-usergroup-edit.php:11 +msgid "You must specify a name for the User Group" +msgstr "A felhasználói csoportnak meg kell adni a nevét" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:18 +#: .\fs-admin/wpf-usergroup-edit.php:18 +msgid "User Group updated successfully" +msgstr "Felhasználói csoport sikeresen frissítve" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:25 +#: .\fs-admin/wpf-usergroup-edit.php:25 +msgid "Edit User Group" +msgstr "Felhasználói csoport szerkesztése" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:39 +#: .\fs-admin/wpf-usergroup-edit.php:39 +msgid "Save User Group" +msgstr "Felhasználói csoport mentése" + diff --git a/i18n/mingleforum-id_ID.mo b/i18n/mingleforum-id_ID.mo new file mode 100644 index 0000000..fb6d6b2 Binary files /dev/null and b/i18n/mingleforum-id_ID.mo differ diff --git a/i18n/mingleforum-id_ID.po b/i18n/mingleforum-id_ID.po new file mode 100644 index 0000000..69a730f --- /dev/null +++ b/i18n/mingleforum-id_ID.po @@ -0,0 +1,1594 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum 1.0.22\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:39-0700\n" +"Last-Translator: Paul \n" +"Language-Team: Lutvi Avandi \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-Language: Indonesian\n" +"X-Poedit-Country: INDONESIA\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Topik Forum:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Topik:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Tidak ada pengguna" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Ubah opsi forum" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "ijinkan orang lain melihat profil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Anda mendapatkan pemberitahuan email untuk topik ini:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Simpan opsi" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Mau Curang ya?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Kode keamanan tidak sama" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Ada kesalahan" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Anda harus memasukkan judul" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Anda harus memasukkan pesan" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "membuat topik forum:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "membalas topik forum:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Mengutip dari" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "di" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Kirim Balasan" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Judul:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Pesan:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Kirim" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Ubah Tulisan" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Simpan Tulisan" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Tulis topik baru" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Maaf, anda tidak diijinkan untuk menulis" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Opsi Kulit" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Nama Opsi" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Kulit" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategori & Forum" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderator" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Grup Pengguna" + +#: wpf.class.php:178 +msgid "About" +msgstr "Tentang Kami" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Aktifitas Terakhir Forum" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "oleh:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Judul untuk ditampilkan di sidebar:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Berapa item yang ingin anda tampilkan?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Halaman dimuat dalam:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "detik" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Forum Mingle" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versi:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Tamu" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "oleh" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Tulisan terakhir oleh" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Maaf, anda tidak memiliki akses ke forum ini" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Judul Topik" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Diawali oleh" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Balasan" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Dilihat" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Tulisan terakhir" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Topik Tempel" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Pindah Topik" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Hapus Topik" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Tulisan baru sejak terakhir berkunjung" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Topik Forum" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Hapus topik ini dari pemberitahuan email anda?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Tambah topik ini di pemberitahuan email anda?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "TOPIK DITUTUP" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Penulis" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Tulisan:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Balas Cepat" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Kirim Balasan Cepat" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Tulisan" + +#: wpf.class.php:939 +msgid "on:" +msgstr "di:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Kutipan" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Hapus" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Ubah" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Topik:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Tulisan:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Tulisan Baru" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Tidak ada tulisan baru" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Tidak ada Topik" + +#: wpf.class.php:1154 +msgid "in" +msgstr "di" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS Forum" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Hasil Pencarian" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Topik Baru" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderator" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Batalkan Tempel" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Tempel" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Buka kembali" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Tutup" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Balas" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Langganan" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Langganan" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS Feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS Feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Profilku" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Profilku" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Depan Forum" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Keluar Log" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Cari" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Anda masuk log sebagai:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nama Pengguna:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Kata Kunci:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Ingat Saya" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Topik Baru sejak terakhir berkunjung" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Info Profil" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Ubah Profil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Selamat datang" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Kunjungan terakhir anda adalah:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Perlihatkan topik baru sejak terakhir berkunjung" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Ubah opsi forum anda" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Selamat datang tamu, silahkan masuk log atau" + +#: wpf.class.php:1928 +msgid "register." +msgstr "daftar." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Selamat datang tamu, menulis di forum ini memerlukan" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "pendaftaran." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Tampil/Sembunyikan Tajuk" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Cari Forum" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Halaman:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Daftar" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Daftar" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Tulisan dihapus" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Lihat Profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Tebal" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Miring" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Garis Bawah" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Coret" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kode" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Daftar" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Item Daftar" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Taut" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Gambar" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Surel" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Tambah Warna Hex" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Sisipkan Video YouTube" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Senyum" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Senyum Lebar" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Sedih" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Netral" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Marah" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Bingung" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Berkedip" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Terkejut" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Keren" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Pusat Informasi" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Tulisan dalam" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Topik dibuat oleh" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Anggota" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Anggota Terakhir:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Topik baru sejak kunjungan terakhir" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Ringkasan" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nama:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Terdaftar sejak:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Posisi:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Info Biografi:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Cari:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Oleh Pengguna:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Umur Pesan:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Antara" + +#: wpf.class.php:2467 +msgid "and" +msgstr "dan" + +#: wpf.class.php:2467 +msgid "days" +msgstr "hari" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Klik untuk memilih forum yang dicari" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Pilih semua" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Mulai pencarian" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Judul" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevan" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Terkirim" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Topik ditutup" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Topik Normal" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Topik Hangat" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Topik Panas" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Kode Keamanan:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Masukkan kode keamanan: (wajib)" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Balasan terakhir untuk topik:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETIL:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Tanggal:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Isi Balasan:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Lihat Topik Disini:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Kotak Surat:" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Kirim Pesan" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategori" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Topik" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Anda harus menentukan nama grup pengguna" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Kamu memilih nama yang yang sudah ada di database, silakan cari yang lain" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Pengguna Grup sudah berhasil ditambahkan" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Anda belum " + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Anda harus memilih grup pengguna" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Galat" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Pengguna tidak ada:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Peringatan" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Pengguna" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "sudah ada dalam grup ini" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "sukses menambah" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Galat:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Peringatan:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Pengguna ditambahkan:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Grup pengguna sukses dihapus" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Anggota sukses dihapus" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Mengelola Grup Pengguna" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "tambah baru" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Hapus" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Tambah Anggota" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Tidak ada anggota di grup ini" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Kulit sukses diaktifkan" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Opsi Kulit" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Dapatkan Kulit Lain" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "PENTING: Sejak versi 1.0.03 direktori kulit telah dipindah ke /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Kenapa anda mengubahnya?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Gambar Layar" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nama" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versi" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Diskripsi" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Aksi" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Digunakan" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktif" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Tentang Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Versi Sekarang:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum punya satu misi sederhana yaitu 'TETAP SEDERHANA!' Ia telah diambil alih dari WP Forum dan dikembangkan dengan DAHSYAT. Sekarang ia mampu disandingkan dengan atau tanpa plugin Mingle (oleh Blair Williams). Saya juga ingin mengucapkan terima kasih kepada Eric hamby atas pekerjaan sebelumnya dalam script forum." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Penulis:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Halaman Plugin:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Forum Pendukung:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Kulit Mingle Forum:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opsi sukses disimpan" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Forum Mingle" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistik" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Nilai" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Jumlah tulisan:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Jumlah thread:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Jumlah pengguna:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Ukuran database:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Server database:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Versi Mingle Forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Opsi Umum" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "dasar" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Nama Opsi" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Masukkan Opsi" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Tulisan tiap halaman:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Thread tiap halaman:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Jumlah tulisan topik hangat:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Jumlah tulisan Topik Panas" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Tampilan Nama Pengguna:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Istilah Pengguna Baru:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Istilah Pengguna Tingkat 1" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Hitungan Pengguna Tingkat 1:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Istilah Pengguna Tingkat 2" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Hitungan Pengguna Tingkat 2:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Istilah Pengguna Tingkat 3" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Hitungan Pengguna Tingkat 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Tidak ada tulisan baru" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Tampilkan formulir masuk log:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Tampilkan avatar di forum:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Tampilkan biografi pengguna di bawah tulisan:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Gunakan RSS Forum:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Pendaftaran diwajibkan untuk menulis:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Versi yang terpasang:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library belum terpasang" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Gunakan Captcha untuk pengguna yang belum mendaftar:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Wajib" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Jika anda menggunakan 'Registrasi diwajibkan untuk menulis' diatas, maka biarkan saja ini" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Format Tanggal:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Tanggal Dasar:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Cek" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "pada format tanggal." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Grup dihapus:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Forum dihapus:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Thread dihapus:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Tulisan dihapus:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Anda harus memasukkan nama" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategori sukses ditambahkan" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Anda harus memilih kategori" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Anda sudah memilih nama forum yang telah ada dalam grup, silahkan pilih yang lain" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum sukses ditambahkan" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategori dan Forum" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Modifikasi" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Tambah Forum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderator sukses dihapus" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderator sukses disimpan" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderator TIDAK dihapus" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Anda harus memilih pengguna" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderator umum sukses ditambahkan" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderator sukses ditambahkan" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Kelola Moderator" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Sedang memoderasi" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Perbarui" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderator Umum: (Pengguna dapat memoderasi semua forum)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Belum ada Moderator" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "sukses menambah" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Opsi Kulit" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Nama Opsi" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Simpan opsi" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Tambah forum ke" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Diskripsi" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Simpan Forum" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Ubah kategori" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Ubah kategori" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Simpan grup pengguna" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Pilih grup pengguna" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Tambah pengguna" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Anda harus menetukan nama grup" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grup sukses ditambahkan" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Anda harus menentukan nama forum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum sukses diperbarui" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Ubah kategori" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Grup Pengguna:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Pengguna pada Grup Pengguna yang dipilih punya akses ke forum di kategori ini:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Tidak ada grup pengguna" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Simpan grup" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Ubah Forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Pilih Pengguna" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Tambah Moderator" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Anda harus menentukan nama dari Grup Pengguna" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Grup Pengguna sukses diperbarui" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Ubah Grup Pengguna" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Simpan Grup Pengguna" + +#~ msgid "General Options" +#~ msgstr "Opsi Umum" + +#~ msgid "Categories and forums" +#~ msgstr "Kategori dan Forum" + +#~ msgid "Remove this post?" +#~ msgstr "Hapus tulisan ini?" diff --git a/i18n/mingleforum-it_IT.mo b/i18n/mingleforum-it_IT.mo new file mode 100644 index 0000000..0abfb15 Binary files /dev/null and b/i18n/mingleforum-it_IT.mo differ diff --git a/i18n/mingleforum-it_IT.po b/i18n/mingleforum-it_IT.po new file mode 100644 index 0000000..492c170 --- /dev/null +++ b/i18n/mingleforum-it_IT.po @@ -0,0 +1,1564 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-04-15 16:00-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Feed del Forum" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Argomento:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Argomento" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "Feed disabilitati" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Nessun utente" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Non hai sottoscrizioni al momento" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Modifica opzioni forum" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Permetti ad altri di vedere il profilo?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Hai notifiche email per questi argomenti:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Salva opzioni" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Stiamo usando trucchetti?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "I codici di sicurezza noon coincidono" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Si è verificato un errore" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Devi inserire un Oggetto" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Devi scrivere un messaggio" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "creato l'argomento:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "risposto all'argomento:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Cita da:" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "il" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Inserisci risposta" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Oggetto:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Messaggio:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Inserisci" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Modifica post" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Salva post" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Inserisci nuova discussione" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Spiacente, non hai i permessi per postare." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "Nuovo" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "Principiante" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "Avanzato" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:171 +#: wpf.class.php:172 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum - Opzioni" + +#: wpf.class.php:172 +msgid "Options" +msgstr "Opzioni" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "Ads" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "Struttura del Forum - Categorie & Forum" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "Struttura Forum" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderatori" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Gruppi utenti" + +#: wpf.class.php:178 +msgid "About" +msgstr "A proposito di" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Ultima attività sul Forum" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "di:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Titolo per la barra laterale" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Quanti elementi vuoi mostrare?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Pagina caricata in:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "secondi." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versione:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Ospite" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "di" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Ultimo Post di" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Spiacente, non hai accesso a questo forum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Stato" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Titolo discussione" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Iniziata da" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Risposte" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Visite" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Ultimo post" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Argomenti in rilievo" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Sposta argomento" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Cancella argomento" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "NUovi post dall'ultima visita" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Argomenti del Forum" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Togli questa discussione dalle tue notifiche mail?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Aggiungi notifica email per questo argomento?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "DISCUSSIONE CHIUSA" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autore" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Posts:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Risposta rapida" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Inserisci risposta rapida" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:939 +msgid "on:" +msgstr "il:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Cita:" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Rimuovi" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Modifica" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Argomenti:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Posts:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nuovi post:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Nessun nuovo post" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "Segna tutti come già letti" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Nessun argomento ancora" + +#: wpf.class.php:1154 +msgid "in" +msgstr "in" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS Forum" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "Sicuro di rimuovere questo?" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Risultati di ricerca" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profilo" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nuova discussione" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatori" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Togli \"in Rilievo\"" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "In Rilievo" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Riapri" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Chiudi" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Rispondi" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +msgid "Unsubscribe" +msgstr "Annulla sottoscrizione" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Sottoscrivi" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "RSS feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Il mio profilo" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Il mio profilo" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Forum Home" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Disconnettiti" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Cerca" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Sei connesso come:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nome utente:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Password: " + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Ricordami" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Amministratore" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderatore" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nuovi argomenti dall'ultima visita" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Info Profilo" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Modifica Profilo" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Benvenuto" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "La tua ultima visita è stata:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Mostra nuove discussioni dall'ultima visita" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Modifica opzioni forum" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Benvenuto Ospite, connettiti o" + +#: wpf.class.php:1928 +msgid "register." +msgstr "registrati." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Benvenuto ospite, scrivere in questo forum richiede" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registrazione." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Mostra/Nascondi Header" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Cerca nei forum" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Pagine:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "Primo" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +msgid "Last" +msgstr "Ultimo" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Post cancellato" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Vedi profilo" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Grassetto" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Corsivo" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Sottolineato" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Barrato" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Codice" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Elenco" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Elemento elenco" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Immagine" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Aggiungi colore Hex " + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Includi YouTube Video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "Includi Google Map" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Smile" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Big Grin" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Sad" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutral" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Mad" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Confused" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Wink" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Surprised" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info Center" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Posts in" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Discussioni aperte da" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Membri" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Ultimi membri:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nuovi argomenti dalla tua ultima visita" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Sommario" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nome:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registrato:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Posizione:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Sito:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Info Biografiche:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Cerca:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Dell'utente" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Età messaggio:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Tra" + +#: wpf.class.php:2467 +msgid "and" +msgstr "e" + +#: wpf.class.php:2467 +msgid "days" +msgstr "giorni" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Click per scegliere i forum dove cercare" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Seleziona tutti" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Inizia la ricerca" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Soggetto" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Rilevanza" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Postato" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Discussione chiusa" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Argomento normale" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Argomento caldo" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Argomento popolare" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Codice di sicurezza:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Inserisci codice di sicurezza: (richiesto)" + +#: wpf.class.php:2685 +msgid "New post in forum:" +msgstr "Nuovi post nel forum:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETTAGLI:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Data:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Contenuto della risposta:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Vedi argomento qui:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Inbox" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Invia messaggio" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Categoria" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Argomento" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Devi specificare un gruppo utenti." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Hai scelto un nome che già esiste nel database, scegline un altro" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Gruppo utenti aggiunto con successo" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Non hai specificato nessun utente da aggiungere:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Devi scegliere un gruppo utente" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Errore" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Nessun utente:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Attenzione" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Utente" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "è già in questo gruppo" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "aggiunto con successo" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Errori:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Avvisi:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Utenti aggiunti:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Gruppi utenti cancellati." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Membro rimosso." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Gestisci Gruppi Utenti" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "aggiungi nuovo" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Cancella" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Aggiungi membri" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Nessun membro nel gruppo" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Skin attivata." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Opzioni Skin" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Ottieni nuove Skin" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "IMPORTANTE: Dalla versione 1.0.03 la cartella skins è spostata in /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Perchè?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Screenshot" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nome" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versione" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Descrizione" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Azione" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "In uso" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Attiva" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Su Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Versione attuale:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum has una missione; 'ESSERE SEMPLICE'! Tratto da WP Forum, è stato grandemente migliorato; supporta pienamente Mingle plugin (di Blair Williams). Un grazie a Eric Hamby per il suo precedente lavoro sullo script del forum." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autore:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Pagine Plugin:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Forum di supporto:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum Skins:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opzioni salvate." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistiche" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Valore" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Numero di post:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Numero di discussioni:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "NUmero di utenti:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Dimensioni totali del DB:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Server DB:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Versione Mingle Forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Opzioni Generali" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "default" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Nome Opzione" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Input Opzione" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Post per pagina:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Argomenti per pagina:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Numero post per Argomento Caldo:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Numero di Post per Argomento Popolare:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Visualizzazione nome utente:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Categoria per Nuovo utente:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Numero Msg per Livello 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Categoria per Utente Livello 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Numero Msg per Livello 2" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Categoria per utente Livello 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Numero Msg per Livello 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:467 +msgid "Notify Admin on new posts:" +msgstr "Notifica Amministratore per i nuovi post:" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "Off" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Mostra modulo per Login al Forum:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "On" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Mostra Avatars nel forum:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Mostra info utente in fondo ai post:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Usa Forum RSS:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "Usa SEO friendly URLs:" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "IMPORTANTE: Lascia questa opzione su OFF se i permalinks sono settati su 'default'" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Registrazione richiesta per postare:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Versione installata:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "Libreria GD non installata" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Usa Captcha per utenti non registrati" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Richiede" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Se 'Registrazione richiesta per postare' è abilitato, lasciaquesto su 'Off'" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Formato data:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Impostazione base data:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Seleziona" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "per formattare la data." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Gruppi cancellati:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Forum cancellati:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Discussioni cancellate:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Post cancellati:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Devi inserire un nome" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Categoria aggiunta" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Devi selezionare una categoria" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Hai scelto un nome del forum che già esiste, scegline un altro" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum aggiunto" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Categorie e Forum" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Modifica" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Aggiungi Forum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "Gruppo spostato giù" + +#: fs-admin/fs-admin.php:837 +msgid "Forum Moved Down" +msgstr "Forum spostato giù" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "Gruppo spostato su" + +#: fs-admin/fs-admin.php:857 +msgid "Forum Moved Up" +msgstr "Forum spostato su" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderatore rimosso" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderatore salvato" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderatore NON rimosso." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Devi selezionare un utente" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderatore globale aggiunto." + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderatore aggiunto" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Gestisci Moderatori" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Attualmente modera" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Aggiorna" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderatore globale: (Utente può moderare ogni forum)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Nessun Moderatore ancora" + +#: fs-admin/fs-admin.php:1014 +msgid "Ads saved successfully" +msgstr "Ads salvati" + +#: fs-admin/fs-admin.php:1019 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum Ads >> Opzioni" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML permesso in tutte le aree ads sotto:" + +#: fs-admin/fs-admin.php:1025 +msgid "Ads Option" +msgstr "Opzioni Ads" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "Abilita area sopra forum" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "valore css" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "Abilita area sotto Forum" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "Abilita area sopra Branding" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "Abilita Area sopra zona Info" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "Abilita Area sopra Breadcrumbs" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "Abilita Area sopra modulo risposta rapida" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "Abilita area sopra primo post" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "Sotto puoi modificare/aggiungere il tuo CSS" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "NOTA: Se non sai a cosa serve questo, lascialo vuoto" + +#: fs-admin/fs-admin.php:1095 +msgid "Save Options" +msgstr "Salva Opzioni" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Aggiungi forum a" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Descrizione" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Salva forum" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Aggiungi categoria" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Salva categoria" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Salva Gruppo utente" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Seleziona Gruppo utente" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Aggiungi utenti" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Devi specificare un nome del Gruppo" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Gruppo aggiornato" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Devi specificare un nome del forum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum aggiornato" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Modifica categoria" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Gruppi utenti:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "I membri dei Gruppi selezionati hanno accesso ai forum in questa categoria:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Non ci sono Gruppi utenti" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Salva Gruppo" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Modifica forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Seleziona utente" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Aggiungi moderatore" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Devi specificare un nome per il Gruppo utenti" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Gruppo utenti aggiornato" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Modifica Gruppo utenti" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Salva Gruppo utenti" + diff --git a/i18n/mingleforum-ja.mo b/i18n/mingleforum-ja.mo new file mode 100644 index 0000000..84c3c14 Binary files /dev/null and b/i18n/mingleforum-ja.mo differ diff --git a/i18n/mingleforum-ja.po b/i18n/mingleforum-ja.po new file mode 100644 index 0000000..86c2b4e --- /dev/null +++ b/i18n/mingleforum-ja.po @@ -0,0 +1,1904 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum v1.0.11\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:36-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-Language: Japanese\n" +"X-Poedit-Country: JAPAN\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" +"X-Poedit-Basepath: ../\n" +"X-Textdomain-Support: yes\n" +"X-Poedit-SearchPath-0: .\n" + +# @ mingleforum +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "フォーラムのフィード" + +# @ mingleforum +#: feed.php:23 +msgid "Forum Topic:" +msgstr "フォーラムのトピック:" + +# @ mingleforum +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "フォーラム" + +# @ mingleforum +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "トピック:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +# @ mingleforum +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "そのようなユーザはいません" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +# @ mingleforum +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "フォーラムオプションを編集" + +# @ mingleforum +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "自分のプロフィールを公開しますか?" + +# @ mingleforum +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "これらのトピックに更新があった場合メールでお知らせします:" + +# @ mingleforum +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "オプションを保存" + +# @ mingleforum +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "不正行為は、私達は何ですか?" + +# @ mingleforum +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "セキュリティコードが一致しません" + +# @ mingleforum +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "エラーが発生しました" + +# @ mingleforum +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "件名を入力してください" + +# @ mingleforum +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "メッセージを入力してください" + +# @ mingleforum +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "フォーラムのトピックを作成:" + +# @ mingleforum +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "フォーラムのトピックに返信:" + +# @ mingleforum +#: wpf-post.php:10 +msgid "Quote from" +msgstr "引用" + +# @ mingleforum +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "に" + +# @ mingleforum +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "投稿に返信" + +# @ mingleforum +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "件名:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +# @ mingleforum +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "メッセージ:" + +# @ mingleforum +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "送信" + +# @ mingleforum +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "投稿の編集" + +# @ mingleforum +#: wpf-post.php:76 +msgid "Save Post" +msgstr "投稿の保存" + +# @ mingleforum +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "新しいトピックを投稿" + +# @ mingleforum +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "申し訳ありません。投稿にアクセスする権限がありません。" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +# @ mingleforum +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "プロフィール" + +# @ mingleforum +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> スキンオプション" + +# @ mingleforum +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "オプション名" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +# @ mingleforum +#: wpf.class.php:174 +msgid "Skins" +msgstr "スキン" + +# @ mingleforum +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "カテゴリとフォーラム" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +# @ mingleforum +#: wpf.class.php:176 +msgid "Moderators" +msgstr "モデレーター" + +# @ mingleforum +#: wpf.class.php:177 +msgid "User Groups" +msgstr "ユーザグループ" + +# @ mingleforum +#: wpf.class.php:178 +msgid "About" +msgstr "アバウト" + +# @ mingleforum +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "フォーラムの最新情報" + +# @ mingleforum +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "by:" + +# @ mingleforum +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "サイドバーに表示するタイトル:" + +# @ mingleforum +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "表示する項目数" + +# @ mingleforum +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "表示するページ:" + +# @ mingleforum +#: wpf.class.php:645 +msgid "seconds." +msgstr "秒。" + +# @ mingleforum +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +# @ mingleforum +#: wpf.class.php:649 +msgid "Version:" +msgstr "バージョン:" + +# @ mingleforum +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "ゲスト" + +# @ mingleforum +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "by" + +# @ mingleforum +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "最新の投稿" + +# @ mingleforum +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "申し訳ありませんが、あなたはこのフォーラムへアクセスできません" + +# @ mingleforum +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "ステータス" + +# @ mingleforum +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "トピックのタイトル" + +# @ mingleforum +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Started by" + +# @ mingleforum +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "返信" + +# @ mingleforum +#: wpf.class.php:722 +msgid "Views" +msgstr "Views" + +# @ mingleforum +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "最新の投稿" + +# @ mingleforum +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "付箋トピックス" + +# @ mingleforum +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "トピックを移動" + +# @ mingleforum +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "トピックを削除" + +# @ mingleforum +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "最終訪問日以降の新しい投稿" + +# @ mingleforum +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "フォーラムのトピックス" + +# @ mingleforum +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "このトピックの更新を、メールでのお知らせしないようにしますか?" + +# @ mingleforum +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "このトピックに更新があったらメールでお知らせしますか?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "" + +# @ mingleforum +#: wpf.class.php:856 +msgid "Author" +msgstr "著者" + +# @ mingleforum +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "投稿:" + +# @ mingleforum +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "返信" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +# @ mingleforum +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "投稿" + +# @ mingleforum +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "に" + +# @ mingleforum +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "引用" + +# @ mingleforum +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "削除" + +# @ mingleforum +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "編集" + +# @ mingleforum +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "トピック:" + +# @ mingleforum +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "投稿:" + +# @ mingleforum +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "新規投稿" + +# @ mingleforum +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "新しい投稿はありません" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +# @ mingleforum +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "まだトピックがありません" + +# @ mingleforum +#: wpf.class.php:1154 +msgid "in" +msgstr "in" + +# @ mingleforum +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Forums RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +# @ mingleforum +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "検索結果" + +# @ mingleforum +#: wpf.class.php:1273 +msgid "Profile" +msgstr "プロフィール" + +# @ mingleforum +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "新規トピック" + +# @ mingleforum +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "モデレーター:" + +# @ mingleforum +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "付箋を元に戻す" + +# @ mingleforum +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "付箋" + +# @ mingleforum +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#, fuzzy +msgid "Re-open" +msgstr "削除" + +# @ mingleforum +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +#, fuzzy +msgid "Close" +msgstr "コード" + +# @ mingleforum +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "返信" + +# @ mingleforum +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "登録" + +# @ mingleforum +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "登録" + +# @ mingleforum +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS feed" + +# @ mingleforum +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS feed" + +# @ mingleforum +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "私のプロフィール" + +# @ mingleforum +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "私のプロフィール" + +# @ mingleforum +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "フォーラムトップ" + +# @ mingleforum +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "ログアウト" + +# @ mingleforum +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "検索" + +# @ mingleforum +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "あなたはログイン中です:" + +# @ mingleforum +#: wpf.class.php:1726 +msgid "Username: " +msgstr "ユーザー名:" + +# @ mingleforum +#: wpf.class.php:1727 +msgid "Password: " +msgstr "パスワード:" + +# @ mingleforum +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "ログイン状態を記憶する" + +# @ mingleforum +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "管理者" + +# @ mingleforum +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "モデレーター" + +# @ mingleforum +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "最終訪問日以降の新しいトピック" + +# @ mingleforum +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "プロフィール情報" + +# @ mingleforum +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "プロフィールを編集" + +# @ mingleforum +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "ようこそ" + +# @ mingleforum +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "最終訪問日:" + +# @ mingleforum +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "最終訪問日以降の新しい投稿を表示" + +# @ mingleforum +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "あなたのフォーラムオプションを編集" + +# @ mingleforum +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "ようこそ、ゲストさん。ログインまたは" + +# @ mingleforum +#: wpf.class.php:1928 +msgid "register." +msgstr "ユーザ登録をしてください。" + +# @ mingleforum +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "ようこそゲストさん。このフォーラムに投稿するには" + +# @ mingleforum +#: wpf.class.php:1933 +msgid "registration." +msgstr "ユーザ登録が必要です。" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "" + +# @ mingleforum +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "フォーラムを検索" + +# @ mingleforum +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "ページ:" + +# @ mingleforum +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "リスト" + +# @ mingleforum +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "リスト" + +# @ mingleforum +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "投稿は削除されました" + +# @ mingleforum +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "プロフィールを表示" + +# @ mingleforum +#: wpf.class.php:2277 +msgid "Bold" +msgstr "太字" + +# @ mingleforum +#: wpf.class.php:2278 +msgid "Italic" +msgstr "斜体" + +# @ mingleforum +#: wpf.class.php:2279 +msgid "Underline" +msgstr "下線" + +# @ mingleforum +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "打消線" + +# @ mingleforum +#: wpf.class.php:2281 +msgid "Code" +msgstr "コード" + +# @ mingleforum +#: wpf.class.php:2283 +msgid "List" +msgstr "リスト" + +# @ mingleforum +#: wpf.class.php:2284 +msgid "List item" +msgstr "リスト項目" + +# @ mingleforum +#: wpf.class.php:2285 +msgid "Link" +msgstr "リンク" + +# @ mingleforum +#: wpf.class.php:2286 +msgid "Image" +msgstr "画像" + +# @ mingleforum +#: wpf.class.php:2287 +msgid "Email" +msgstr "Email" + +# @ mingleforum +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "16進数のカラーを追加" + +# @ mingleforum +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "YouTube動画の埋め込み" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2296 +#, fuzzy +msgid "Smile" +msgstr "Email" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2298 +#, fuzzy +msgid "Sad" +msgstr "and" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2301 +#, fuzzy +msgid "Mad" +msgstr "and" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2304 +#, fuzzy +msgid "Wink" +msgstr "リンク" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "情報センター" + +# @ mingleforum +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Posts in" + +# @ mingleforum +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "トピック作成者" + +# @ mingleforum +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "メンバー" + +# @ mingleforum +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "最新メンバー:" + +# @ mingleforum +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "最終訪問日以降の新しいトピック" + +# @ mingleforum +#: wpf.class.php:2395 +msgid "Summary" +msgstr "要約" + +# @ mingleforum +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "名前:" + +# @ mingleforum +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "登録:" + +# @ mingleforum +#: wpf.class.php:2414 +msgid "Position:" +msgstr "等級:" + +# @ mingleforum +#: wpf.class.php:2417 +msgid "Website:" +msgstr "ウェブサイト:" + +# @ mingleforum +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +# @ mingleforum +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +# @ mingleforum +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +# @ mingleforum +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "生い立ち:" + +# @ mingleforum +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "探しているもの:" + +# @ mingleforum +#: wpf.class.php:2461 +msgid "By user:" +msgstr "By user:" + +# @ mingleforum +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Message Age:" + +# @ mingleforum +#: wpf.class.php:2467 +msgid "Between" +msgstr "Between" + +# @ mingleforum +#: wpf.class.php:2467 +msgid "and" +msgstr "and" + +# @ mingleforum +#: wpf.class.php:2467 +msgid "days" +msgstr "days" + +# @ mingleforum +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "検索するフォーラムをクリックして選択" + +# @ mingleforum +#: wpf.class.php:2495 +msgid "Check all" +msgstr "すべてをチェック" + +# @ mingleforum +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "検索開始" + +# @ mingleforum +#: wpf.class.php:2542 +msgid "Subject" +msgstr "件名" + +# @ mingleforum +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "関連" + +# @ mingleforum +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Posted" + +# @ mingleforum +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "クローズドトピック" + +# @ mingleforum +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "通常のトピック" + +# @ mingleforum +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "ホットトピック" + +# @ mingleforum +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "とてもホットなトピック" + +# @ mingleforum +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "セキュリティコード:" + +# @ mingleforum +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "セキュリティコード:" + +# @ mingleforum +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "フォーラムトピックの新しい返信:" + +# @ mingleforum +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "詳細:" + +# @ mingleforum +#: wpf.class.php:2689 +msgid "Date:" +msgstr "日付:" + +# @ mingleforum +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "返信内容:" + +# @ mingleforum +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "トピックを表示:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +# @ mingleforum +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "メッセージを送る" + +# @ mingleforum +#: wpf_define.php:33 +msgid "Category" +msgstr "カテゴリ" + +# @ mingleforum +#: wpf_define.php:35 +msgid "Topic" +msgstr "トピック" + +# @ mingleforum +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "ユーザグループの名前を指定してください" + +# @ mingleforum +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "その名前は存在します。別のものを指定して下さい。" + +# @ mingleforum +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "ユーザグループが追加されました。" + +# @ mingleforum +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "任意のユーザを指定してください:" + +# @ mingleforum +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "ユーザグループを選択してください" + +# @ mingleforum +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "エラー" + +# @ mingleforum +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "ユーザがありません:" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "警告" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "ユーザ" + +# @ mingleforum +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "既にこのグループにあります" + +# @ mingleforum +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "エラー:" + +# @ mingleforum +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "警告:" + +# @ mingleforum +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "ユーザーを追加しました:" + +# @ mingleforum +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "ユーザグループが削除されました。" + +# @ mingleforum +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "メンバーを削除しました。" + +# @ mingleforum +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> ユーザーグループの管理" + +# @ mingleforum +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "新しく追加" + +# @ mingleforum +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "削除" + +# @ mingleforum +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "メンバー追加" + +# @ mingleforum +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "このグループにはメンバーがいません" + +# @ mingleforum +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "スキンを適用しました。" + +# @ mingleforum +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> スキンオプション" + +# @ mingleforum +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "更にスキンを入手" + +# @ mingleforum +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "重要:バージョン1.0.03 より、スキンのディレクトリが wp-content/mingle-forum-skins/ に移動しました" + +# @ mingleforum +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "変更した理由は?" + +# @ mingleforum +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "スクリーンショット" + +# @ mingleforum +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "名前" + +# @ mingleforum +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "バージョン" + +# @ mingleforum +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "説明" + +# @ mingleforum +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "アクション" + +# @ mingleforum +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "使用中" + +# @ mingleforum +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "アクティブ" + +# @ mingleforum +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Mingle Forum について" + +# @ mingleforum +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "現在のバージョン:" + +# @ mingleforum +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum は、「シンプルなままに!」という1つの使命を持っています。これは、WP Forum から引き継がれ、大幅に改善されました。今ではMingle plugin (by Blair Williams)との完全な統合、またはそれなしでの統合をサポートします。また、私は Eric Hamby の作成したフォーラムスクリプトに非常に感謝しています。" + +# @ mingleforum +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "著者:" + +# @ mingleforum +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "プラグインのページ:" + +# @ mingleforum +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "サポートフォーラム:" + +# @ mingleforum +#: fs-admin/fs-admin.php:307 +#, fuzzy +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum " + +# @ mingleforum +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "オプションは保存されました。" + +# @ mingleforum +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +# @ mingleforum +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "統計" + +# @ mingleforum +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "値" + +# @ mingleforum +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "投稿数:" + +# @ mingleforum +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "スレッド数:" + +# @ mingleforum +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "ユーザー数:" + +# @ mingleforum +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "全てのデータベースのサイズ:" + +# @ mingleforum +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "データベースサーバー:" + +# @ mingleforum +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum のバージョン:" + +# @ mingleforum +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> 一般的なオプション" + +# @ mingleforum +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "デフォルト" + +# @ mingleforum +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "オプション名" + +# @ mingleforum +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "オプション入力" + +# @ mingleforum +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "1ページあたりの投稿:" + +# @ mingleforum +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "1ページあたりのスレッド:" + +# @ mingleforum +#: fs-admin/fs-admin.php:418 +#, fuzzy +msgid "Number of posts for Hot Topic:" +msgstr "ホットトピックの投稿数:" + +# @ mingleforum +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "とてもホットなトピックの投稿数:" + +# @ mingleforum +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "ユーザー名の表示:" + +# @ mingleforum +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "新規ユーザーの名称:" + +# @ mingleforum +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "ユーザーレベル1の名称:" + +# @ mingleforum +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "ユーザーレベル1のカウント:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "ユーザレベル2の名称:" + +# @ mingleforum +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "ユーザレベル2のカウント:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "ユーザーレベル3の名称:" + +# @ mingleforum +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "ユーザーレベル3のカウント:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "新しい投稿はありません" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "フォーラムにログインフォームを表示:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "アバターをフォーラムで表示:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Forums RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "投稿するにはユーザ登録を必須とする:" + +# @ mingleforum +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "インストール済みのバージョン:" + +# @ mingleforum +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GDライブラリがインストールされていません" + +# @ mingleforum +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "未登録ユーザの登録にはキャプチャを使用する:" + +# @ mingleforum +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "必須" + +# @ mingleforum +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "投稿するにはユーザ登録を必須とする場合は、こちらをオフにして下さい" + +# @ mingleforum +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "日付フォーマット:" + +# @ mingleforum +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "デフォルトの日付:" + +# @ mingleforum +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "チェック" + +# @ mingleforum +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "日付の書式設定" + +# @ mingleforum +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "グループは削除されました:" + +# @ mingleforum +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "フォーラムは削除されました:" + +# @ mingleforum +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "スレッドは削除されました:" + +# @ mingleforum +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "投稿は削除されました:" + +# @ mingleforum +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "名前を入力してください" + +# @ mingleforum +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "カテゴリーは追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "カテゴリを選択してください" + +# @ mingleforum +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "その名前は存在します。別のものを指定して下さい。" + +# @ mingleforum +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "フォーラムは追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> カテゴリとフォーラム" + +# @ mingleforum +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "変更" + +# @ mingleforum +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "フォーラムを追加" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "フォーラムのフィード" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "フォーラムのフィード" + +# @ mingleforum +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "モデレーターは解除されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "モデレーターは保存されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "モデレーターを解除できませんでした。" + +# @ mingleforum +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "ユーザーを選択してください" + +# @ mingleforum +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "グローバルモデレーターが追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "モデレーターが追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> モデレーター管理" + +# @ mingleforum +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "現在のモデレーター" + +# @ mingleforum +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "更新" + +# @ mingleforum +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "グローバルモデレーター:すべてのフォーラムを管理することができます" + +# @ mingleforum +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "モデレーターがいません" + +# @ mingleforum +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "追加されました" + +# @ mingleforum +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> スキンオプション" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "オプション名" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +# @ mingleforum +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "オプションを保存" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "フォーラムに追加" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "概要:" + +# @ mingleforum +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "フォーラムを保存" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "カテゴリーの編集" + +# @ mingleforum +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "カテゴリーの編集" + +# @ mingleforum +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "ユーザグループを保存" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "ユーザーグループを選択" + +# @ mingleforum +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "ユーザを追加" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "グループ名を指定してください" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "グループが更新されました" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "フォーラム名を指定してください" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "フォーラムが更新されました" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "カテゴリーの編集" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "ユーザグループ:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "チェックしたユーザグループのメンバーは、このカテゴリ内のフォーラムへアクセスできます:" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "ユーザグループがありません" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "グループを保存" + +# @ mingleforum +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "フォーラムを編集" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "ユーザを選択" + +# @ mingleforum +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "モデレーターを追加" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "ユーザグループの名前を指定してください" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "ユーザグループが更新されました" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "ユーザーグループを編集" + +# @ mingleforum +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "ユーザグループを保存" + diff --git a/i18n/mingleforum-lv.mo b/i18n/mingleforum-lv.mo new file mode 100644 index 0000000..9812407 Binary files /dev/null and b/i18n/mingleforum-lv.mo differ diff --git a/i18n/mingleforum-lv.po b/i18n/mingleforum-lv.po new file mode 100644 index 0000000..e6896df --- /dev/null +++ b/i18n/mingleforum-lv.po @@ -0,0 +1,1593 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: Lapuvieta.lv \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-Language: Latvian\n" +"X-Poedit-Country: LATVIA\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Foruma pavediens" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Foruma saruna:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forums" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Saruna:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Nav šāda lietotāja" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Rediģēt foruma optcijas" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Ļaut citiem skatīt manu profilu" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Par sekojošām sarunām saņemsi e-pasta paziņojumus:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Saglabāt opcijas" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Vai mēs krāpjamies?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Drošības kodi neatbilst" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Notika kļuda" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Tev jaieraksta temats" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Tev jāieraksta ziņojuma teksts" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "foruma izveidota saruna:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "saņemta atbilde foruma sarunai:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citāts no" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "ieslēgts" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Atbilde uz viedokli" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Temats:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Ziņojums:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Nosūtīt" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Rediģēt viedokli" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Saglabāt viedokli" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Ievietot jaunu Sarunu" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Aitvaino, Tev nav tiesību izteikt viedokli." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profils" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle forums >> Ādiņu iestatījumi" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Iestatījuma nosaukums" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Ādiņas" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategorijas un forumi" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderatori" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Lietotāji un grupas" + +#: wpf.class.php:178 +msgid "About" +msgstr "Par" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Foruma pēdējā aktivitāte" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "autors:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Virsraksts, ko rādīt sānu joslā:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Cik vienumus vēlaties rādīt?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Lapa ielādēta: " + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekundēs" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forums" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versija:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Viesis" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "no" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Pēdējo viedoki izteica" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Piedod, bet Tev nav tiesības piekļūt šīm forumam" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Statuss" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Sarunas tēma" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Sarunu uzsāka" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Atbildes" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Skatīts" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Pēdējais viedoklis" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Lipīgā saruna" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Pārvietot sarunu" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Dzēst sarunu" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Jaunu viedokļu skaits kopš pēdējā apmeklējuma" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Foruma sarunas" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Izņemt šo sarunu no Taviem e-pasta ziņojumiem" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Pievienot šo sarunu e-pasta ziņojumiem" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "SARUNA SLĒGTA" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autors" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Sarunas:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Ātrā atbilde" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Nosūtīt ātro atbildi" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Viedoklis" + +#: wpf.class.php:939 +msgid "on:" +msgstr "uz:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Citāts" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Izņemt" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Labot" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Sarunas:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Viedokļi:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Jauni viedokļi" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Jaunu viedokļu nav" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Sarunu nav" + +#: wpf.class.php:1154 +msgid "in" +msgstr "iekš" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Foruma RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Meklēšanas rezultāti" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profils" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Jauna saruna" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatori:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Atcelt lipīgumu" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Lipīgs" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Atvērt atkārtoti" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Aizvērt" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Atbildēt" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Parakstīties" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Parakstīties" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS plūsma" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS plūsma" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Mans profils" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Mans profils" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Foruma sākums" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Atteikties" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Meklēt" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Esi pieteicies kā:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Lietotājvārds:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Parole:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Atceries mani" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrators" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderators" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Jaunas sarunas kopš pēdējā apmeklējuma" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Profila informācija" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Rediģēt profilu" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Esiet sveicināts" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Pēdējo reizi šeit biji:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Rādīt jaunās sarunas kopš pēdējā apmeklējuma" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Labot foruma iestatījumus" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Sveicināts, Viesi! Lūdzu piesakies vai" + +#: wpf.class.php:1928 +msgid "register." +msgstr "reģistrējies." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Sveicināts Viesi! Lai izteiktos šajā forumā ir nepieciešams" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "reģistrēties." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Rādīt/Slēpt galveni" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Meklēt forumos" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Lapas:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Saraksts" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Saraksts" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Viedokļi ir dzēsti" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Skatīt profilu" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Treknraksts" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Slīpraksts" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Pasvītrots" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Pārsvītrots" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kods" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Saraksts" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Saraksta vienums" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Saite" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Attēls" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-pasts" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Pievienot krāsu heksadecimālā formā" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Iegult YouTube video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Smaids" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Ņirdziens" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Bēdīgs" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neitrāls" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Rādīt mēli" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Traks" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Apmulsis" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Bolīties" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Piemiegt" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Pārsteigts" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Vēsais" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Informācijas centrs" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Viedokļi iekš" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Sarunas, kuras veidojis" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Dalībnieki" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Pēdējais dalībnieks" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Jaunas sarunas kopš pēdejās vizītes" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Kopsavilkums" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Vārds:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Reģistrēts:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Stāvoklis:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Mājas lapa:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo!:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Biogrāfiska informācija:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Meklēt:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Lietotāja:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Ziņojuma vecums:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Starp" + +#: wpf.class.php:2467 +msgid "and" +msgstr "un" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dienas" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Klikšķini lai izvēlētos forumus, kuros ir jāveic meklēšana" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Atzīmet visus" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Sākt meklēšanu" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Temats" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Atbilstība" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Iesūtīts" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Slēgt sarunu" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normāla saruna" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Karsta saruna" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Ļoti karsta saruna" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Drošības kods:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Ievadīt drošības kodu: (obligāti)" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Jauna atbilde foruma sarunā:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETAĻAS:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Datums:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Atbildes saturs:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Skatīt sarunu šeit:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Iesūtne" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Sūtīt ziņojumu" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategorija" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Saruna" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Ir jānorāda lietotāja grupas vārds." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Esi izvēlējies vārdu, kas jau ir reģistrērs datu bāzē. Lūdzu izvēlies citu." + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Lietotāju grupa sekmīgi pievienota" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Neesi norādijis vienu lietotāju, ko pievienot:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Tev ir jaizvelās lietotāja grupa" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Kļūda" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Tāds lietotājs neeksistē:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Brīdinājums" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Lietotājs" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "jau ir šajā grupā" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "pievienots sekmīgi" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Kļūdas:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Brīdinājumi:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Lietotaji pievienoti:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Lietotāju grupa(s) sekmīgi izdzēstas." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Dalībnieks sekmīgi izdzēsts." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle forums >> Vadīt lietotāju grupas" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "pievienot jaunu" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Dzēst" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Pievienot dalībniekus" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Šajā grupā nav neviena dalībnieka" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Ādiņa sekmīgi aktivizēta." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle forums >> Ādiņu iestatījumi" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Iegūt vairāk ādiņas" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "SVARĪGI: Sākot ar versiju 1.0.03 ādiņu direktorija tika pārvietota uz /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Kāpēc Tu to mainīji?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Ekrānšāviņš" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nosaukums" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versija" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Apraksts" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Darbība" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Tiek lietots" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivizēt" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Par Migle forumu" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Patreizējā versija:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle forumam ir viena vienkārša misija: 'KEEP IT SIMPLE!'. Tas tika pārņemts no WP Forum un būtiski uzlabots. Tagad tas pilnibā atbalsta integrāciju ar vai bez Migle spraudni (Blair Williams). Tāpat vēlos pateikties Eric Hamby par viņa iepriekšējo darbu pie foruma skripta." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autors:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Spraudņa mājas lapa:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Atbalsta forums:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle foruma ādiņas:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Iestatījumi sekmīgi saglabāti." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forums" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistika" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Vērtība" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Viedokļu skaits:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Pavedienu skaits:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Lietotāju skaits:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Kopējais datubāzes izmērs:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Datubāzes serveris:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle forum versija:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle forums >> Vispārīgie iestatījumi" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "noklusetais" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Iestatījuma nosaukums" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Iestatījuma ievade" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Viedokļu skaits lapā:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Sarunu skaits lapā:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Viedokļu skaits karstajās sarunās:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Viedokļu skaits ļoti karstajās sarunās:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Lietotājvārds, ko rādīt:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Jauna lietotāja virsraksts:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Pirmā līmeņa lietotāja nosaukums:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Pirmā līmeņa lietotāja skaits:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Otrā līmeņa lietotāja nosaukums:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Otrā līmeņa lietotāja skaits:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Trešā līmeņa lietotāja nosaukums:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Trešā līmeņa lietotāja skaits:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Jaunu viedokļu nav" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Rādīt foruma ienākšanas formu:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Rādīt forumā avatarus:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Rādīt lietotāja biogrāfiju viedokļu apakšā:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Lietot foruma RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Lai ievietotu viedokli nepieciešama reģistrācija:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Instaletā versija:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "Nav instalēta GD bibliotēka" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Nereģistrētiem lietotājiem lietot Captcha:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Nepieciešams" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Ja ir iespējots 'Lai ievietotu viedokli nepieciešama reģistrācija', šo atstājiet izslēgtu" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Datuma formāts:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Noklusetais datums:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Atzīmet" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "datuma formatēsanai" + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Grupas izdzēstas:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Forumi izdzēsti:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Pavedieni izdzēsti:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Viedokļi izdzēsti:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Tev ir jāievada vārds" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategorija pievienota sekmīgi" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Ir jāizvēlās kategorija" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Tu esi izvelējies foruma nosaukumu, kas jau eksistē šajā grupā. Izvēlies citu." + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forums pievienots sekmīgi" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle forums >> Kategorijas un forumi" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Mainīt" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Pievienot forumu" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Foruma pavediens" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Foruma pavediens" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderators sekmīgi izdzēsts." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderators sekmīgi saglabāts." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderators NAV izdzēsts." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Tev jāizvēlās lietotājs" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Globālais moderaotrs pievienots sekmigi" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderators sekmīgi pievienots" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle forums >> Pārvaldīt moderatorus" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Patreiz tiek moderēts" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Atjaunot" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Globālais moderators: (lietotājs var moderēt visus forumus)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Netiek moderēts" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "pievienots sekmīgi" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle forums >> Ādiņu iestatījumi" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Darbība" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Saglabāt opcijas" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Pievienot forumu" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Apraksts:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Saglabāt forumu" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Rediģēt kategoriju" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Rediģēt kategoriju" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Saglabāt lietotāju grupu" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Izvēlēties lietotaju grupu" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Pievienot lietotājus" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Tev jānorāda grupas nosaukums" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grupa atjaunota sekmīgi" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Tev jānorāda foruma nosaukums" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forums atjaunots sekmīgi" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Rediģēt kategoriju" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Lietotāja grupas:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Atzīmeto grupu dalībniekiem ir pieeja forumiem šajā kategorijā:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Nav nevienas lietotāju grupas" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Saglabāt grupu" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Rediģēt forumu" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Izvēlēties lietotāju" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Pievienot moderatoru" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Tev jānorāda lietotāju grupas nosaukums" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Lietotāju grupa sekmīgi atjaunota" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Labot lietotāju grupu" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Saglabāt lietotāju grupu" + +#~ msgid "Remove this post?" +#~ msgstr "Izvākt šo viedokli?" + +#~ msgid "General Options" +#~ msgstr "Vispārīgie iestatījumi" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorijas un forumi" diff --git a/i18n/mingleforum-nb_NO.mo b/i18n/mingleforum-nb_NO.mo new file mode 100644 index 0000000..ccc700b Binary files /dev/null and b/i18n/mingleforum-nb_NO.mo differ diff --git a/i18n/mingleforum-nb_NO.po b/i18n/mingleforum-nb_NO.po new file mode 100644 index 0000000..d3c16a2 --- /dev/null +++ b/i18n/mingleforum-nb_NO.po @@ -0,0 +1,1577 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: 2011-04-15 16:05-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\fs-admin\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Forum emne" + +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "" + +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "Emne:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Brukeren finnes ikke" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Rediger foruminnstillinger" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Vis profilen min for andre brukere?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Du har fått e-post påminnelser om disse emnene" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "Lagre innstillinger" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "Prøver du å jukse?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Sikkerhetskoden stemmer ikke" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "Det oppsto en feil" + +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "Du må skrive inn et emne" + +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "Du må skrive inn noe" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "Lagde forumemnet:" + +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "Svarte på forumemnet:" + +#: wpf-post.php:10 +#, fuzzy +msgid "Quote from" +msgstr "Sitat fra" + +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr "den" + +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "Send svar" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Emne:" + +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Innlegg:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Bilde" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Send inn" + +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "Rediger innlegg" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Lagre innlegg" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Legg ut nytt emne" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Beklager, du har ikke anledning til å publisere innlegg" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "Ny forumbruker" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "Forumbruker" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "Erfaren forumbruker" + +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "Proffesjonell forumbruker!" + +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum - Innstillinger" + +#: wpf.class.php:173 +msgid "Options" +msgstr "Innstillinger" + +#: wpf.class.php:174 +msgid "Ads" +msgstr "Reklame" + +#: wpf.class.php:175 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:176 +msgid "Forum Structure - Categories & Forums" +msgstr "Forumstruktur - Kategorier og Forum" + +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "Forumstruktur" + +#: wpf.class.php:177 +msgid "Moderators" +msgstr "Moderatorer" + +#: wpf.class.php:178 +msgid "User Groups" +msgstr "Brukergrupper" + +#: wpf.class.php:179 +msgid "About" +msgstr "Om" + +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "Seneste aktivitet på forumet" + +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "av:" + +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "Tittel i sidebar:" + +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "Hvor mange enheter ønsker du å vise?" + +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "Siden ble lastet på:" + +#: wpf.class.php:646 +msgid "seconds." +msgstr "sekunder." + +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:650 +msgid "Version:" +msgstr "Versjon:" + +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "Gjest" + +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "av" + +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "Siste innlegg av" + +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "Beklager, du har ikke tilgang til dette forumet" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "Nivå" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "Emnetittel" + +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "Startet av" + +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "Svar" + +#: wpf.class.php:724 +msgid "Views" +msgstr "Visninger" + +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "Siste innlegg" + +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "Klebrige innlegg" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "Flytt emne" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "Slett emne" + +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "Nye innlegg siden forrige besøk" + +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "Forum emner" + +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "Fjerne dette emnet fra dine e-post påminnelser?" + +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "Legge dette emnet til i dine e-post påminnelser?" + +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "EMNET ER STENGT" + +#: wpf.class.php:858 +msgid "Author" +msgstr "Redaktør" + +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "Innlegg:" + +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "Raskt svar" + +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "Send inn raskt svar" + +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "Innlegg" + +#: wpf.class.php:941 +msgid "on:" +msgstr "på:" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "Sitat" + +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "Fjern" + +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "Rediger" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "Emner:" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "Innlegg:" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "Nye innlegg" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "Ingen nye innlegg" + +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "Marker alt som er lest" + +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "Ingen emner foreløpig" + +#: wpf.class.php:1156 +msgid "in" +msgstr "i" + +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "Forum RSS" + +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "Er du sikker på at du vil fjerne dette?" + +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "Søkeresultater" + +#: wpf.class.php:1275 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "Nytt emne" + +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "Moderatorer:" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "Gjør om klebrig" + +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "Klebrig" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "Åpne igjen" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "Lukk" + +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "Svar" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "Avslutt abbonnement" + +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "Abbonner" + +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "" + +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "Min profil" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "Min profil" + +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "Forum hovedside" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "Logg ut" + +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "Søk" + +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "Du er logget inn som:" + +#: wpf.class.php:1728 +msgid "Username: " +msgstr "Brukernavn:" + +#: wpf.class.php:1729 +msgid "Password: " +msgstr "Passord" + +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "Husk meg" + +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "" + +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "" + +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "Nye emner siden forrige besøk" + +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "Profilinformasjon" + +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "Rediger profil" + +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "Velkommen" + +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "Du var her sist:" + +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "Vis nye emner siden forrige besøk" + +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "Rediger dine foruminnstillinger" + +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "Velkommen gjest. Vennligst logg inn eller" + +#: wpf.class.php:1930 +msgid "register." +msgstr " registrer deg." + +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Velkommen gjest. innlegg på dette forumet forutsetter at du" + +#: wpf.class.php:1935 +msgid "registration." +msgstr "registrerer deg." + +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "Vis/skjul toppen" + +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "Søk i forumet" + +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "Sider:" + +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "Første" + +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "Siste" + +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "Innlegget er slettet" + +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Vis profilen" + +#: wpf.class.php:2279 +msgid "Bold" +msgstr "" + +#: wpf.class.php:2280 +msgid "Italic" +msgstr "" + +#: wpf.class.php:2281 +msgid "Underline" +msgstr "" + +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "" + +#: wpf.class.php:2283 +msgid "Code" +msgstr "" + +#: wpf.class.php:2285 +msgid "List" +msgstr "" + +#: wpf.class.php:2286 +msgid "List item" +msgstr "" + +#: wpf.class.php:2287 +msgid "Link" +msgstr "Lenke" + +#: wpf.class.php:2288 +msgid "Image" +msgstr "Bilde" + +#: wpf.class.php:2289 +msgid "Email" +msgstr "E-post" + +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "Legg inn fargekode" + +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "Legg inn YouTube-video" + +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "Legg inn Googlekart" + +#: wpf.class.php:2298 +msgid "Smile" +msgstr "Smil" + +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "Stort flir" + +#: wpf.class.php:2300 +msgid "Sad" +msgstr "Trist" + +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "Nøytral" + +#: wpf.class.php:2302 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2303 +msgid "Mad" +msgstr "Gal" + +#: wpf.class.php:2304 +msgid "Confused" +msgstr "Forvirret" + +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2306 +msgid "Wink" +msgstr "Blunk" + +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "Overrasket" + +#: wpf.class.php:2308 +msgid "Cool" +msgstr "Kjølig" + +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "Informasjon" + +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "Innlegg inn" + +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "Emne laget av" + +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Medlemmer" + +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "Siste" + +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "Nye emner siden ditt forrige besøk" + +#: wpf.class.php:2397 +msgid "Summary" +msgstr "Oppsummering" + +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Navn:" + +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "Registrert:" + +#: wpf.class.php:2416 +msgid "Position:" +msgstr "Posisjon:" + +#: wpf.class.php:2419 +msgid "Website:" +msgstr "Nettside:" + +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "" + +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "" + +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "" + +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "Biografisk informason:" + +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "Søk etter:" + +#: wpf.class.php:2463 +msgid "By user:" +msgstr "Av bruker:" + +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "Innleggets alder:" + +#: wpf.class.php:2469 +msgid "Between" +msgstr "Mellom" + +#: wpf.class.php:2469 +msgid "and" +msgstr "og" + +#: wpf.class.php:2469 +msgid "days" +msgstr "dager" + +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "Klikk for å velge forum å søke i" + +#: wpf.class.php:2497 +msgid "Check all" +msgstr "Krys av alle" + +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "Start søk" + +#: wpf.class.php:2544 +msgid "Subject" +msgstr "Emne" + +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "Relevans" + +#: wpf.class.php:2547 +msgid "Posted" +msgstr "Publisert" + +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "Stengt emne" + +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "Normaltemperert emne" + +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "Hett emne" + +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "Gødende emne" + +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "Sikkerhetskode:" + +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "Skriv inn sikkerhetskode (obligatorisk)" + +#: wpf.class.php:2687 +msgid "New post in forum:" +msgstr "Nye innlegg i forumet:" + +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "DETALJER:" + +#: wpf.class.php:2691 +msgid "Date:" +msgstr "Dato:" + +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "Innholdet i svaret:" + +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "Se emnet her:" + +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "Innboks" + +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "Send melding" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategori" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Emne" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Du må skrive inn navnet på brukergruppen" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Du har valgt et navnt som allerede er i bruk. Vennligst velg et annet navn." + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Brukergruppen ble lagt til" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Du har ikke bestemt hvilke brukere du skal legge til:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Du må velge en brukergruppe" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Feil" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Brukeren finnes ikke" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Advarsel" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Bruker" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "er allerede i gruppen" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "ble lagt til" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Feil:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Advarsler:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Ny bruker:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Brukergruppen ble slettet" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Medlemmet ble fjernet" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "Legg til ny" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "Slett" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Legg til medlemmer" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Denne gruppen har ingen medlemmer" + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "" + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "" + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Skjermdump" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Navn" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "" + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Forfatter:" + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "" + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "" + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "" + +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "" + +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "" + +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "" + +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "" + +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "" + +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "" + +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "" + +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "" + +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "" + +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "" + +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "" + +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "" + +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "" + +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "" + +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "" + +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "" + +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "" + +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "" + +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "" + +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "" + +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "" + +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "" + +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "" + +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "" + +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "" + +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "" + +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "" + +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "" + +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "" + +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "" + +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "" + +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "" + +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1105 +msgid "Save Options" +msgstr "" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Rediger brukergruppe" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Lagre brukergruppe" + diff --git a/i18n/mingleforum-nl_NL.mo b/i18n/mingleforum-nl_NL.mo new file mode 100644 index 0000000..6abd10e Binary files /dev/null and b/i18n/mingleforum-nl_NL.mo differ diff --git a/i18n/mingleforum-nl_NL.po b/i18n/mingleforum-nl_NL.po new file mode 100644 index 0000000..db61edd --- /dev/null +++ b/i18n/mingleforum-nl_NL.po @@ -0,0 +1,1804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Forum Topic:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Onderwerp:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Geen gebruiker" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Edit forum opties" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Laat anderen mijn profiel te bekijken?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Je hebt e-mail notificaties voor de volgende onderwerpen:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Sla de opties op" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Ben je aan het valsspelen?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Beveiligingscode komt niet overeen" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Er is een fout opgetreden" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "U moet een onderwerp invullen" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Je moet een bericht invoeren" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "heet het volgende topic gemaakt:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "heeft geantwoord op het forum topic:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Quote uit" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "op" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Reageer" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Onderwerp:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Bericht:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Posten" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Bericht bewerken" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Bewaar Post" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Plaats een nieuw onderwerp" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Sorry. Je hebt geen toestemming om een bericht te posten." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profiel" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum>> Skin opties" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Naam van de optie" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Categorieën en forums" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderators" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "User Groups" + +#: wpf.class.php:178 +msgid "About" +msgstr "Over" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Forums Laatste Activiteit" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "door:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Titels te weergeven in de zijbalk:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Hoeveel stuks wilt u weergeven?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Pagina geladen in:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "seconden." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versie:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Gast" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "door" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Laatste bericht door" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Sorry, maar u heeft geen toegang tot dit forum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Topic titel" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Gestart door" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Reacties" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Aantal keren bekeken" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Laatste bericht" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Sticky Onderwerpen" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Verplaats Onderwerp" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Onderwerp verwijderen" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nieuwe berichten sinds je laatste bezoek" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Onderwerpen van het Forum" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Verwijder dit onderwerp van uw e-mailnotificaties?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Voeg dit onderwerp toe aan uw e-mailnotificaties?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Auteur" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Berichten:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Snel reageren:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "Snel reageren:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "op" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Quote" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Verwijderen" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Edit" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Onderwerpen:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Berichten:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nieuwe berichten" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Geen nieuwe berichten" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Nog geen onderwerpen" + +#: wpf.class.php:1154 +msgid "in" +msgstr "in" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Forums RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Zoekresultaten" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profiel" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nieuw onderwerp" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderators:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Niet meer Sticky" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Sticky" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#, fuzzy +msgid "Re-open" +msgstr "Verwijderen" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +#, fuzzy +msgid "Close" +msgstr "Code" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Antwoord" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Abonneren" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Abonneren" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS-feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS-feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Mijn profiel" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Mijn Profiel" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Forum Home" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Log uit" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Zoeken" + +#: wpf.class.php:1720 +#, fuzzy +msgid "You are logged in as:" +msgstr "Pagina geladen in:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Gebruikersnaam:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Wachtwoord:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Onthoud me" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Beheerder" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nieuwe onderwerpen sinds laatste bezoek" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Profiel Info" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Profiel bewerken" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Welkom" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Je laatste bezoek was:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Toon nieuwe onderwerpen sinds uw laatste bezoek" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Bewerk je forum opties" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Welkom Gast, gelieve in te loggen of" + +#: wpf.class.php:1928 +msgid "register." +msgstr "register." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Welkom Gast, posten in dit forum vereist" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registratie." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Zoeken in forums" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Pagina's:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Lijst" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Lijst" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Post verwijderd" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Bekijk profiel" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Vet" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Cursief" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Onderstrepen" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Doorgehaald" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Code" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lijst" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Lijst item" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Afbeelding" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Voeg Hex Color in" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Voeg een YouTube video in" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +#, fuzzy +msgid "Smile" +msgstr "E-mail" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +#, fuzzy +msgid "Sad" +msgstr "en" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +#, fuzzy +msgid "Mad" +msgstr "en" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +#, fuzzy +msgid "Wink" +msgstr "Link" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info Center" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Posts in" +msgstr "Berichten:" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Topics Made by" +msgstr "Gemaakt door" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Leden" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Nieuwste lid:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nieuwe onderwerpen sinds je laatste bezoek" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Overzicht" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Naam:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Geregistreerd:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Functie:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Biografie:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Zoeken naar:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Door gebruiker:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Bericht leeftijd:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Tussen" + +#: wpf.class.php:2467 +msgid "and" +msgstr "en" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dagen" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Klik hier om een forum te selecteren om het te doorzoeken" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Controleer alle" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Zoekopdracht starten" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Onderwerp" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevantie" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Geplaatst" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Gesloten onderwerp" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normaal topic" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Hot topic" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Zeer populair topic" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Beveiligingscode:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Beveiligingscode:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nieuwe reactie op onderwerp:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "" + +#: wpf.class.php:2689 +#, fuzzy +msgid "Date:" +msgstr "Naam:" + +#: wpf.class.php:2690 +#, fuzzy +msgid "Reply Content:" +msgstr "Inhoud van bericht" + +#: wpf.class.php:2691 +#, fuzzy +msgid "View Topic Here:" +msgstr "Nieuw onderwerp" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Inbox" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Stuur Bericht" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Categorie" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Onderwerp" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Je moet een naam opgeven voor deze gebruikersgroep." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "U hebt gekozen voor een naam die al bestaat in de database, gelieve een andere te kiezen." + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "User Group toegevoegd." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Je hebt niet vermeld welke gebruiker je wilt toevoegen" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Je moet een gebruikersgroep kiezen" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Fout" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Geen gebruiker:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Waarschuwing" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Gebruiker" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "is al in deze groep" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "succesvol toegevoegd" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Fouten:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Waarschuwingen:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Gebruikers toegevoegd:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "User Group (s) met succes verwijderd." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Lid succesvol verwijderd." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum>> Beheer gebruikersgroepen" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "toevoegen" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Verwijderen" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Leden toevoegen" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Geen leden in deze groep" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Skin succesvol geactiveerd." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum>> Skin opties" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Meer skins" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Screenshot" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Naam" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versie" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Beschrijving" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Actie" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "In gebruik" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Activeren" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Over Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Huidige versie:" + +#: fs-admin/fs-admin.php:302 +#, fuzzy +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum heeft een eenvoudige missie; naar 'Keep it simple! \" Het was overgenomen uit WP Forum en is verbeterd ten zeerste. Het is nu volledig achter de integratie met de Mingle plugin door Blair Williams. Ook wil ik de jongens overgenomen op de VASTHTML geven een grote dank voor hun werk op WP Forum. Als u behoefte heeft aan een groot thema ze opzoeken!" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Auteur:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Plugin Pagina:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Support Forum:" + +#: fs-admin/fs-admin.php:307 +#, fuzzy +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opties succesvol opgeslagen." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistisch" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Waarde" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Aantal berichten:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Aantal threads:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Aantal gebruikers:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Totale omvang van databases:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Database-server:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum versie:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum>> Algemeen Opties" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "verzuim" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Naam van de optie" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Optie Input" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Berichten per pagina:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Onderwerpen per pagina:" + +#: fs-admin/fs-admin.php:418 +#, fuzzy +msgid "Number of posts for Hot Topic:" +msgstr "Aantal berichten voor Hot Topic:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Aantal berichten voor een zeer populair topic:" + +#: fs-admin/fs-admin.php:426 +#, fuzzy +msgid "Username Display:" +msgstr "Gebruikersnaam:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Titel nieuwe gebruiker:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "User Level 1 Titel:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "User Level 1 Count:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "User Level 2 Titel:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "User Level 2 Count:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "User Level 3 Titel:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "User Level 3 Count:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Geen nieuwe berichten" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Toon Avatars in het forum:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Forums RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Inschrijven verplicht om te posten:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Geïnstalleerde versie:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library is niet geïnstalleerd" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Gebruik Captcha voor niet geregistreerde gebruikers:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Vereist" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Datum formaat:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Standaard datum:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Controleren" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "voor datum opmaak." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Groepen verwijdert:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Forums verwijdert:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Onderwerpen verwijdert:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Berichten verwijdert:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "U moet een naam opgeven" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Categorie succesvol toegevoegd" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "U moet een categorie selecteren" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "U hebt gekozen voor een forum naam die al bestaat in deze groep, gelieve een andere te kiezen" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum succesvol toegevoegd" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum>> categorieën en forums" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Wijzigen" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Voeg forum toe" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderator succesvol verwijderd." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderator succesvol opgeslagen." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderator niet verwijderd." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "U moet een gebruiker selecteren" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Global Moderator succesvol toegevoegd" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderator succesvol toegevoegd" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum>> Beheer Moderators" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Momenteel matigende" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Update" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global Moderator: (matige gebruiker kan alle forums)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Nog geen moderators" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "succesvol toegevoegd" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum>> Skin opties" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Naam van de optie" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Sla de opties op" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Voeg forum toe aan" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Beschrijving:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Sla forum op" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Categorie bewerken" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Categorie bewerken" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Sla gebruikersgroep op" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Selecteer gebruikersgroep" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Voeg gebruikers" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "U moet een groepsnaam opgeven" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Groep succesvol bijgewerkt" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "U moet een forumnaam opgeven" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum succesvol bijgewerkt" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Categorie bewerken" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Gebruikersgroepen;" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Leden van de geselecteerde gebruikersgroepen hebben toegang tot de forums in deze categorie:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Er zijn geen gebruikers groepen" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Groep opslaan" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Edit forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Selecteer gebruiker" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Edit forum " + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "U moet een naam opgeven voor de User Group" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "User Group succesvol bijgewerkt" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Edit User Group" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Save User Group" + +#~ msgid "General Options" +#~ msgstr "Algemene opties" + +#~ msgid "Categories and forums" +#~ msgstr "Categorieën en forums" + +#~ msgid "Remove this post?" +#~ msgstr "Dit bericht verwijderen?" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Laat me iets weten als ik nieuwe berichten krijg?" + +#, fuzzy +#~ msgid "Messages" +#~ msgstr "Bericht:" + +#~ msgid "New Message" +#~ msgstr "Nieuw bericht" + +#, fuzzy +#~ msgid "Read Message Thread" +#~ msgstr "Lees bericht" + +#, fuzzy +#~ msgid "new" +#~ msgstr "toevoegen van nieuwe" + +#~ msgid "Use Private Messages:" +#~ msgstr "Gebruik prive berichten sturen:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Ik raad je aan dit te deactiveren en dit te gebruiken:" + +#~ msgid "instead." +#~ msgstr "in plaats van." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Maximale berichten in Inbox (0 = onbeperkt):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Beheerders hebben altijd ongelimiteerde berichten" + +#~ msgid "Message Deleted" +#~ msgstr "Bericht verwijderd" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Uw bericht werd verwijderd!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Naar uw Postvak IN" + +#~ msgid "ERROR" +#~ msgstr "FOUT" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Je hebt geen toestemming deze visie!" + +#~ msgid "Create New Message" +#~ msgstr "Nieuw bericht maken" + +#~ msgid "Unlimited" +#~ msgstr "Onbeperkt" + +#~ msgid "Message Box Size" +#~ msgstr "Grootte van berichtenbox" + +#~ msgid "of" +#~ msgstr "van" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Je berichtenbox is vol" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Je kan geen nieuwe berichten versturen/ontvangen" + +#, fuzzy +#~ msgid "Started By" +#~ msgstr "Gestart door" + +#~ msgid "Last Reply" +#~ msgstr "Laatste reactie" + +#~ msgid "Unread" +#~ msgstr "Ongelezen" + +#~ msgid "Read" +#~ msgstr "Gelezen" + +#~ msgid "No Messages" +#~ msgstr "Geen berichten" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Het spijt me, maar je hebt nog geen berichten!" + +#~ msgid "Message Sent" +#~ msgstr "Bericht verzonden" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Het bericht is succesvol verzonden!" + +#, fuzzy +#~ msgid "Back To Your Messages" +#~ msgstr "Naar uw Postvak IN" + +#~ msgid "You have recieved a new message from" +#~ msgstr "U hebt een nieuw bericht ontvangen van" + +#~ msgid "follow this link to view:" +#~ msgstr "volg deze link:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Bericht kon niet verzonden worden!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "De inbox van de ontvanger is vol." + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Vul alle velden in alvorens het versturen van het bericht!" + +#~ msgid "To:" +#~ msgstr "Naar:" + +#~ msgid "Select User" +#~ msgstr "Gebruiker selecteren" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "" +#~ "Klik hier en begin met het typen van de gebruikersnaam om sneller iemand " +#~ "te vinden" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "U moet ingelogd zijn om priveberichten op te stellen!" + +#~ msgid "Sender" +#~ msgstr "Verzender" + +#~ msgid "Message Contents" +#~ msgstr "Inhoud van bericht" + +#~ msgid "Reply:" +#~ msgstr "Antwoord:" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "E-mail" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingle Forum Thema's:" + +#~ msgid "Posts" +#~ msgstr "Posten" + +#~ msgid "Topics " +#~ msgstr "Onderwerpen" + +#~ msgid "Posted on: " +#~ msgstr "Geplaatst op:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Laat e-mailnotificaties?" + +#~ msgid "Notify" +#~ msgstr "Houd" + +#~ msgid "View Inbox" +#~ msgstr "Bekijk Inbox" + +#~ msgid "Contact:" +#~ msgstr "Contact:" + +#~ msgid "Inbox size" +#~ msgstr "Postvak grootte" + +#~ msgid "total" +#~ msgstr "totaal" + +#~ msgid "From" +#~ msgstr "Uit" + +#~ msgid "NEW" +#~ msgstr "NIEUW" + +#~ msgid "OLD" +#~ msgstr "OLD" + +#~ msgid "Empty Inbox" +#~ msgstr "Lege Inbox" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Uw Inbox is leeg!" + +#~ msgid "Try Again" +#~ msgstr "Try Again" + +#~ msgid "Reply To Message" +#~ msgstr "Antwoord op boodschap" diff --git a/i18n/mingleforum-pl_PL.mo b/i18n/mingleforum-pl_PL.mo new file mode 100644 index 0000000..d2e32ff Binary files /dev/null and b/i18n/mingleforum-pl_PL.mo differ diff --git a/i18n/mingleforum-pl_PL.po b/i18n/mingleforum-pl_PL.po new file mode 100644 index 0000000..5609933 --- /dev/null +++ b/i18n/mingleforum-pl_PL.po @@ -0,0 +1,1719 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Temat Forum:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Temat:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Brak użytkownika" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Edytuj opcje" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Zezwolić innym na podgląd profilu?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Dostałeś powiadomienie email o poniższych tematach:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Zapisz opcje" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Oszustwo, prawda?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Kod bezpieczeństwa nie poprawny" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Napotkano błąd" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Musisz podać temat" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Musisz podać treść wiadomości" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "utworzony temat na forum:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "odpowiedź na temat na forum:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Cytuj z" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "w" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Odpowiedz" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Temat:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Odp:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Wiadomość:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Wyślij" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Edytuj post" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Zapisz post" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Napis nowy temat" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Przepraszamy, Nie masz uprawnień do tego postu." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle forum >> opcje skórek" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Nazwa opcji" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Skórka" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategorie i fora" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Modeatorzy" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Grupy użytkowników" + +#: wpf.class.php:178 +msgid "About" +msgstr "O" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Ostatnie aktywność na forum" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "przez:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Tytuł do wyświetlenia na pasku bocznym:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Ile wyświetlać elementów?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Strona wczytana w" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekund" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Wesrja:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Gość" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "przez" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Ostatni post napisany przez" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Przepraszamy, nie masz uprawnień do tego forum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Tytuł tematu" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Rozpoczęty przez" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Odpowiedzi" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Wyświetleń" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Ostatni post" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Przyklej temat" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Przenieś temat" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Usuń temat" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nowe tematy od ostatniej wizyty" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Tematy forum" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Usunąć ten temat z powiadomień e-mail?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Dodać ten temat do powiadomień e-mail?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "Temat zamknięty" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Posty:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Szybka odpowiedź:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "Szybka odpowiedź:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:939 +msgid "on:" +msgstr "w:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Cytuj" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Usuń" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Edytuj" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Tematy:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Posty:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nowy post" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Brak nowych postów" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Brak tematów" + +#: wpf.class.php:1154 +msgid "in" +msgstr "w" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Wyniki wyszukiwania" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nowy temat" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatorzy:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Cofnij przyklejenie" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Przyklejony" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Otwórz ponownie" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Zamknij" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Odpowiedz" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Subskrybuj" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Subskrybuj" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Mój profil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Mój profil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Start" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Wyloguj" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Szukaj" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Jesteś zalogowany jako:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nazwa użytkownika:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Hasło:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Zapamiętaj mnie" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nowe tematy od ostatniej wizyty" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Informacja o profilu" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Edytuj profil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Witaj" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Twoja ostatnia wizyta była:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Pokaż nowe tematy od ostatniej wizyty" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Edytuj swoje opcje forum" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Witaj Gościu, proszę sięzalogować lub" + +#: wpf.class.php:1928 +msgid "register." +msgstr "zarejestrować." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Witaj Gościu, pisanie na forum wymaga" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "rejestracji." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Pokaż/ukryj nagłówek" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Szukaj na forum" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Strony:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Lista" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Lista" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Post skasowany" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Zobacz profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Pogrubienie" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Kursywa" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Podkreślenie" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Przekreślenie" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kod" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Element listy" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Obraz" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Dodaj kolor szesnastkowo" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Załącz film YouTobe" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Uśmiechnięty" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Smutny" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Obojętny" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Wściekły" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Zmieszany" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Mrugnięcie" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Niespodzianka" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Super" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Centrum informacji" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Postów w" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Tematy przez:" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Członkowie" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Ostatni członek" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nowe tematy od ostatniej wizyty" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Podsumowanie" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nazwa:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Zarejestrowany:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Pozycja:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Strona internetowa:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jaber/GoogleTalk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Informacje biograficzne:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Szukaj dla:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Przez użytkownika" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Wiek wiadomości:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Pomiędzy" + +#: wpf.class.php:2467 +msgid "and" +msgstr "i" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dni" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Kliknij żeby wybrać forum do przeszukania" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Sprawdź wszystko" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Zacznij szukanie" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Temat" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Znaczenie" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Wysłany:" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Temat zamknięty" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Temat normalny" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Gorący temat" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Bardzo gorący temat" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Kod bezpieczeństwa:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Kod bezpieczeństwa:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nowe odpowiedzi w tematach forum:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "SZCZEGÓŁY:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Data:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Treść odpowiedzi:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Zobacz temat tutaj:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Wyślij wiadomość" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategoria" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Temat" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Musisz podać nazwę grupy użytkowników" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Wybrałeś nazwę, która już istnieje w bazie danych, podaj inną" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Grupa użytkowników dodana poprawnie" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Nie określono żadnego użytkownika do dodawania:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Musisz wybrać grupę użytkowników" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Błąd" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Nie ma takiego użytkownika:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Ostrzeżenie" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Użytkownik" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "już jest w tej grupie" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "dodany poprawnie" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Błedy:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Ostrzeżenia:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Dodani użytkownicy:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Grupa(y) użytkowników usunięte poprawnie." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Członek usunięty poprawnie." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Zarządzaj grupami użytkowników" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "dodaj nowy" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Skasuj" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Dodaj członka" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Brak członków w tej grupie" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Skórka aktywowane poprawnie." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle forum >> opcje skórek" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Pobierz więcej skórek" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Dlaczego chcesz zmienić?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Zrzut ekranu" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nazwa" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Wersja" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Opis" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Akcja" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "W użyciu" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktywuj" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "O Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Bieżąca wersja" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Strona pluginu:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Forum wsparcia:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Forum skórek Mingle:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opcje zapisane." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statystyka" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Wartość" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Liczba postów:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Liczba wątków:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Liczba użytkowników" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Całkowity rozmiar bazy:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Serwer bazy danych:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Wersja Mingle Forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Opcje główne" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "domyślnie" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Nazwa opcji" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Wprowadź opcję" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Postów na stronę:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Wątków na stronę:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Liczba postów dla gorących tematów:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Liczba postów dla bardzo gorących tematów:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Wyświetlana nazwa użytkownika" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Tytuł nowego użytkownika:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Tytuł użytkownika poziom 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Poziom 1 użytkownika (ilość):" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Tytuł użytkownika poziom 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Poziom 2 użytkownika (ilość):" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Tytuł użytkownika poziom 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Poziom 3 użytkownika (ilość):" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Brak nowych postów" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Pokazuj formularz logowania na forum" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Pokazuj awatary na forum:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Forum skórek Mingle:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Rejestracja wymagana aby pisać:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Zainstalowana wersja:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "Biblioteka GD nie zainstalowana" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Uzywaj Captcha dla niezarejestrowanych użytkowników" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Wymagania" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Format daty:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Domyślna data:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Sprawdź" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "do sformatowania daty." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Skasowane grupy:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Skasowane fora:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Wątki skasowane:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Posty skasowane:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Posty skasowane:" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategoria dodana" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Muisz wybrać kategorię" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum dodane" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorie i fora" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Zmień" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Dodaj forum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Start" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Start" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderator usunięty poprawnie." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderator zapisany poprawnie." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderator nie usunięty." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Musisz wybrać użytkownika" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderator globalny dodany poprawnie." + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderator dodany poprawnie" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Zarządzaj moderatorami" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Aktualnie moderowany" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Aktualizuj" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderator globalny (możę moderować wszystkie fora)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Brak moderatorów" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "dodany poprawnie" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle forum >> opcje skórek" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Nazwa opcji" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Zapisz opcje" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Dodaj forum do" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Opis:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Zapisz forum" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Edytuj kategorię" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Edytuj kategorię" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Zapisz grupy użytkowników" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Wybierz grupy użytkowników" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Dodaj użytkowników" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Musisz podać nazwę grupy" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grupa zaktualizowana poprawnie" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Musisz podać nazwę forum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum zaktualizowane poprawnie" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Edytuj kategorię" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Grupy użytkowników:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Nie ma grup użytkowników" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Zapisz grupę" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Edytuj forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Wybierz użytkownika" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Dodaj moderatora" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Musisz podać nazwę grupy użytkowników" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Grupa użytkowników zaktualizowana poprawnie" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Edytuj grupy użytkownika" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Zapisz grupę użytkownika" + +#~ msgid "General Options" +#~ msgstr "Ustawienia ogólne" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorie i fora" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Powiadomić jeśli dostanę nową wiadomość?" + +#~ msgid "Remove this post?" +#~ msgstr "Usunąć ten post?" + +#~ msgid "Messages" +#~ msgstr "Wiadowmości" + +#~ msgid "New Message" +#~ msgstr "Nowa wiadomość" + +#~ msgid "new" +#~ msgstr "nowy" + +#~ msgid "Email:" +#~ msgstr "E-mail:" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Poprawne opcje: user_login, nickname, display_name, first_name, last_name" + +#~ msgid "Use Private Messages:" +#~ msgstr "Użyj prywatnej wiadomości" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Zalecane wyłaczeniu i użycie " + +#~ msgid "instead." +#~ msgstr "zamiast." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Maksymalna ilość w skrzynce (0 = bez limitu):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Administrator zawsze ma nieograniczoną ilość wiadomości" + +#~ msgid "Message Deleted" +#~ msgstr "Wiadomość skasowana" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Twoja wiadomosć została skasowana!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Wróć do skrzynki odbiorczej" + +#~ msgid "ERROR" +#~ msgstr "BŁĄD" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Nie masz uprawnień do podglądu!" + +#~ msgid "Create New Message" +#~ msgstr "Napisz nową wiadomość" + +#~ msgid "Unlimited" +#~ msgstr "Bez limitu" + +#~ msgid "Message Box Size" +#~ msgstr "Rozmiar skrzynki" + +#~ msgid "of" +#~ msgstr "z" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Skrzynka jest pełna@" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Nie możęsz wysyłać/otrzymywać żadnych wiadomości" + +#~ msgid "Started By" +#~ msgstr "Rozpoczęty przez" + +#~ msgid "Last Reply" +#~ msgstr "Ostatnia odpowiedź" + +#~ msgid "Unread" +#~ msgstr "Nieprzeczytane" + +#~ msgid "Read" +#~ msgstr "CZytaj" + +#~ msgid "No Messages" +#~ msgstr "Brak wiadomości" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Przepraszamy, nie masz wiadomości!" + +#~ msgid "Message Sent" +#~ msgstr "Wiadomość wysłana" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Wiadomość wysłana prawidłowo!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Wróć do wiadomości" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Otrzymałeś nową wiadomość od" + +#~ msgid "follow this link to view:" +#~ msgstr "kliknij link aby zobaczyć" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Wiadomość nie może być wysłana!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Skrzynka odbiorcy jest pełna!" + +#~ msgid "To:" +#~ msgstr "Do:" + +#~ msgid "Select User" +#~ msgstr "Wybierz użytkownika" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Musisz być zalogowany aby wysłać prywatną wiadomość!" + +#~ msgid "Sender" +#~ msgstr "Nadawca" + +#~ msgid "Message Contents" +#~ msgstr "Zawartość wiadomości" + +#~ msgid "Reply:" +#~ msgstr "Odpowiedz" diff --git a/i18n/mingleforum-pt_BR.mo b/i18n/mingleforum-pt_BR.mo new file mode 100644 index 0000000..e8cef0d Binary files /dev/null and b/i18n/mingleforum-pt_BR.mo differ diff --git a/i18n/mingleforum-pt_BR.po b/i18n/mingleforum-pt_BR.po new file mode 100644 index 0000000..926a9cc --- /dev/null +++ b/i18n/mingleforum-pt_BR.po @@ -0,0 +1,1591 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Feed do fórum" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Tópico do Fórum:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Fórum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Tópico" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Usuário não existe" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Editar opções do fórum" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Permitir que outros vejam meu perfil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Você tem notificação de e-mail para estes tópicos:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Salvar opções" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Estamos incomodando?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Código de verificação não confere" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Ocorreu um erro" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Você precisa inserir um assunto" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Você precisa inserir uma mensagem" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "criou o tópico:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "respondeu ao tópico:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citação de" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "em" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Resposta" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Assunto:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Mensagem:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Enviar" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Editar Post" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Salvar Post" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Criar novo tópico" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Desculpe, você não tem permissão para criar um post." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Perfil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Fórum > Opções de Skin" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Nome da opção" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Skins" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Categorias e Fórums" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderadores" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Grupos de usuários" + +#: wpf.class.php:178 +msgid "About" +msgstr "Sobre" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Últimas atividades no fórum" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "por:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Título para exibir na sidebar:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Quantos itens você quer exibir?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Página carregada em:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "segundos." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Fórum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versão:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Convidado" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "por" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Último post por" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Desculpe, você não tem acesso a este fórum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Título do Tópico" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Iniciado por" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Respostas" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Visualizações" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Último post" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Tópicos Fixos" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Mover tópico" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Apagar tópico" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Posts novos desde a última visita" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Tópicos do fórum" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Remover este tópico das suas notificações por e-mail?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Adicionar este tópico para suas notificações por e-mail?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "TÓPICO FECHADO" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Posts:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Resposta rápida" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Enviar resposta" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:939 +msgid "on:" +msgstr "em:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Citação" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Remover" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Editar" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Tópicos:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Posts:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Há novos posts" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Sem novos posts" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Ainda sem tópicos" + +#: wpf.class.php:1154 +msgid "in" +msgstr "em" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "RSS do fórum" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Resultados da busca" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Perfil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Novo tópico" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderadores:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Desfazer Fixo" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Fixo" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Reabrir" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Fechar" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Responder" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Assinar" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Assinar" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "Feed RSS" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "Feed RSS" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Meu perfil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Meu Perfil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Home do Fórum" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Sair" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Busca" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Você está registrado como:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nome de usuário:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Senha:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Lembrar" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrador" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderador" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Tópicos novos desde a última visita" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Info do Perfil" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Editar perfil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Bem vindo(a)" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Sua última visita foi em:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Mostrar tópicos novos desde sua última visita" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Editar opções do fórum" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Olá Convidado, faça login ou" + +#: wpf.class.php:1928 +msgid "register." +msgstr "registre-se" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Olá convidado, para postar neste fórum é necessário" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "registrar-se." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Esconder/Exibir painel" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Buscar fórums" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Páginas:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Lista" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Lista" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Post apagado" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Ver perfil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Negrito" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Itálico" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Sublinhado" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Riscado" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Código" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Lista de itens" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Link" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Imagem" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Adicionar cor hexa" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Inserir vídeo do YouTube" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Smile" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Sorrisão" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Triste" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutro" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Desprezo" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Louco" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Confuso" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eca!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Piscada" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Surpreso" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Legal" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Informações" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Posts em" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Tópicos escritos por" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Membros" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Último membro:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Tópicos novos desde sua última visita" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Perfil" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nome:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registrado:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Posição:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "MSN:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Sobre mim:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Buscar por:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Pelo usuário:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Idade da mensagem:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Entre" + +#: wpf.class.php:2467 +msgid "and" +msgstr "e" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dias" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Clique para selecionar fórums a pesquisar" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Marcar todos" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Iniciar busca" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Assunto" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevância" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Publicado" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Fechar tópico" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Tópico normal" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Tópico quente" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Tópico muito quente" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Código de verificação:" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Digite o código de verificação: (Obrigatório)" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nova resposta no tópico:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETALHES:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Data:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Conteúdo da resposta:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Ver tópicos aqui:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Caixa de entrada" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Enviar mensagem" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Categoria" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Tópico" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Você precisa especificar um nome parao grupo de usuários" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Esse nome já existe no banco de dados, escolha outro" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Grupo de usuários criado com sucesso" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Nenhum usuário especificado para adicionar:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Você precisa escolher um grupo de usuários" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Erro" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Usuário não existe:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Atenção" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Usuário" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "já está neste grupo" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "adicionado" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Erros:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Atenção" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Usuários adicionados:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Grupo de usuários apagado" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Usuário removido" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Fórum >> Grupo de usuários" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "adicionar novo" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Apagar" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Adicionar usuários" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Não há usuários neste grupo" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Skin ativada" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Fórum > Opções de Skin" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Obter mais skins" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "IMPORTANTe: Após a versão 1.0.03 a pasta das skins mudou para /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Por que você mudou isso?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Screenshot" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nome" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versão" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Descrição" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Ação" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Em uso" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Ativar" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Sobre o Mingle Fórum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Versão Atual:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Fórum tem uma missão simples; 'MANTER A SIMPLICIDADE!' Foi adaptado do WP Fórum e tem sido MUITO melhorado. Ele já suporta integração com ou sem o Mingle plugin (por Blair Williams). Também quero dar um grande agradecimento a Eric Hamby por seu trabalho anterior sobre o script do fórum." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Página do plugin:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Fórum de suporte:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Skins do Mingle Fórum:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Opções salvas." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Fórum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Estatísticas" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Valor" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Número de posts:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Número de discussões:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Número de usuários:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Tamanho total do banco de dados:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Servidor do banco de dados:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Versão do Mingle Fórum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Fórum >> Opções gerais" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "padrão" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Nome da opção" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Opção de entrada" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Posts por página:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Discussões por página:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Número de posts para tópico quente:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Número de posts para tópico muito quente:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Mostrar nome:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Título de usuário novo:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Título de usuário nível 1:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Posts para tingir nível 1:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Título de usuário nível 2:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Posts para tingir nível 2:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Título de usuário nível 3:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Posts para atingir nível 3:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Sem novos posts" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Mostrar formulário de login:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Mostrar avatars no fórum:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Mostrar \"Sobre mim\" no rodapé dos posts:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Usar RSS do fórum:" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "É necessário estar registrado para publicar:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Versão instalada:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "Biblioteca GD não está instalada" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Use Captcha para usuários não registrados:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Requer" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Se você habilitou \"Requer registro para publicar\", deixe essa opção desligada" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Data do fórum:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Data padrão:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Marcar" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "para formato de data." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Grupos apagados:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Fórums apagados:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Discussões apagadas:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Posts apagados:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Você precisa inserir um nome" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Categoria adicionada com sucesso" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Você precisa selecionar uma categoria" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Este nome de fórum já existe. Escolha outro." + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Fórum adicionado" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Fórum >> Categorias e Fórums" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Modificar" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Adicionar fórum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Feed do fórum" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Feed do fórum" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderador apagado." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderador salvo" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderador NÃO removido" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Slecione um usuário" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderador global adicionado" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderador adicionado" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Fórum >> Gerenciar moderadores" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Moderando atualmente" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Update" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderador global: (Pode moderar qualquer fórum)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Ainda sem moderador" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "adicionado" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Fórum > Opções de Skin" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Nome da opção" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Salvar opções" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Adicionar fórum para" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Descrição:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Salvar fórum" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Editar categoria" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Editar categoria" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Salvar grupo de usuário" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Selecionar grupo de usuário" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Adicionar usuário" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Você precisa especificar um nome de grupo" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grupo atualizado" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Escolha um nome para o fórum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Fórum atualizado" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Editar categoria" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Grupos de usuários:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Membros do grupo de usuários selecionado tem acesso aos fórums desta categoria:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Não há grupos de usuários" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Salvar grupos" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Editar fórum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Selecionar usuário" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Adicionar moderador" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Escolha um nome para o grupo de usuários" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Grupo de usuários atualizado" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Editar grupo de usuário" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Salvar grupo de usuário" + +#~ msgid "Remove this post?" +#~ msgstr "Remover este post?" + +#~ msgid "General Options" +#~ msgstr "Opções gerais" + +#~ msgid "Categories and forums" +#~ msgstr "Categorias e fórums" diff --git a/i18n/mingleforum-ro_RO.mo b/i18n/mingleforum-ro_RO.mo new file mode 100644 index 0000000..139fc51 Binary files /dev/null and b/i18n/mingleforum-ro_RO.mo differ diff --git a/i18n/mingleforum-ro_RO.po b/i18n/mingleforum-ro_RO.po new file mode 100644 index 0000000..dee0163 --- /dev/null +++ b/i18n/mingleforum-ro_RO.po @@ -0,0 +1,1566 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Topicul Forumului" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Topic:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Niciun user" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "In acest moment nu esti abonat " + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Editeaza optiunile forumului" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Permiti si altora sa vada profilul tau?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Ai notificare pe email in legatura cu aceste topicuri:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Salveaza optiunile" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Trisam, nu-i asa?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Codul de securitate nu se potriveste" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Undeva a avut loc o eroare" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Trebuie sa introduci un subiect" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Trebuie sa introduci un mesaj" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "a creat topicul forumului" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "a raspuns catre topicul forumului" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citat din" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "pe" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Raspunde" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Subiect:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Mesaj:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Trimite" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Editeaza Postarea" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Salveaza Postarea" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Deschide un subiect nou" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Imi pare rau. Nu ai permisiunea sa postezi." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "Nou venit" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "Incepator" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "Avansat" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "Profesionist" + +#: wpf.class.php:171 +#: wpf.class.php:172 +msgid "Mingle Forum - Options" +msgstr "Forum Eject - Optiuni" + +#: wpf.class.php:172 +msgid "Options" +msgstr "Optiuni" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "Anunturi" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Skinuri" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "Structura Forumului - Categorii & Forumuri" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "Structura Forumului" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderatori" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Grupuri de utilizatori" + +#: wpf.class.php:178 +msgid "About" +msgstr "Despre" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Cele mai noi activitati ale Forumului" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "de:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Titlul care doresti sa fie afisat in sidebar:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Cate elemente doresti sa fie afisate?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Pagina incarcata in:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "secunde." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Forum Eject" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versiune:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Vizitator" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "de" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Cea mai noua Postare de" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Imi pare rau, dar nu ai acces la acest forum" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Stare" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Titlul topicului" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Deschis de" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Raspunsuri" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Vizualizari" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Ultima postare" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Topicuri Lipicioase - Sticky" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Muta Topicul" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Sterge Topicul" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Postari noi de la ultima vizita" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Topicurile Forumului" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Nu vrei sa mai primesti notificari prin email in legatura cu aces topic?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Vrei sa primesti notificari prin email in legatura cu aces topic?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "TOPIC INCHIS" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Postari:" + +#: wpf.class.php:905 +msgid "Quick Reply" +msgstr "Raspuns rapid" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "Trimite Raspuns Rapid" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Posteaza" + +#: wpf.class.php:939 +msgid "on:" +msgstr "pe:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Citat" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Elimina" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Modifica" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Subiecte:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Postari:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Postari noi" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Nici o postare noua" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "Marcheaza toate ca fiind citite" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Inca nu exista subiecte noi" + +#: wpf.class.php:1154 +msgid "in" +msgstr "in" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Forum RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "Esti sigur ca vrei sa elimini aceasta?" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Rezultatele cautarii" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Subiect nou" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatori" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Anuleaza Sticky" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Sticky - Lipicios" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Re-Deschide" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Inchide" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Raspunde" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Subscrie" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Subscrie" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "Feed RSS" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "Feed RSS" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Profilul meu" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Profilul Meu" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Forum Home" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Iesi din cont" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Cautare" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Esti logat ca:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Nume de utilizator" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Parola" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Tine minte" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Subiecte noi de la ultima vizita" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Informatii de Profil" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Modifica Profilul" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Bine ai venit," + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Ultima ta vizita a fost:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Arata subiecte noi de la ultima ta vizita" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Editeaza optiune forumului" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Bine ai venit, Vizitatorule. Intra in cont sau" + +#: wpf.class.php:1928 +msgid "register." +msgstr "inregistreaza-te." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Bine ai venit! Pentru a posta in acest forum necesita" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "inregistrare" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Arata/Ascunde Antet" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Cauta" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Pagini:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "Prima" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +msgid "Last" +msgstr "Ultima" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Postare stearsa" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Vezi profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Bolduit" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Italic" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Subliniat" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Taiat" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Cod" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Listeaza" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Listeaza element" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Legatura" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Imagine" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Adauga Hex Color" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Embed YouTube Video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Zambet" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Big Grin" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Trist" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutru" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Nebun" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Confuzat" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Fa cu ochiul" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Surprins" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info Center" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Postari in" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Subiecte initiate de:" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Membri" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Cel mai nou Membru" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Subiecte noi de la ultima ta vizita" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Sumar" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Nume:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Inregistrat:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Pozitie:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Website:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Biografie:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Cauta:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "De utilizatorul" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Vechimea Mesajului" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Intre" + +#: wpf.class.php:2467 +msgid "and" +msgstr "si" + +#: wpf.class.php:2467 +msgid "days" +msgstr "zile" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Apasa pentru a alege ce Forum(uri) sa cauti" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Selecteaza-le pe toate" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Porneste Cautarea" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Subiect" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevanta" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Postata" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Subiect inchis" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Subiect normal" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Subiect FIERBINTE" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Subiect FOARTE FIERBINTE" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Cod de siguranta" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "Introdu Codul de Siguranta (obligatoriu)" + +#: wpf.class.php:2685 +msgid "New post in forum:" +msgstr "Subiect nou in forum:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETALII:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Data:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Continutul Raspunsului" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Vezi subiectul aici:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Inbox" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Trimite Mesaj" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Categorie" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Subiect" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Trebuie sa specifici un nume de grup de utilizatori." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Ai ales un nume care deja exista in baza de date, te rog sa specifici altul" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Grup de utilizatori adaugat cu succes" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Nu ai specificat niciun utilizator care sa fie adaugat:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Trebuie sa alegi un grup de utilizatori" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Eroare" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Nu exista acest utilizator:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Avertisment" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Utilizator" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "exista deja in acest grup" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "adaugat cu succes" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Erori:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Avertismente:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Utilizatori adaugati:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Grup(uri)de utilizatori eliminat(e) cu succes" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Membru sters cu succes" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Forum Eject>> Administrare grupuri de utilizatori" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "adauga nou" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Sterge" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Adauga membri" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Niciun membru din acest grup" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Skin activat cu succes." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Forum Eject>> Skin optiuni" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Mai multe skinuri" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "De ce l-ai schimba?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Screenshot" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Nume" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versiune" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Descriere" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Actiune" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "In uz" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Activeaza" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Despre Forumul Eject" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Versiune Curenta:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Plugin Pagina:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Sustine Forum:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Skinurile Forumului Eject:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Optiuni salvate cu succes." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Forum Eject" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Statistici" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Valoare" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Numarul postarilor:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Numar de discutii:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Numar de utilizatori:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Marimea totala a bazei de date:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Baza de date a serverului" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Versiune Forum Eject" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Forum Eject>> Optiuni Generale" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "implicit" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Numele optiunii" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Optiunea de intrare" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Postari pe pagina:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Discutii pe pagina:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Numar de postari pentru SUBIECT FIERBINTE" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Numar de postari pentru SUBIECT FOARTE FIERBINTE" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Afiseaza Numele de Utilizator" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Titlul Noului Utilizator" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "User Level 1 Title:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "User Level 1 Count:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "User Level 2 Title:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "User Level 2 Count:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "User Level 3 Title:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "User Level 3 Count:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:467 +msgid "Notify Admin on new posts:" +msgstr "Anunta Admin in legatura cu posturi noi:" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "Inchis" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Arata Forum Login Form:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "Deschis" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Arata Avatare in cadrum forumului:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "Arata biografia utilizatorulor in partea de jos a postarilor:" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "Foloseste Forum RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "Use SEO friendly URLs:" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "IMPORTANT: Lasa aceasta optiune inchisa daca legaturile sunt setate 'default'" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Inregistrare este necesara pentru a putea posta:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Versiune instalata:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library nu este instalata:" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Foloseste Captcha pentru utilizatorii neinregistrati:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Necesita" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Daca aveti 'Inregistrare este necesara pentru a putea posta:', lasati-o pe off" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Format data:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Data implicita:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Verifica:" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "Pentru formatarea datei." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Grupuri sterse:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Forumuri sterse:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Discutii sterse:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Postari sterse:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Introdu un nume" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Categorie adaugata cu succes" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Necesita selectarea unei categorii" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Ai ales un nume de forum care deja exista in grup, te rog sa alegi altul" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum adaugat cu succes" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Forum Eject >> Categorii si Forumuri" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Modifica" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Adauga forum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "Grup Mutat Jos" + +#: fs-admin/fs-admin.php:837 +msgid "Forum Moved Down" +msgstr "Forum Mutat Jos" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "Grup Mutat Sus" + +#: fs-admin/fs-admin.php:857 +msgid "Forum Moved Up" +msgstr "Forum Mutat Sus" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderator eliminat cu succes." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderator inregistrat cu succes." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderator care nu a fost eliminat." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Trebuie sa selectezi un utilizator" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Moderator Global adaugat cu succes" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderator adaugat cu succes" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Forum Eject>> Gestioneaza Moderatori" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "In curs de moderare" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Update" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Moderator Global: (Utilizator ce poate modera toate forumurile)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Nici un moderator inca" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "Anunturi adaugate cu succes" + +#: fs-admin/fs-admin.php:1019 +msgid "Mingle Forum Ads >> options" +msgstr "Anunturi Amesteca Forum >> optiuni" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML este permis in toate domeniile de anunturi de mai jos" + +#: fs-admin/fs-admin.php:1025 +msgid "Ads Option" +msgstr "Optiune Anunturi" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "Zona de activare in partea de sus a Forumului" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "css-value:" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "Zona de activare in partea de jos a Forumului" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "Activeaza zona de Deasupra Branding" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "Activeaza zona Deasupra Info Center" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "Activeaza zona Deasupra Breadcrumbs" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "Activeaza zona formularului de raspuns rapid" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "Activeaza Zona de sub Prima Postare" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "Dedesubt poti modifica/aduce propriul tau CSS" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "NOTE: If you do not know what this is for, leave it blank" + +#: fs-admin/fs-admin.php:1095 +msgid "Save Options" +msgstr "Salveaza Optiuni" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Adauga forum la" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Descriere:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Salveaza forum:" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Adauga o categorie" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Salveaza categorie" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Salveaza grup de utilizatori" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Alege Grupul de utilizatori" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Adauga utilizatori" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Trebuie sa specifici un nume de grup" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grup adaugat cu succes" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Trebuie sa specifici un nume de forum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum updatat cu succces" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Modificare categorie" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Grupuri de utilizatori" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Membrii grupurilor de utilizatori verificati au acces la forumuri in aceasta categorie:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Nu exista grupuri de utilizatori" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Salveaza grup" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Modificare forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Alege utilizator" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Adauga moderator" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Trebuie sa specifici un nume pentru Grupul de Utilizatori" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Grup de Utilizatori actualizat cu succes" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Modifica Grupul de Utilizatori" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Salveaza Grupul de Utilizatori" + diff --git a/i18n/mingleforum-ru_RU.mo b/i18n/mingleforum-ru_RU.mo new file mode 100644 index 0000000..2ccdc54 Binary files /dev/null and b/i18n/mingleforum-ru_RU.mo differ diff --git a/i18n/mingleforum-ru_RU.po b/i18n/mingleforum-ru_RU.po new file mode 100644 index 0000000..47844a3 --- /dev/null +++ b/i18n/mingleforum-ru_RU.po @@ -0,0 +1,1767 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: 2011-04-15 16:07-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Feed форума" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Тема форума:" + +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Форум" + +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "Тема: " + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Фиды отключены" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Нет такого пользователя" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "У вас нет подписок в настоящее время" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Изменить параметры форума" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Разрешить другим пользователям видеть мой профиль?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "У вас есть уведомления на e-mail для этих тем:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "Сохранить параметры" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "Пытаемся схитрить?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Защитный код не совпадает" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "Произошла ошибка" + +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "Вы должны ввести тему" + +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "Вы должны ввести сообщение" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "создал(а) тему форума:" + +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "ответил(а) в теме форума:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Цитата" + +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr " " + +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "Ответить" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Тема: " + +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "Ответ на:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Сообщение:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Изображение" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Отправить" + +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "Изменить сообщение" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Сохранить сообщение" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Начать новую тему" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Извините, у вас нет разрешения на отправку сообщений." + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "Новичок" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "Осваивающийся" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "Продвинутый" + +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "Про" + +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "Форум - Настройки" + +#: wpf.class.php:173 +msgid "Options" +msgstr "Настройки" + +#: wpf.class.php:174 +msgid "Ads" +msgstr "Объявления" + +#: wpf.class.php:175 +msgid "Skins" +msgstr "Скины" + +#: wpf.class.php:176 +msgid "Forum Structure - Categories & Forums" +msgstr "Структура форума - Категории и Форумы" + +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "Структура форума" + +#: wpf.class.php:177 +msgid "Moderators" +msgstr "Модераторы" + +#: wpf.class.php:178 +msgid "User Groups" +msgstr "Группы пользователей" + +#: wpf.class.php:179 +msgid "About" +msgstr "О себе" + +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "Последние события форума" + +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "Автор:" + +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "Название для отображения на боковой панели:" + +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "Сколько элементов вы хотели бы показывать?" + +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "Страница загружена за" + +#: wpf.class.php:646 +msgid "seconds." +msgstr "секунд." + +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:650 +msgid "Version:" +msgstr "Версия:" + +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "гость" + +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "от пользователя" + +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "Последнее сообщение от пользователя" + +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "Извините, но у вас нет доступа к этому форуму" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "Статус" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "Название темы" + +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "Автор" + +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "Ответов" + +#: wpf.class.php:724 +msgid "Views" +msgstr "Просмотров" + +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "Последнее сообщение" + +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "Важная тема" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "Переместить тему" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "Удалить тему" + +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "Новые сообщения с последнего посещения" + +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "Темы форума" + +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "Удалить эту тему из ваших уведомлений по электронной почте?" + +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "Добавить эту тему в список ваших уведомлений по электронной почте?" + +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "ТЕМА ЗАКРЫТА" + +#: wpf.class.php:858 +msgid "Author" +msgstr "Автор" + +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "Сообщения:" + +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "Быстрый ответ" + +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "Отправить быстрый ответ" + +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "Сообщение" + +#: wpf.class.php:941 +msgid "on:" +msgstr " " + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "Цитата" + +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "Удалить" + +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "Редактировать" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "Темы:" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "Сообщения:" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "Новые сообщения" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "Нет новых сообщений" + +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "Пометить все как прочтенные" + +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "Пока нет тем" + +#: wpf.class.php:1156 +msgid "in" +msgstr "в" + +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "Форумы в RSS" + +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "Вы уверены, что хотите удалить это?" + +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "Результаты поиска" + +#: wpf.class.php:1275 +msgid "Profile" +msgstr "Профиль" + +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "Новая тема" + +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "Модераторы:" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "Убрать из прикрепленных" + +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "Прикрепить" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "Открыть заново" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "Закрыть" + +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "Ответить" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "Отписаться" + +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "Подписаться" + +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "RSS фид" + +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "RSS фид" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "Мой профиль" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "Мой профиль" + +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "Форум - главная" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "Выйти" + +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "Поиск" + +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "Вы вошли как:" + +#: wpf.class.php:1728 +msgid "Username: " +msgstr "Имя пользователя:" + +#: wpf.class.php:1729 +msgid "Password: " +msgstr "Пароль:" + +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "Запомнить меня" + +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "Администратор" + +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "Модератор" + +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "Новые темы с момента последнего посещения" + +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "Профиль пользователя" + +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "Изменить профиль" + +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "Добро пожаловать," + +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "Последний раз вы были здесь:" + +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "Показать новые темы со времени вашего последнего визита" + +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "Изменить параметры форума" + +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "Добро пожаловать, гость! Пожалуйста, войдите под своим именем или" + +#: wpf.class.php:1930 +msgid "register." +msgstr "зарегистрируйтесь." + +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Добро пожаловать, гость! Для участия в форуме требуется" + +#: wpf.class.php:1935 +msgid "registration." +msgstr "регистрация." + +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "Показать / спрятать" + +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "Поиск по форуму" + +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "Страниц:" + +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "Перв." + +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "Посл." + +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "Сообщение удалено" + +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Просмотр профиля" + +#: wpf.class.php:2279 +msgid "Bold" +msgstr "Полужирный" + +#: wpf.class.php:2280 +msgid "Italic" +msgstr "Курсив" + +#: wpf.class.php:2281 +msgid "Underline" +msgstr "Подчеркнутый" + +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "Зачеркнутый" + +#: wpf.class.php:2283 +msgid "Code" +msgstr "Код" + +#: wpf.class.php:2285 +msgid "List" +msgstr "Список" + +#: wpf.class.php:2286 +msgid "List item" +msgstr "Элемент списка" + +#: wpf.class.php:2287 +msgid "Link" +msgstr "Ссылка" + +#: wpf.class.php:2288 +msgid "Image" +msgstr "Изображение" + +#: wpf.class.php:2289 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "Добавить цвет Hex " + +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "Внедрить видео из YouTube" + +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "Внедрить Google Map" + +#: wpf.class.php:2298 +msgid "Smile" +msgstr "Смайл" + +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "Широкий оскал" + +#: wpf.class.php:2300 +msgid "Sad" +msgstr "Грустный" + +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "Нейтральный" + +#: wpf.class.php:2302 +msgid "Razz" +msgstr "Высмеивающий" + +#: wpf.class.php:2303 +msgid "Mad" +msgstr "Взбешенный" + +#: wpf.class.php:2304 +msgid "Confused" +msgstr "Сконфуженный" + +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "Иик!" + +#: wpf.class.php:2306 +msgid "Wink" +msgstr "Подмигивающий" + +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "Удивленный" + +#: wpf.class.php:2308 +msgid "Cool" +msgstr "Круто" + +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "Информационный центр" + +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "сообщ. в" + +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "темах. Участников:" + +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "." + +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "Последний пользователь:" + +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "Новые темы со времени вашего последнего визита" + +#: wpf.class.php:2397 +msgid "Summary" +msgstr "Резюме" + +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Имя:" + +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "Зарегистрирован:" + +#: wpf.class.php:2416 +msgid "Position:" +msgstr "Статус:" + +#: wpf.class.php:2419 +msgid "Website:" +msgstr "Веб-сайт:" + +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "Jabber / Google Talk:" + +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "О себе:" + +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "Искать:" + +#: wpf.class.php:2463 +msgid "By user:" +msgstr "По пользователю:" + +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "Давность сообщения:" + +#: wpf.class.php:2469 +msgid "Between" +msgstr "Между" + +#: wpf.class.php:2469 +msgid "and" +msgstr "и" + +#: wpf.class.php:2469 +msgid "days" +msgstr "дней" + +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "Нажмите, чтобы выбрать форум(ы) для поиска" + +#: wpf.class.php:2497 +msgid "Check all" +msgstr "Все" + +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "Начать поиск" + +#: wpf.class.php:2544 +msgid "Subject" +msgstr "Предмет" + +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "Релевантность" + +#: wpf.class.php:2547 +msgid "Posted" +msgstr "Написал" + +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "Закрытая тема" + +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "Обычная тема" + +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "Горячая тема" + +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "Очень популярная тема" + +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "Защитный код:" + +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "Введите код (обязательно):" + +#: wpf.class.php:2687 +msgid "New post in forum:" +msgstr "Новое сообщение в форуме:" + +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "ПОДРОБНОСТИ:" + +#: wpf.class.php:2691 +msgid "Date:" +msgstr "Дата:" + +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "Содержание ответа:" + +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "Просмотр темы:" + +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "Входящие" + +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "Отправить сообщение" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Категория" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Тема" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Вы должны указать название группы пользователей." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Вы выбрали имя, которое уже существует в базе данных, пожалуйста, укажите другое" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Группа пользователей успешно создана" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Вы не выбрали пользователей для добавления:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Вы должны выбрать группу пользователей" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Ошибка" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Нет такого пользователя:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Предупреждение" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Пользователь" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "уже в этой группе" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "успешно добавлен" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Ошибки:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Предупреждения:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Добавленные пользователи:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Группа(ы) успешно удалена(ы)." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Участник успешно удален." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >>Управление группами пользователей" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "добавить новый" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "Удалять" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Добавить участников" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "В этой группе нет участников" + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Оформление успешно активировано." + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Навесы Форум>> Параметры оформления" + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "Дополнительные варианты оформления" + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "ВАЖНО: Начиная с версии 1.0.03 для новых скинов используется папка /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Почему вы поменяли это?" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Скриншот" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Имя" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Версия" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Описание" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Действие" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "Используется" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Активировать" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "О Mingle Forum" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Текущая версия:" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Миссия Mingle Forum проста: \"Keep It Simple! - не усложняй!\". Он продолжает WP Forum, но был очень существенно улучшен.Сейчас он полностью интегрируется, независимо от наличия Mingle plugin (by Blair Williams). Кроме того, огромное спасибо Эрику Хамби (Eric Hamby) за его работу над скриптом форума." + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Автор:" + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Страница плагина:" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Форум поддержки:" + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Скины форума Mingle:" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Функция успешно сохранена." + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Статистика" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Значение" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Количество сообщений:" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Количество веток:" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Количество пользователей:" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Общий размер базы данных:" + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Сервер баз данных:" + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Версия Mingle Forum:" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum>> Общие настройки" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "по умолчанию" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Название настройки" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Значение настройки" + +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "Сообщений на странице:" + +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "Тем на странице:" + +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "Количество сообщений в горячей теме:" + +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "Количество сообщений в очень популярной теме:" + +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "Отображение имени пользователя:" + +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "Название для нового пользователя:" + +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "Название для пользователя 1 уровня:" + +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "Количество сообщений для пользователя 1 уровня::" + +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "Название для пользователя 2 уровня:" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "Кол-во сообщений для пользователя 2 уровня::" + +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "Название для пользователя 3 уровня::" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "Кол-во сообщений для для пользователя 3 уровня::" + +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "Уведомлять администратора о новых сообщения" + +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "Выкл" + +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "Показывать форму авторизации на Форуме:" + +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "Вкл" + +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "Показывать аватары в форуме:" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "Показывать биографию пользователей внизу сообщений:" + +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "Использовать RSS форума" + +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "Использовать SEO URLы:" + +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "ВАЖНО: Оставьте эту опцию \"выкл\", если ваши постоянные ссылки установлены как \"по умолчанию\"" + +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "Регистрация обязательна для участия в форуме:" + +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "Установленная версия:" + +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "Библиотека GD не установлена" + +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "Использование Captcha для незарегистрированных пользователей:" + +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "Требует" + +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Оставьте это \"выкл\", если у вас включена опция \"Регистрация обязательна для участия в форуме\"." + +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "Формат даты:" + +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "По умолчанию дата:" + +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "Проверка" + +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "на дату форматирования." + +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "Группы удалены:" + +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "Форумы удалены:" + +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "Темы удалены:" + +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "Сообщения удалены:" + +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "Вы должны ввести имя" + +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "Категория успешно добавлена" + +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "Вы должны выбрать категорию" + +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Вы выбрали название, которые уже существует в этой группе, пожалуйста, укажите другое" + +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "Форум успешно добавлен" + +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Категории и форумы" + +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "Изменить" + +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "Добавить форум" + +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "Группа перемещена вниз" + +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "Форум перемещен вниз" + +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "Группа перемещена вверх" + +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "Форум перемещен вверх" + +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "Модератор успешно удален." + +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "Модератор успешно сохранен." + +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "Модератор НЕ удален." + +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "Вы должны выбрать пользователя" + +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "Старший модератор успешно добавлен" + +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "Модератор успешно добавлен" + +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Управление модераторами" + +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "Сейчас модерируют" + +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "Обновление" + +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Старший модератор: (Может модерировать все форумы)" + +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "Пока нет модераторов" + +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "Объявления успешно сохранены" + +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "Объявления форума >> настройки" + +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML разрешен во всех зонах объявлений ниже" + +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "Настройка объявлений" + +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "Разрешить зону над форумом" + +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "значение css:" + +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "Разрешить зону под форумом" + +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "Разрешить зону над информацией о форуме внизу" + +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "Разрешить зону над информационным центром" + +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "Разрешить зону над информацией о новых сообщениях" + +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "Разрешить зону над формой быстрого ответа" + +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "Разрешить зону под первым постом" + +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "Здесь вы можете изменить/добавить свой CSS" + +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "ПРИМЕЧЕНИЕ: Если вы не знаете, зачем это нужно, оставьте пустым" + +#: fs-admin/fs-admin.php:1105 +msgid "Save Options" +msgstr "Сохранить настройки" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Добавить форум" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Описание:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Сохранить форум" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Добавить категорию" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Сохранить категорию" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Сохранить группы пользователей" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Выберите группу пользователей" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Добавить пользователей" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Вы должны указать имя группы" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Группа успешно обновлена" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Вы должны указать название форума" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Форум успешно обновлен" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Изменить категорию" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Группы пользователей:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Члены данной группы пользователей имеют доступ к форумам в этой категории:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Нет групп пользователей" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Сохранить группу" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Редактировать" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Выберите пользователя" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Добавить модератора" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Вы должны указать имя для группы пользователей" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Группа пользователей успешно обновлена" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Редактировать группу пользователей" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Сохранить группу пользователей" + +#~ msgid "General Options" +#~ msgstr "Общие параметры" + +#~ msgid "Categories and forums" +#~ msgstr "Категории и форумы" + +#~ msgid "Remove this post?" +#~ msgstr "Удалить это сообщение?" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Присылать уведомление при получении новых сообщений?" + +#~ msgid "Messages" +#~ msgstr "Сообщения" + +#~ msgid "New Message" +#~ msgstr "Новое сообщение" + +#~ msgid "Read Message Thread" +#~ msgstr "Читать ветку с сообщением" + +#~ msgid "new" +#~ msgstr "новое" + +#~ msgid "Use Private Messages:" +#~ msgstr "Использовать личные сообщения:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Рекомендую отключить это и использовать" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "" +#~ "Максимальное кол-во сообщений в папке Входящие (0 = без ограничений):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Количество сообщений у администраторов всегда неограничено." + +#~ msgid "Message Deleted" +#~ msgstr "Сообщение удалено" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Ваше сообщение было удалено!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Вернуться к папке \"Входящие\"" + +#~ msgid "ERROR" +#~ msgstr "ОШИБКА" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "У вас нет прав для просмотра!" + +#~ msgid "Create New Message" +#~ msgstr "Новое сообщение" + +#~ msgid "Unlimited" +#~ msgstr "Неограничено" + +#~ msgid "Message Box Size" +#~ msgstr "Размер почтового ящика" + +#~ msgid "of" +#~ msgstr "от" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Почтовый ящик переполнен!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Вы не можете отпралять/получать новые сообщения" + +#~ msgid "Started By" +#~ msgstr "Начато" + +#~ msgid "Last Reply" +#~ msgstr "Последний ответ" + +#~ msgid "Unread" +#~ msgstr "Непрочтенные" + +#~ msgid "Read" +#~ msgstr "Прочтенные" + +#~ msgid "No Messages" +#~ msgstr "Нет сообщений" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "У вас нет сообщений" + +#~ msgid "Message Sent" +#~ msgstr "Отправлено" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Сообщение отправлено!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Вернуться к вашим сообщениям" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Вы получили новое сообщение от" + +#~ msgid "follow this link to view:" +#~ msgstr "Перейдите по этой ссылке для просмотра:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Сообщение не может быть отправлено!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Папка \"Входящие\" у получателя переполнена!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Пожалуйста, заполните все поля перед отправкой сообщения!" + +#~ msgid "To:" +#~ msgstr "Кому:" + +#~ msgid "Select User" +#~ msgstr "Выберите пользователя" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "Начните набирать имя пользователя для быстрого поиска" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Вы должны войти, чтобы отправлять личные сообщения!" + +#~ msgid "Sender" +#~ msgstr "Отправитель" + +#~ msgid "Message Contents" +#~ msgstr "Содержание сообщения" + +#~ msgid "Reply:" +#~ msgstr "Ответить:" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "Email" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Темы Mingle Forum:" + +#~ msgid "Posts" +#~ msgstr "Сообщений" + +#~ msgid "Topics " +#~ msgstr "Темы" + +#~ msgid "Posted on: " +#~ msgstr "Опубликован:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Разрешить уведомления по электронной почте?" + +#~ msgid "Notify" +#~ msgstr "Уведомлять" + +#~ msgid "View Inbox" +#~ msgstr "Открыть папку Входящие" + +#~ msgid "Contact:" +#~ msgstr "Контактная информация:" + +#~ msgid "Inbox size" +#~ msgstr "Входящие размера" + +#~ msgid "total" +#~ msgstr "общий" + +#~ msgid "From" +#~ msgstr "От" + +#~ msgid "NEW" +#~ msgstr "NEW" + +#~ msgid "OLD" +#~ msgstr "OLD" + +#~ msgid "Empty Inbox" +#~ msgstr "Пустые папки Входящие" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Папку \"Входящие\" пуст!" + +#~ msgid "Try Again" +#~ msgstr "Try Again" + +#~ msgid "Reply To Message" +#~ msgstr "Ответить на сообщение" diff --git a/i18n/mingleforum-sk_SK.mo b/i18n/mingleforum-sk_SK.mo new file mode 100644 index 0000000..bb6ad7c Binary files /dev/null and b/i18n/mingleforum-sk_SK.mo differ diff --git a/i18n/mingleforum-sk_SK.po b/i18n/mingleforum-sk_SK.po new file mode 100644 index 0000000..4763a75 --- /dev/null +++ b/i18n/mingleforum-sk_SK.po @@ -0,0 +1,1667 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Fórum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Téma:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Téma: " + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Užívateľ neexistuje" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Uprav nastavenia diskusného fóra" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Povoliť ostatným zobraziť tvoj profil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Máš nastavenú emailovú notifikáciu k týmto témam:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Ulož nastavenia" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Podvádzaš?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Bezpečnostný kód sa nezhoduje" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Vyskytla sa chyba" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Musíš vyplniť predmet" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Musíš vyplniť správu" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "vytvorená téma" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "Reaguj na tému:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citovať od" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "na" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Odpoveď" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Predmet:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "Re:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Správa:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Odoslať" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Editovať správu" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Uložiť správu" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Pridaj novú tému" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Prepáč, ale nemáš právo pridávať príspevky." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Tvoj profil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Možnosti témy" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Možnosti" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Témy" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategórie & fóra" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderátori" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Skupiny užívateľov" + +#: wpf.class.php:178 +msgid "About" +msgstr "O plugine" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Posledná aktivita" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "od" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Názov zobrazený v sidebare" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Koľko položiek chceš zobraziť?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Stránka bola vygenerovaná za " + +#: wpf.class.php:645 +msgid "seconds." +msgstr "sekúnd." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Verzia:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr " " + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "od" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Posledný príspevok od" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Bohužial, na toto fórum nemáš prístupové práva" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Názov témy" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Založil" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Odpovedí" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Zobrazení" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Posledný príspevok" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Dôležité témy" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Presuň tému" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Vymaž tému" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Nové príspevky od tvojej poslednej návštevy" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Témy fóra" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Odstrániť emailovú notifikáciu k tejto téme?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Pridať emailovú notifikáciu k tejto téme?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "Téma uzatvorená" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Autor" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Príspevky:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Rýchla odpoveď:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "Rýchla odpoveď:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Príspevok" + +#: wpf.class.php:939 +msgid "on:" +msgstr "na:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Odpovedaj" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Odstrániť" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Upraviť" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Témy:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Príspevky:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Nové príspevky" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Žiadne nové príspevky" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Žiadne témy" + +#: wpf.class.php:1154 +msgid "in" +msgstr "v téme" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Fórum RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Výsledky vyhľadávania" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Tvoj profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Nová téma" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderátori:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Neaktuálne" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Aktuálne" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Znova otvoriť" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Zatvoriť" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Odpovedať" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Notifikácia emailom" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Notifikácia emailom" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-Feed" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Tvoj profil" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Tvoj profil" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Diskusné fórum - úvodná stránka" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Odhlásiť" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Vyhľadávanie" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Si prihlásený ako " + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Užívateľské meno:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Heslo:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Zapamätaj si ma" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrátor" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderátor" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Nové témy od tvojej poslednej návštevy" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Info o užívateľovi" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Uprav svoj profil" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Ahoj" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Naposledy si bol prihlásený:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Zobraz nové témy od tvojej poslednej návštevy" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Uprav nastavenia diskusného fóra" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Vitaj hosť, prihlás sa alebo " + +#: wpf.class.php:1928 +msgid "register." +msgstr "sa zaregistruj." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Na prispievanie do fóra musíte byť zaregistrovaný a prihlásený." + +#: wpf.class.php:1933 +msgid "registration." +msgstr "Registrácia." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Zobraziť / Skryť tvoje informácie" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "vyhľadaj vo fórach" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Strany:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Zoznam" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Zoznam" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Príspevok bol vymazaný." + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Zobraz profil" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Hrubé" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Šikmé" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Podčiarknuté" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Prečiarknuté" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kód" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Zoznam" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Položka zoznamu" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Odkaz" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Obrázok" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Pridaj kód farby v HEX" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "Vlož YouTube video" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Úsmev" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Veľký pán" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Smutný" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Neutrálny" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Posmešok" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Šialený" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Zmätený" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Žmurk" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Prekvapený" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Super" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info centrum" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "príspevkov v" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Témy od užívateľa " + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "užívateľov" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Naposledy zaregistrovaný užívateľ:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Nové témy od tvojej poslednej návštevy" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Súhrn" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Meno:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Registrovaný:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Pozícia" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Webstránka:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Motto:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Hľadaj:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Od užívateľa:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Vek správy" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "Medzi" + +#: wpf.class.php:2467 +msgid "and" +msgstr "a" + +#: wpf.class.php:2467 +msgid "days" +msgstr "dní" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Vyber si fóra, v ktorých sa má vyhľadávať" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Označ všetky" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Vyhľadať" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Predmet" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevantnosť" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Zverejnené" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Uzatvorená téma" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normálna téma" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Aktuálna téma" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Veľmi aktuálne témy" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Bezpečnostný kód" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Bezpečnostný kód" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Nová odpoveď na tému:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "Detaily:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Dátum:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Reaguj na obsah:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Zobraz tému:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Schránka správ" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Odoslať správu" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategória" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Téma" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Musíš zadať meno užívateľskej skupiny" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Vybral si si meno, ktoré už existuje v databáze" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Užívateľská skupina bola úspešne pridaná." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Nevybral si žiadneho užívateľa na pridanie:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Musiš vybrať užívateľskú skupinu" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Chyba" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Neexistujúci užívateľ:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Upozornenie" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Užívateľ" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "sa už nachádza v tejto užívateľskej skupine" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "bol úspešne pridaný." + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Chyby:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Upozornenia:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Užívatelia pridaný:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Užívateľská skupina úspešne odstránená." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Užívateľ bol úspešne odstránený." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Nastaviť užívateľské skupiny" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "Pridať novú" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Odstrániť" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Pridaj užívateľov" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Žiadny užívatelia v tejto skupine" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Téma úspešne aktivovaná." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Možnosti témy" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Získaj viac tém" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "Dôležité: Od verzie 1.0.03 bol adresár s témami presunutý do /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Prečo sa to zmenilo?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Obrázok témy" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Meno" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Verzia" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Popis" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Status" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Aktuálne použitá" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktivovať" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "O plugine Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Aktuálna verzia:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Autor:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Oficiálna stránka pluginu:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Podporné fórum:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum " + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Nastavenia boli úspešne uložené." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Nastavenia" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "Štatistiky" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Hodnota" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Počet príspevkov:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Počet tém" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Počet užívateľov:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Celková veľkosť databázy:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Databázový server:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Verzia pluginu Mingle Forum:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Nastavenia" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "pôvodné" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Možnosti" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Nastavenia" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Príspevkov na stranu:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Tém na stranu:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Počet príspevkov v aktuálnych témach:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Počet príspevkov vo veľmi aktuálnych témach:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Užívateľské meno:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Označenie nováčika:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Označenie užívateľa 1 levelu:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Počet príspevkov pre 1 level:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Označenie užívateľa 2 levelu:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Počet príspevkov pre 2 level:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Označenie užívateľa 2 levelu:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Počet príspevkov pre 3 level:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Žiadne nové príspevky" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Zobraz prihlasovací dialóg vo fóre:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Zobraz ikonky vo fórach:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Fórum RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Registrácia na zadanie príspevku:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Nainštalovaná verzia:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library nie je nainštalovaná" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Použi Captcha pre neregistrovaných užívateľov" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Vyžaduje " + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Ak si označil možnosť \"Registrácia na zadanie príspevku\", nechaj toto políčko nezaškrtnuté" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Formát dátumu:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Základné nastavenie dátumu" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "Klikni " + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "pre formátovanie dátumu." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Vymazané skupiny:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Vymazané fóra:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Vymazané témy:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Vymazané príspevky" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "Musíš vyplniť meno" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategória bola úspešne pridaná" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Musíš vybrať kategóriu" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Vybral si názov fóra, ktoré už existuje pre danú užívateľskú skupinu. Vyber iný" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Fórum bolo úspešne pridané" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategórie a fóra" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Upraviť" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Pridaj fórum" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Fórum Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Fórum Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderátor bol úspešne odstránený." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderátor bol uložený." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderátor nebol odstránený." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Musíš vybrať užívateľa" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Globálny moderátor bol úspešne pridaný" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderátor bol úspešne pridaný" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Nastav moderátorov" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Momentálne moderátorom týchto fór" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Obnoviť" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Globálny moderátor: (užívateľ, ktorý môže moderovať všetky fóra)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Zatiaľ žiadny moderátor" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "bol úspešne pridaný." + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Možnosti témy" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Možnosti" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Ulož nastavenia" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Pridaj fórum do" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Popis:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Uložiť fórum" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Uprav kategóriu" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Uprav kategóriu" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Uložiť užívateľskú skupinu" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Vyber užívateľskú skupinu" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Pridaj užívateľov" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Musíš zadať meno užívateľskej skupiny" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Užívateľská skupina bola úspešne zmenená" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Musíš zadať meno fóra" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Fórum bolo úspešne zmenené" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Uprav kategóriu" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Užívateľské skupiny" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Užívatelia označených užívateľských skupín majú prístup k fóram v kategórii:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Nie sú vytvorené žiadne užívateľské skupiny" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Uložiť užívateľskú skupinu" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Uprav fórum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Vyber užívateľa" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Pridaj moderátora" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Musíš zadať meno užívateľskú skupinu" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Užívateľská skupina bola úspešne zmenená" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Upraviť užívateľskú skupinu" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Uložiť užívateľskú skupinu" + +#~ msgid "General Options" +#~ msgstr "Hlavné nastavenia" + +#~ msgid "Categories and forums" +#~ msgstr "Kategórie a fóra" + +#~ msgid "Remove this post?" +#~ msgstr "Odstrániť tento príspevok?" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Povolené možnosti: user_login, nickname, display_name, first_name, " +#~ "last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Poslať email s notifikáciou o novej správe." + +#~ msgid "Messages" +#~ msgstr "Správy" + +#~ msgid "New Message" +#~ msgstr "Nová správa" + +#~ msgid "new" +#~ msgstr "nové" + +#~ msgid "Email:" +#~ msgstr "Email:" + +#~ msgid "Message Deleted" +#~ msgstr "Správa bola vymazaná" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Tvoja správa bola vymazaná!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Naspäť do schránky správ" + +#~ msgid "ERROR" +#~ msgstr "Chyba" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Nemáš oprávnenie na prezeranie!" + +#~ msgid "Started By" +#~ msgstr "Založené užívateľom" + +#~ msgid "No Messages" +#~ msgstr "Žiadne správy" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Bohužial, nemáš žiadne správy" + +#~ msgid "Message Sent" +#~ msgstr "Správa bola odoslaná" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Správa bola úspešne odoslaná!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Naspäť na tvoju schránku správ" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Máš novú správu od" + +#~ msgid "follow this link to view:" +#~ msgstr "klikni na tento odkaz pre zobrazenie:" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Na odoslanie správy musíš byť prihlásený" + +#~ msgid "Sender" +#~ msgstr "Odosielateľ" + +#~ msgid "Message Contents" +#~ msgstr "Obsah správy" + +#~ msgid "Reply:" +#~ msgstr "Odpovedať:" diff --git a/i18n/mingleforum-sl_SI.mo b/i18n/mingleforum-sl_SI.mo new file mode 100644 index 0000000..65a00a0 Binary files /dev/null and b/i18n/mingleforum-sl_SI.mo differ diff --git a/i18n/mingleforum-sl_SI.po b/i18n/mingleforum-sl_SI.po new file mode 100644 index 0000000..a2d733a --- /dev/null +++ b/i18n/mingleforum-sl_SI.po @@ -0,0 +1,1583 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle-forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: \n" +"Last-Translator: Paul \n" +"Language-Team: Tadej Trstenjak \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" +"X-Poedit-Language: Slovenian\n" +"X-Poedit-Country: SLOVENIA\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Tok novic foruma:" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Tema foruma:" + +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "Tema:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Prispevki so onemogoceni" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Uporabnik ne obstaja" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Niste naročeni na noben prispevek" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Uredi možnosti foruma" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Dovoli drugim da vidijo moj profil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Naročen si na naslednje teme:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "Shrani možnosti" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "Goljufamo, ali ne?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Varnostna koda se ne ujema" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "Prišlo je do napake" + +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "Vpisati moraš naslov teme" + +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "Vpisati moraš sporočilo" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "ustvaril temo na forumu:" + +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "odgovoril na temo na forumu:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citiraj od" + +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr "dne" + +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "Objavi odgovor" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Tema:" + +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "Odg:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Sporočilo:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Slika" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Dodaj" + +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "Uredo objavo" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Shrani objavo" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Objavi novo temo" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Oprosti, ampak nimaš dovoljenja za objavo." + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "Novinec" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "Začetnik" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "Napreduje" + +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "Pro" + +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Možnosti" + +#: wpf.class.php:173 +msgid "Options" +msgstr "Možnosti" + +#: wpf.class.php:174 +msgid "Ads" +msgstr "Oglasi" + +#: wpf.class.php:175 +msgid "Skins" +msgstr "Preobleke" + +#: wpf.class.php:176 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategorije & Forumi" + +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "Struktura foruma" + +#: wpf.class.php:177 +msgid "Moderators" +msgstr "Moderatorji" + +#: wpf.class.php:178 +msgid "User Groups" +msgstr "Uporabniške skupine" + +#: wpf.class.php:179 +msgid "About" +msgstr "O forumu" + +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "Zadnje aktivnosti na forumu" + +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "od:" + +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "Naslov za prikaz v stranski vsrtici:" + +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "Koliko stvari bi rad prikazal?" + +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "Stran naložena v:" + +#: wpf.class.php:646 +msgid "seconds." +msgstr "sekunde." + +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:650 +msgid "Version:" +msgstr "Različica:" + +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "Gost" + +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "od" + +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "Zadnji objavljal" + +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "Do tega foruma nimaš dostopa" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "Naslov teme" + +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "Začel" + +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "Odgovori" + +#: wpf.class.php:724 +msgid "Views" +msgstr "Ogledov" + +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "Zadnja objava" + +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "Prilepljene teme" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "Premakni temo" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "Izbriši temo" + +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "Nove objave od zadnjega obiska" + +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "Teme foruma" + +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "Odstranim to temo iz email obvestil?" + +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "Dodam to temo k email obvestilom?" + +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "TEMA ZAKLENJENA" + +#: wpf.class.php:858 +msgid "Author" +msgstr "Avtor" + +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "Objave:" + +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "Hiter odgovor" + +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "Objavi hiter odgovor" + +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "Objava" + +#: wpf.class.php:941 +msgid "on:" +msgstr "dne:" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "Citiraj" + +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "Odstrani" + +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "Uredi" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "Teme:" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "Objave:" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "Nove objave" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "Ni novih objav" + +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "Označi vse 'Prebrano'" + +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "Ni še objavljenih tem." + +#: wpf.class.php:1156 +msgid "in" +msgstr "v temi" + +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "RSS Forumov" + +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "Se prepričan, da želiš to odstraniti?" + +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "Rezultati iskanja" + +#: wpf.class.php:1275 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "Nova Tema" + +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "Moderatorji:" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "Razveljavi Prilepljeno" + +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "Prilepljeno" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "Ponovno odpri" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "Zapri" + +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "Odgovori" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "Odjavi se" + +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "Prijavi se" + +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "RSS tok novic" + +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "RSS-Tok novic" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "Moj profil" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "Moj profil" + +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "Forum Domov" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "Odjava" + +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "Iskanje" + +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "Prijavljen si kot: " + +#: wpf.class.php:1728 +msgid "Username: " +msgstr "Uporabniško ime:" + +#: wpf.class.php:1729 +msgid "Password: " +msgstr "Geslo:" + +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "Zapomni si me" + +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "Nove teme od zadnjega obiska" + +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "Informacije profila:" + +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "Uredi profil" + +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "Pozdravljen" + +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "Tvoj zadnji obisk:" + +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "Pokaži nove teme od zadnjega obiska" + +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "Uredi možnosti foruma" + +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "Pozdravljen Gost, prosim prijavi se ali " + +#: wpf.class.php:1930 +msgid "register." +msgstr "registriraj." + +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Pozdravljen Gost, objavljanje v tem forumu zahteva" + +#: wpf.class.php:1935 +msgid "registration." +msgstr "registracijo." + +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "Pokaži/Skrij Glavo" + +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "Išči po forumih" + +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "Strani:" + +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "Prvi" + +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "Zadnji" + +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "Objava izbrisana" + +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Poglej profil" + +#: wpf.class.php:2279 +msgid "Bold" +msgstr "Krepko" + +#: wpf.class.php:2280 +msgid "Italic" +msgstr "Ležeče" + +#: wpf.class.php:2281 +msgid "Underline" +msgstr "Podčrtaj" + +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "Prečrtaj" + +#: wpf.class.php:2283 +msgid "Code" +msgstr "Koda" + +#: wpf.class.php:2285 +msgid "List" +msgstr "Seznam" + +#: wpf.class.php:2286 +msgid "List item" +msgstr "Polje seznama" + +#: wpf.class.php:2287 +msgid "Link" +msgstr "Povezava" + +#: wpf.class.php:2288 +msgid "Image" +msgstr "Slika" + +#: wpf.class.php:2289 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "Dodaj Hex barvo" + +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "Dodaj YouTube Video" + +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "Vgradi Google zemljevid" + +#: wpf.class.php:2298 +msgid "Smile" +msgstr "Nasmeh" + +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "Velik nasmeh" + +#: wpf.class.php:2300 +msgid "Sad" +msgstr "Žalosten" + +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "Nevtralen" + +#: wpf.class.php:2302 +msgid "Razz" +msgstr "Razz" + +#: wpf.class.php:2303 +msgid "Mad" +msgstr "Jezen" + +#: wpf.class.php:2304 +msgid "Confused" +msgstr "Zmeden" + +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "Eek!" + +#: wpf.class.php:2306 +msgid "Wink" +msgstr "Pomežik" + +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "Presenečen" + +#: wpf.class.php:2308 +msgid "Cool" +msgstr "Kul" + +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "Info Center" + +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "objav v" + +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "temah, ustvarjenih od:" + +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "članov" + +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "Zadnji član:" + +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "Nove teme od zadnjega obiska" + +#: wpf.class.php:2397 +msgid "Summary" +msgstr "Povzetek" + +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Ime:" + +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "Registriran:" + +#: wpf.class.php:2416 +msgid "Position:" +msgstr "Postavitev:" + +#: wpf.class.php:2419 +msgid "Website:" +msgstr "Spletna stran:" + +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "Biografija:" + +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "Išči izraz:" + +#: wpf.class.php:2463 +msgid "By user:" +msgstr "Po uporabniku:" + +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "Starosti sporočila:" + +#: wpf.class.php:2469 +msgid "Between" +msgstr "Med" + +#: wpf.class.php:2469 +msgid "and" +msgstr "in " + +#: wpf.class.php:2469 +msgid "days" +msgstr "dnevi" + +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "Izberi Forum(e) po katerih bo potekalo iskanje" + +#: wpf.class.php:2497 +msgid "Check all" +msgstr "Označi vse" + +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "Začni iskanje" + +#: wpf.class.php:2544 +msgid "Subject" +msgstr "Tema" + +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "Ustreznost" + +#: wpf.class.php:2547 +msgid "Posted" +msgstr "Objavljeno" + +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "Zaprta tema" + +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "Normalna tema" + +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "Vroča tema" + +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "Zelo vroča tema" + +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "Varnostna koda:" + +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "Vnesti moraš Varnostno kodo: (obvezno)" + +#: wpf.class.php:2687 +#, fuzzy +msgid "New post in forum:" +msgstr "Nov odgovor na temo foruma:" + +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "PODROBNOSTI:" + +#: wpf.class.php:2691 +msgid "Date:" +msgstr "Datum:" + +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "Vsebina odgovora:" + +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "Poglej temo tukaj:" + +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "Prejeto" + +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "Pošlji sporočilo" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategorijo" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Tema" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Izbrati moraš ime Uporabniške skupine." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Izbral si ime, ki v bazi podatkov že obstaja, prosim izberi drugo ime" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Uporabniška skupina uspešno ustvarjena." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Dodal nisi nobenega uporabnika:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Izbrati moraš uporabniško skupino" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Napaka" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Takšen uporabnik ne obstaja:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Opozorilo" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Uporabnik" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "je že v tej skupini" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "uspešno dodan" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Napake:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Opozorila:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Dodani uporabniki:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Uporabniške skupine uspešno izbrisane." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Član uspešno odstranjen" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> Urejanje Uporabniških skupin" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "Dodaj novo" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "Izbriši" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Dodaj člane" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "V tej skupini ni članov" + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Preobleka uspoešno aktivirana." + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Možnosti preoblek" + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "Več Preoblek" + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "POMEMBNO: Od različice 1.0.03 se datoteka za preobleke nahaja v /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Zakaj ste spremenili?" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Zaslonska slika" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Ime" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Različica" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Opis" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Dejanje" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "V uporabi" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Aktiviraj" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "O Mingle Forumu" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Trenutna različica:" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle forum ima eno preprosto poslanstvo; da 'OSTANE PREPROST!' Je močno izboljšano nadaljevanje WP Foruma. Popolnoma podpira integracijo z ali brez Mingle vtičnika (avtor Blair Williams). Rad bi se zahvalil Ericu Hambyu za njegovo preteklo delo na skripti foruma." + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Avtor: " + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Stran s vtičniki:" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Forum s podporo:" + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum Preobleke:" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Možnosti uspešno shranjene." + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Statistika" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Vrednost" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Število objav:" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Število tem:" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Število uporabnikov:" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Skupna velikost baze podatkov:" + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Server baze podatkov:" + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Različica Mingle Foruma:" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Splošne možnosti" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "privzeto" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Ime izbire:" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Možnost izbire" + +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "Objav na stran:" + +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "Tem na stran:" + +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "Št. objav za Vročo temo:" + +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "Št. objav za Zelo vročo temo:" + +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "Izbira prikazanega uporabniškega imena:" + +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "Naziv novega uporabnika: " + +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "Uporabnik Stopnje 1:" + +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "Št. uporabnikov Stopnje 1:" + +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "Uporabnik Stopnje 2:" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "Št. uporabnikov Stopnje 2:" + +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "Uporabnik Stopnje 3:" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "Št. uporabnikov Stopnje 3:" + +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "Obvesti admina o novih objavah" + +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "Izklopljeno" + +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "Prikaži obrazec za vpis v forum:" + +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "Vklopljeno" + +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "Pokaži Avatarje v forumu:" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "Pokaži uporabnikov Bio na dnu objav:" + +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "Uporabi RSS novice foruma:" + +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "Uporabi SEO prijazne URLje" + +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "POMEMBNO: Ne potrdi te možnosti če imaš permalinke nastavljene na 'privzeto'" + +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "Za objavo je potrebna registracija:" + +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "Nameščena različica:" + +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "GD Knjižnica ni nameščena" + +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "Uporabi Captcha za neregistrirane uporabnike:" + +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "Potrebuje " + +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Če je možnost 'Za objavo je potrebna registracija' vklopljena, potem pusti izklopljeno" + +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "Oblika datuma:" + +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "Privzet datum:" + +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "Preveri " + +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "za oblike datumov." + +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "Izbrisane skupine:" + +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "Forumi izbrisani:" + +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "Izbrisane teme" + +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "Izbrisane objave:" + +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "Vpisati moraš ime" + +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "Kategorija je bila uspešno dodana" + +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "Izbrati moraš kategorijo" + +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Izbral si ime foruma, ki v tej skupini že obstaja, prosim izberi drugega" + +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "Forum je bil uspešno dodan" + +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategorije in Forumi" + +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "Spremeni" + +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "Dodaj forum" + +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "Skupina pomaknjena dol" + +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "Forum pomaknjen navzdol" + +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "Skupina pomaknjena gor" + +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "Forum pomaknjen gor" + +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "Moderator uspešno odstranjen." + +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "Moderator uspešno shranjen." + +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "Moderator NI odstranjen." + +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "Izbrati moraš uporabnika" + +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "Globalni moderator je bil uspešno dodan" + +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "Moderator je bil uspešno dodan" + +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Uredi Moderatorje" + +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "Trenutno moderira" + +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "Posodobi" + +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Globalni moderator: (Uporabnik lahko moderira vse forume)" + +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "Ni še moderatorjev" + +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "Oglas uspešno dodan" + +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Možnosti" + +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "V spodnjih poljih za oglase je dovoljen HTML" + +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "Možnosti oglasov" + +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "Omogoči prostor nad forumom" + +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "css-vrednost:" + +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "Omogoči prostor pod forumom" + +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "Omogoči prostor nad logotipom" + +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "Omogoči prostor nad info centrom" + +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "Omogoči prostor nad novičkami" + +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "Omogoči prostor nad obrazcom 'Hiter odgovor'" + +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "Omogoči prostor pod prvim odgovorom" + +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "Spodaj lahko spreminjate/dodate lasten CSS" + +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "SPOROČILO: Če ne veste čemu služi to, pustite praznlo" + +#: fs-admin/fs-admin.php:1105 +#, fuzzy +msgid "Save Options" +msgstr "Shrani možnosti" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Dodaj forum k" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Opis:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Shrani forum" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Dodaj kategorijo" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Shrani kategorijo" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Shrani Uporabniško skupino" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Izberi Uporabniško skupino" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Dodaj uporabnike" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Potrebno je poimenovati skupino" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Skupina je bila uspešno dodana" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Potrebno je poimenovati forum" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum je bil uspešno posodobljen" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Uredi kategorijo" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Uporabniške skupine" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Člani označene uporabniške skupine imajo dostop do forumov v tej kategoriji:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Ni Uporabniških skupin" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Shrani skupino" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Uredi forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Izberi uporabnika" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Dodaj moderatorja" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Potrebno je doličiti ime Uporabniške skupine" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Uporabniška skupina je bila uspešno posodobljena" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Uredi Uporabniško skupino" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Shrani Uporabniško skupino" + +#~ msgid "General Options" +#~ msgstr "Splošne možnosti" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorije in forumi" diff --git a/i18n/mingleforum-sv_SE.mo b/i18n/mingleforum-sv_SE.mo new file mode 100644 index 0000000..fc00ec2 Binary files /dev/null and b/i18n/mingleforum-sv_SE.mo differ diff --git a/i18n/mingleforum-sv_SE.po b/i18n/mingleforum-sv_SE.po new file mode 100644 index 0000000..903915e --- /dev/null +++ b/i18n/mingleforum-sv_SE.po @@ -0,0 +1,1770 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-15 12:15-0700\n" +"PO-Revision-Date: 2011-04-15 15:58-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:24 +#: feed.php:25 +msgid "Forum Feed" +msgstr "Forum Flöde" + +#: feed.php:29 +msgid "Forum Topic:" +msgstr "Forumets ämne:" + +#: feed.php:30 +#: wpf.class.php:1808 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:30 +#: wpf.class.php:859 +msgid "Topic: " +msgstr "Ämne:" + +#: feed.php:71 +msgid "Feeds are disabled" +msgstr "Flöden är avstängda" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Ingen användare med det namnet finns" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "Du har inga prenumeranter vi denna tidpunkt" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Redigera forumalternativ" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Tillåt andra att se min profil?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Du har fått meddelanden i dessa ämnen:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:552 +msgid "Save options" +msgstr "Spara alternativ" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:615 +#: wpf.class.php:2071 +#: wpf.class.php:2097 +#: wpf.class.php:2115 +#: wpf.class.php:2137 +#: wpf.class.php:2146 +#: wpf.class.php:2204 +msgid "Cheating, are we?" +msgstr "Fuskar du?" + +#: wpf-insert.php:98 +#, fuzzy +msgid "Security code does not match" +msgstr "Säkerhetskoden matchar inte" + +#: wpf-insert.php:113 +#: wpf-insert.php:118 +#: wpf-insert.php:188 +#: wpf-insert.php:193 +#: wpf-insert.php:246 +#: wpf-insert.php:251 +msgid "An error occured" +msgstr "Ett fel uppstod" + +#: wpf-insert.php:114 +#: wpf-insert.php:189 +#: wpf-insert.php:247 +msgid "You must enter a subject" +msgstr "Du måste ange ett ämne" + +#: wpf-insert.php:119 +#: wpf-insert.php:194 +#: wpf-insert.php:252 +msgid "You must enter a message" +msgstr "Du måste skriva ett meddelande" + +#: wpf-insert.php:138 +msgid "created the forum topic:" +msgstr "skapade forumämnet:" + +#: wpf-insert.php:205 +msgid "replied to the forum topic:" +msgstr "besvarade forumämnet:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Citat från" + +#: wpf-post.php:10 +#: wpf.class.php:678 +#: wpf.class.php:687 +#: wpf.class.php:1156 +msgid "on" +msgstr "på" + +#: wpf-post.php:20 +#: wpf.class.php:1281 +#: wpf.class.php:1854 +msgid "Post Reply" +msgstr "Svara" + +#: wpf-post.php:23 +#: wpf-post.php:76 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Ämne:" + +#: wpf-post.php:24 +#: wpf.class.php:909 +msgid "Re:" +msgstr "Sv:" + +#: wpf-post.php:27 +#: wpf-post.php:80 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Meddelande:" + +#: wpf-post.php:40 +#: wpf-thread.php:30 +#, fuzzy +msgid "Images:" +msgstr "Bild" + +#: wpf-post.php:51 +#: wpf-thread.php:41 +msgid "Submit" +msgstr "Skicka" + +#: wpf-post.php:73 +#: wpf.class.php:1278 +#: wpf.class.php:1857 +msgid "Edit Post" +msgstr "Redigera inlägg" + +#: wpf-post.php:89 +msgid "Save Post" +msgstr "Spara inlägg" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Nytt ämne" + +#: wpf-thread.php:49 +msgid "Sorry. you don't have permission to post." +msgstr "Tyvärr, du har inte behörighet att skicka meddelanden." + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:441 +msgid "Newbie" +msgstr "Mini" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:445 +msgid "Beginner" +msgstr "Nybörjare" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:453 +msgid "Advanced" +msgstr "Proffs" + +#: wpf.class.php:154 +#: fs-admin/fs-admin.php:461 +msgid "Pro" +msgstr "Proffs" + +#: wpf.class.php:172 +#: wpf.class.php:173 +msgid "Mingle Forum - Options" +msgstr "Mingel Forum>> Inställningar" + +#: wpf.class.php:173 +msgid "Options" +msgstr "Inställningar" + +#: wpf.class.php:174 +msgid "Ads" +msgstr "Reklam" + +#: wpf.class.php:175 +msgid "Skins" +msgstr "Tema" + +#: wpf.class.php:176 +msgid "Forum Structure - Categories & Forums" +msgstr "Forums Uppbyggnad - Kategorier & Ämnen" + +#: wpf.class.php:176 +msgid "Forum Structure" +msgstr "Forums Uppbyggnad" + +#: wpf.class.php:177 +msgid "Moderators" +msgstr "Moderatorer" + +#: wpf.class.php:178 +msgid "User Groups" +msgstr "Användargrupper" + +#: wpf.class.php:179 +msgid "About" +msgstr "Om" + +#: wpf.class.php:190 +#: wpf.class.php:191 +msgid "Forums Latest Activity" +msgstr "Senaste forumaktivitet" + +#: wpf.class.php:210 +#: wpf.class.php:230 +msgid "by:" +msgstr "av:" + +#: wpf.class.php:247 +msgid "Title to display in the sidebar:" +msgstr "Titel som ska visas i sidomenyn:" + +#: wpf.class.php:249 +msgid "How many items would you like to display?" +msgstr "Hur många inlägg vill du visa?" + +#: wpf.class.php:646 +msgid "Page loaded in:" +msgstr "Sidan laddades på:" + +#: wpf.class.php:646 +msgid "seconds." +msgstr "sekunder." + +#: wpf.class.php:649 +msgid "Mingle Forum " +msgstr "Mingel Forum" + +#: wpf.class.php:650 +msgid "Version:" +msgstr "Version:" + +#: wpf.class.php:669 +#: wpf.class.php:2268 +msgid "Guest" +msgstr "Gäst" + +#: wpf.class.php:678 +#: wpf.class.php:1155 +msgid "by" +msgstr "av" + +#: wpf.class.php:687 +msgid "Latest Post by" +msgstr "Senaste inlägg av" + +#: wpf.class.php:710 +#: wpf.class.php:841 +msgid "Sorry, but you don't have access to this forum" +msgstr "Ledsen, men du har inte tillträde till forumet" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +msgid "Status" +msgstr "Status" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Topic Title" +msgstr "Ämnesrubrik" + +#: wpf.class.php:722 +#: wpf.class.php:2358 +#: wpf.class.php:2546 +msgid "Started by" +msgstr "Startad av" + +#: wpf.class.php:723 +#: wpf.class.php:2359 +msgid "Replies" +msgstr "Svar" + +#: wpf.class.php:724 +msgid "Views" +msgstr "Visningar" + +#: wpf.class.php:725 +#: wpf.class.php:1155 +#: wpf.class.php:2360 +msgid "Last post" +msgstr "Senaste inlägget" + +#: wpf.class.php:729 +msgid "Sticky Topics" +msgstr "Klistrade ämnen" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +#: wpf.class.php:1642 +#: wpf.class.php:1659 +msgid "Move Topic" +msgstr "Flytta ämnet" + +#: wpf.class.php:733 +#: wpf.class.php:735 +#: wpf.class.php:779 +#: wpf.class.php:781 +msgid "Delete Topic" +msgstr "Ta bort ämnet" + +#: wpf.class.php:745 +#: wpf.class.php:774 +msgid "New posts since last visit" +msgstr "Nya inlägg sedan ditt senaste besök" + +#: wpf.class.php:762 +msgid "Forum Topics" +msgstr "Forumämnen" + +#: wpf.class.php:829 +msgid "Remove this topic from your email notifications?" +msgstr "Ta bort detta ämne från dina e-postuppdateringar?" + +#: wpf.class.php:831 +msgid "Add this topic to your email notifications?" +msgstr "Lägg till detta ämne till din e-postuppdateringar?" + +#: wpf.class.php:852 +msgid "TOPIC CLOSED" +msgstr "ÄMNE LÅST" + +#: wpf.class.php:858 +msgid "Author" +msgstr "Författare" + +#: wpf.class.php:874 +#: wpf.class.php:2412 +msgid "Posts:" +msgstr "Inlägg:" + +#: wpf.class.php:907 +msgid "Quick Reply" +msgstr "Snabbsvar:" + +#: wpf.class.php:916 +msgid "Submit Quick Reply" +msgstr "Skicka Snabbsvar" + +#: wpf.class.php:938 +#: wpf_define.php:36 +msgid "Post" +msgstr "Inlägg" + +#: wpf.class.php:941 +msgid "on:" +msgstr "på" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: wpf.class.php:2284 +msgid "Quote" +msgstr "Citat" + +#: wpf.class.php:947 +#: wpf.class.php:956 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:971 +msgid "Remove" +msgstr "Ta bort" + +#: wpf.class.php:949 +#: wpf.class.php:958 +msgid "Edit" +msgstr "Redigera" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Topics: " +msgstr "Ämnen:" + +#: wpf.class.php:1032 +#: wpf.class.php:1083 +msgid "Posts: " +msgstr "Inlägg:" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "New posts" +msgstr "Nya inlägg" + +#: wpf.class.php:1042 +#: wpf.class.php:1093 +msgid "No new posts" +msgstr "Inga nya inlägg" + +#: wpf.class.php:1042 +msgid "Mark All Read" +msgstr "Markera alla som lästa" + +#: wpf.class.php:1153 +msgid "No topics yet" +msgstr "Inga inlägg ännu" + +#: wpf.class.php:1156 +msgid "in" +msgstr "i" + +#: wpf.class.php:1207 +msgid "Forums RSS" +msgstr "RSS-flöden" + +#: wpf.class.php:1218 +msgid "Are you sure you want to remove this?" +msgstr "Är du säker att du vill ta bort detta?" + +#: wpf.class.php:1272 +#: wpf.class.php:1847 +msgid "Search Results" +msgstr "Sökresultat" + +#: wpf.class.php:1275 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1284 +#: wpf.class.php:1504 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +#: wpf.class.php:1860 +msgid "New Topic" +msgstr "Nytt ämne" + +#: wpf.class.php:1351 +msgid "Moderators:" +msgstr "Moderatorer:" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Undo Sticky" +msgstr "Ångra klistrad" + +#: wpf.class.php:1529 +#: wpf.class.php:1542 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Sticky" +msgstr "Klistrad" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1641 +#: wpf.class.php:1658 +msgid "Re-open" +msgstr "Lås upp" + +#: wpf.class.php:1534 +#: wpf.class.php:1547 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Close" +msgstr "Stäng" + +#: wpf.class.php:1554 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "Reply" +msgstr "Svara" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Unsubscribe" +msgstr "Avregistrera" + +#: wpf.class.php:1563 +#: wpf.class.php:1579 +msgid "Subscribe" +msgstr "Prenumerera" + +#: wpf.class.php:1566 +msgid "RSS feed" +msgstr "RSS-flöde" + +#: wpf.class.php:1582 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "RSS-Feed" +msgstr "RSS-flöde" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My profile" +msgstr "Min profil" + +#: wpf.class.php:1620 +#: wpf.class.php:1624 +msgid "My Profile" +msgstr "Min profil" + +#: wpf.class.php:1631 +#: wpf.class.php:1648 +msgid "Forum Home" +msgstr "Forum Hem" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:1925 +msgid "Log out" +msgstr "Logga ut" + +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:2455 +msgid "Search" +msgstr "Sök" + +#: wpf.class.php:1722 +msgid "You are logged in as:" +msgstr "Du är inloggad som:" + +#: wpf.class.php:1728 +msgid "Username: " +msgstr "Användarnamn:" + +#: wpf.class.php:1729 +msgid "Password: " +msgstr "Lösenord:" + +#: wpf.class.php:1731 +msgid "Remember Me" +msgstr "Kom ihåg mig" + +#: wpf.class.php:1767 +msgid "Administrator" +msgstr "Administratör" + +#: wpf.class.php:1771 +msgid "Moderator" +msgstr "Moderator" + +#: wpf.class.php:1841 +msgid "New Topics since last visit" +msgstr "Nya ämnen sedan senaste besök" + +#: wpf.class.php:1851 +msgid "Profile Info" +msgstr "Profilinfo" + +#: wpf.class.php:1915 +msgid "Edit Profile" +msgstr "Redigera profil" + +#: wpf.class.php:1919 +#: wpf.class.php:1931 +msgid "Welcome" +msgstr "Välkommen" + +#: wpf.class.php:1920 +msgid "Your last visit was:" +msgstr "Ditt senaste besök var:" + +#: wpf.class.php:1922 +msgid "Show new topics since your last visit" +msgstr "Visa nya ämnen sedan ditt senaste besök" + +#: wpf.class.php:1923 +msgid "Edit your forum options" +msgstr "Redigera forumalternativ" + +#: wpf.class.php:1930 +msgid "Welcome Guest, please login or" +msgstr "Välkommen gäst, logga in eller" + +#: wpf.class.php:1930 +msgid "register." +msgstr "registrera nytt konto." + +#: wpf.class.php:1935 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Välkommen Gäst. För att skriva i forumet krävs" + +#: wpf.class.php:1935 +msgid "registration." +msgstr "registrering." + +#: wpf.class.php:1943 +msgid "Show/Hide Header" +msgstr "Visa/Göm Menyn" + +#: wpf.class.php:1957 +msgid "Search forums" +msgstr "Sök i forumen" + +#: wpf.class.php:1992 +#: wpf.class.php:2023 +msgid "Pages:" +msgstr "Sidor:" + +#: wpf.class.php:2005 +#: wpf.class.php:2036 +msgid "First" +msgstr "Först" + +#: wpf.class.php:2016 +#: wpf.class.php:2047 +msgid "Last" +msgstr "Sist" + +#: wpf.class.php:2134 +msgid "Post deleted" +msgstr "Post raderad" + +#: wpf.class.php:2261 +#: wpf.class.php:2265 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Visa profil" + +#: wpf.class.php:2279 +msgid "Bold" +msgstr "Fet" + +#: wpf.class.php:2280 +msgid "Italic" +msgstr "Kursiv" + +#: wpf.class.php:2281 +msgid "Underline" +msgstr "Understruken" + +#: wpf.class.php:2282 +msgid "Strikethrough" +msgstr "Genomstruken" + +#: wpf.class.php:2283 +msgid "Code" +msgstr "Kod" + +#: wpf.class.php:2285 +msgid "List" +msgstr "Lista" + +#: wpf.class.php:2286 +msgid "List item" +msgstr "Listobjekt" + +#: wpf.class.php:2287 +msgid "Link" +msgstr "Länk" + +#: wpf.class.php:2288 +msgid "Image" +msgstr "Bild" + +#: wpf.class.php:2289 +msgid "Email" +msgstr "E-post" + +#: wpf.class.php:2290 +msgid "Add Hex Color" +msgstr "Lägg till Hex Color" + +#: wpf.class.php:2291 +msgid "Embed YouTube Video" +msgstr "Bädda in YouTube-video" + +#: wpf.class.php:2292 +msgid "Embed Google Map" +msgstr "Bädda in Google Map" + +#: wpf.class.php:2298 +msgid "Smile" +msgstr "Le" + +#: wpf.class.php:2299 +msgid "Big Grin" +msgstr "Stort Flin" + +#: wpf.class.php:2300 +msgid "Sad" +msgstr "Ledsen" + +#: wpf.class.php:2301 +msgid "Neutral" +msgstr "Neutral" + +#: wpf.class.php:2302 +msgid "Razz" +msgstr "Glad" + +#: wpf.class.php:2303 +msgid "Mad" +msgstr "Arg" + +#: wpf.class.php:2304 +msgid "Confused" +msgstr "Förvirrad" + +#: wpf.class.php:2305 +msgid "Eek!" +msgstr "EEk!!!!" + +#: wpf.class.php:2306 +msgid "Wink" +msgstr "Flört" + +#: wpf.class.php:2307 +msgid "Surprised" +msgstr "Överraskad" + +#: wpf.class.php:2308 +msgid "Cool" +msgstr "Cool" + +#: wpf.class.php:2320 +msgid "Info Center" +msgstr "InfoCenter" + +#: wpf.class.php:2327 +msgid "Posts in" +msgstr "Skapat i" + +#: wpf.class.php:2327 +msgid "Topics Made by" +msgstr "Ämne skapad av" + +#: wpf.class.php:2327 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Medlemmar" + +#: wpf.class.php:2327 +msgid "Latest Member:" +msgstr "Senaste medlemmen:" + +#: wpf.class.php:2353 +msgid "New topics since your last visit" +msgstr "Nya ämnen sedan ditt senaste besök" + +#: wpf.class.php:2397 +msgid "Summary" +msgstr "Sammanfattning" + +#: wpf.class.php:2403 +#: wpf.class.php:2689 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "Namn:" + +#: wpf.class.php:2408 +msgid "Registered:" +msgstr "Registrerad:" + +#: wpf.class.php:2416 +msgid "Position:" +msgstr "Position:" + +#: wpf.class.php:2419 +msgid "Website:" +msgstr "Webbplats:" + +#: wpf.class.php:2423 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2427 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2430 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +#: wpf.class.php:2434 +msgid "Biographical Info:" +msgstr "Biografi/Om:" + +#: wpf.class.php:2459 +msgid "Search for:" +msgstr "Sök efter:" + +#: wpf.class.php:2463 +msgid "By user:" +msgstr "Av:" + +#: wpf.class.php:2468 +msgid "Message Age:" +msgstr "Meddelandeålder:" + +#: wpf.class.php:2469 +msgid "Between" +msgstr "Mellan" + +#: wpf.class.php:2469 +msgid "and" +msgstr "och" + +#: wpf.class.php:2469 +msgid "days" +msgstr "dagar" + +#: wpf.class.php:2475 +msgid "Click to choose Forum(s) to search" +msgstr "Klicka för att välja Forum att genomsöka" + +#: wpf.class.php:2497 +msgid "Check all" +msgstr "Markera alla" + +#: wpf.class.php:2502 +msgid "Start Search" +msgstr "Börja sökning" + +#: wpf.class.php:2544 +msgid "Subject" +msgstr "Ämne" + +#: wpf.class.php:2545 +msgid "Relevance" +msgstr "Relevans" + +#: wpf.class.php:2547 +msgid "Posted" +msgstr "Tillagd" + +#: wpf.class.php:2613 +msgid "Closed topic" +msgstr "Stängt ämne" + +#: wpf.class.php:2616 +msgid "Normal topic" +msgstr "Vanligt ämne" + +#: wpf.class.php:2619 +msgid "Hot topic" +msgstr "Hett ämne" + +#: wpf.class.php:2622 +msgid "Very Hot topic" +msgstr "Mycket hett ämne" + +#: wpf.class.php:2654 +msgid "Security Code:" +msgstr "Säkerhetskod:" + +#: wpf.class.php:2673 +msgid "Enter Security Code: (required)" +msgstr "Säkerhetskod (Obligatorisk):" + +#: wpf.class.php:2687 +msgid "New post in forum:" +msgstr "Nytt svar i Forum:" + +#: wpf.class.php:2688 +msgid "DETAILS:" +msgstr "Detaljer" + +#: wpf.class.php:2691 +msgid "Date:" +msgstr "Datum:" + +#: wpf.class.php:2692 +msgid "Reply Content:" +msgstr "Svars innehåll:" + +#: wpf.class.php:2693 +msgid "View Topic Here:" +msgstr "Visa rubrik här:" + +#: wpf.class.php:2742 +#: wpf.class.php:2752 +msgid "Inbox" +msgstr "Inkorgen" + +#: wpf.class.php:2768 +#: wpf.class.php:2781 +msgid "Send Message" +msgstr "Skicka meddelande" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategori" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Ämne" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Du måste ange ett namn på användargruppen." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:692 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Du har valt ett namn som redan finns i databasen, vänligen ange ett annat" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Användargruppen lades till." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Du har inte angivit någon användare att lägga till:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Du måste välja en användargrupp" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Fel" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Ingen användare med det namnet:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Varning" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Användare" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "är redan medlem i gruppen" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "lades till" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Fel:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Varningar:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Tillagda användare:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Användargruppen/ -grupperna har tagits bort." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Medlem borttagen." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingel Forum>> Hantera användargrupper" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:757 +#: fs-admin/fs-admin.php:957 +msgid "add new" +msgstr "lägg till ny" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:811 +msgid "Delete" +msgstr "Ta bort" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Lägg till medlemmar" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Inga medlemmar i denna grupp" + +#: fs-admin/fs-admin.php:222 +msgid "Skin successfully activated." +msgstr "Skalet aktiverat." + +#: fs-admin/fs-admin.php:228 +msgid "Mingle Forum >> Skin options" +msgstr "Mingel Forum>> Skalalternativ" + +#: fs-admin/fs-admin.php:229 +msgid "Get More Skins" +msgstr "Hämta fler skal" + +#: fs-admin/fs-admin.php:230 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "Viktigt: Sedan version 1.0.03 är tema mappen flyttad till /wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:230 +msgid "Why did you change it?" +msgstr "Varför då?" + +#: fs-admin/fs-admin.php:233 +msgid "Screenshot" +msgstr "Skärmdump" + +#: fs-admin/fs-admin.php:234 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "Namn" + +#: fs-admin/fs-admin.php:235 +msgid "Version" +msgstr "Version" + +#: fs-admin/fs-admin.php:236 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Beskrivning" + +#: fs-admin/fs-admin.php:237 +msgid "Action" +msgstr "Åtgärd" + +#: fs-admin/fs-admin.php:251 +#: fs-admin/fs-admin.php:266 +msgid "In Use" +msgstr "Används" + +#: fs-admin/fs-admin.php:253 +#: fs-admin/fs-admin.php:268 +msgid "Activate" +msgstr "Aktivera" + +#: fs-admin/fs-admin.php:296 +msgid "About Mingle Forum" +msgstr "Om Mingel Forum" + +#: fs-admin/fs-admin.php:299 +msgid "Current Version: " +msgstr "Aktuell version:" + +#: fs-admin/fs-admin.php:303 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingel Forumet har ett enda syfte, att \"Gör det enkelt!\" Det togs över ifrån WP forumet och har förbättrats kraftigt. Det har nu fullt stöd för integration med Mingel-pluginet av Blair Williams och kan köras både med och utan detta. Heder åt Eric Hamby för hans tidigare arbete med Forumscriptet." + +#: fs-admin/fs-admin.php:305 +msgid "Author: " +msgstr "Författare:" + +#: fs-admin/fs-admin.php:306 +msgid "Plugin Page:" +msgstr "Plugin-sida:" + +#: fs-admin/fs-admin.php:307 +msgid "Support Forum:" +msgstr "Supportforum:" + +#: fs-admin/fs-admin.php:308 +msgid "Mingle Forum Skins:" +msgstr "Mingel Forum Teman" + +#: fs-admin/fs-admin.php:355 +msgid "Options successfully saved." +msgstr "Alternativen sparade." + +#: fs-admin/fs-admin.php:360 +msgid "Mingle Forum" +msgstr "Mingel Forum" + +#: fs-admin/fs-admin.php:364 +msgid "Statistic" +msgstr "Statistik" + +#: fs-admin/fs-admin.php:365 +msgid "Value" +msgstr "Värde" + +#: fs-admin/fs-admin.php:369 +msgid "Number of posts:" +msgstr "Antal inlägg:" + +#: fs-admin/fs-admin.php:373 +msgid "Number of threads:" +msgstr "Antal trådar:" + +#: fs-admin/fs-admin.php:377 +msgid "Number of users:" +msgstr "Antal användare:" + +#: fs-admin/fs-admin.php:381 +msgid "Total database size:" +msgstr "Totalt databasstorlek:" + +#: fs-admin/fs-admin.php:385 +msgid "Database server:" +msgstr "Databasservern:" + +#: fs-admin/fs-admin.php:389 +msgid "Mingle Forum version:" +msgstr "Mingel Forum-version:" + +#: fs-admin/fs-admin.php:394 +msgid "Mingle Forum >> General Options" +msgstr "Mingel Forum>> Allmänna alternativ" + +#: fs-admin/fs-admin.php:399 +msgid "default " +msgstr "standard" + +#: fs-admin/fs-admin.php:403 +msgid "Option Name" +msgstr "Alternativ Namn" + +#: fs-admin/fs-admin.php:404 +msgid "Option Input" +msgstr "Alternativ inmatning" + +#: fs-admin/fs-admin.php:409 +msgid "Posts per page:" +msgstr "Inlägg per sida:" + +#: fs-admin/fs-admin.php:413 +msgid "Threads per page:" +msgstr "Trådar per sida:" + +#: fs-admin/fs-admin.php:419 +msgid "Number of posts for Hot Topic:" +msgstr "Antalet inlägg under hett ämne:" + +#: fs-admin/fs-admin.php:423 +msgid "Number of posts for Very Hot Topic:" +msgstr "Antalet inlägg under Mycket hett ämne:" + +#: fs-admin/fs-admin.php:427 +msgid "Username Display:" +msgstr "Användarnamn:" + +#: fs-admin/fs-admin.php:440 +msgid "New User's Title:" +msgstr "Titel för nya användare:" + +#: fs-admin/fs-admin.php:444 +msgid "User Level 1 Title:" +msgstr "Titel på Nivå 1-användare:" + +#: fs-admin/fs-admin.php:448 +msgid "User Level 1 Count:" +msgstr "Antal användare på Nivå 1:" + +#: fs-admin/fs-admin.php:449 +msgid "25" +msgstr "25" + +#: fs-admin/fs-admin.php:452 +msgid "User Level 2 Title:" +msgstr "Titel på Nivå 2-användare:" + +#: fs-admin/fs-admin.php:456 +msgid "User Level 2 Count:" +msgstr "Antal användare på Nivå 2:" + +#: fs-admin/fs-admin.php:457 +msgid "50" +msgstr "50" + +#: fs-admin/fs-admin.php:460 +msgid "User Level 3 Title:" +msgstr "Titel på Nivå 3-användare:" + +#: fs-admin/fs-admin.php:464 +msgid "User Level 3 Count:" +msgstr "Antal användare på Nivå 3:" + +#: fs-admin/fs-admin.php:465 +msgid "100" +msgstr "100" + +#: fs-admin/fs-admin.php:468 +msgid "Notify Admin on new posts:" +msgstr "Informera Administratören om nya inlägg:" + +#: fs-admin/fs-admin.php:472 +#: fs-admin/fs-admin.php:495 +#: fs-admin/fs-admin.php:519 +msgid "Off" +msgstr "Av" + +#: fs-admin/fs-admin.php:475 +msgid "Show Forum Login Form:" +msgstr "Visa Forumets Loggin mall:" + +#: fs-admin/fs-admin.php:479 +#: fs-admin/fs-admin.php:487 +#: fs-admin/fs-admin.php:503 +#: fs-admin/fs-admin.php:511 +#: fs-admin/fs-admin.php:527 +msgid "On" +msgstr "På" + +#: fs-admin/fs-admin.php:483 +msgid "Show Avatars in the forum:" +msgstr "Visa avatarer i forumet:" + +#: fs-admin/fs-admin.php:491 +msgid "Allow Images to be uploaded:" +msgstr "" + +#: fs-admin/fs-admin.php:499 +msgid "Show users Bio at the bottom of posts:" +msgstr "Visa användarnas Profil info i slutet av inlägg:" + +#: fs-admin/fs-admin.php:507 +msgid "Use Forum RSS:" +msgstr "RSS-flöden" + +#: fs-admin/fs-admin.php:515 +msgid "Use SEO friendly URLs:" +msgstr "Använd SEO vänliga URLs:" + +#: fs-admin/fs-admin.php:515 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "VIKTIGT: Lämna denna AV om dina permalänkar är satta till 'default'" + +#: fs-admin/fs-admin.php:523 +msgid "Registration required to post:" +msgstr "Registrering krävs för att skriva:" + +#: fs-admin/fs-admin.php:532 +msgid "Installed version:" +msgstr "Installerad versionen:" + +#: fs-admin/fs-admin.php:536 +msgid "GD Library is not installed" +msgstr "GD-biblioteket är inte installerat" + +#: fs-admin/fs-admin.php:539 +msgid "Use Captcha for unregistered users:" +msgstr "Använd Captcha för oregistrerade användare:" + +#: fs-admin/fs-admin.php:543 +msgid "Requires " +msgstr "Kräver" + +#: fs-admin/fs-admin.php:543 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Om du har 'Måste vara medlem för att göra inlägg' aktiverat, lämmna denna AV" + +#: fs-admin/fs-admin.php:547 +msgid "Date format:" +msgstr "Datumformat:" + +#: fs-admin/fs-admin.php:547 +msgid "Default date:" +msgstr "Standard datum:" + +#: fs-admin/fs-admin.php:547 +msgid "Check " +msgstr "Kontrollera" + +#: fs-admin/fs-admin.php:547 +msgid "for date formatting." +msgstr "för datum formatering." + +#: fs-admin/fs-admin.php:663 +msgid "Groups deleted:" +msgstr "Grupper raderade:" + +#: fs-admin/fs-admin.php:664 +msgid "Forums deleted:" +msgstr "Forum raderade:" + +#: fs-admin/fs-admin.php:665 +msgid "Threads deleted:" +msgstr "Trådar raderade:" + +#: fs-admin/fs-admin.php:666 +msgid "Posts deleted:" +msgstr "Inlägg raderade:" + +#: fs-admin/fs-admin.php:690 +#: fs-admin/fs-admin.php:714 +msgid "You must enter a name" +msgstr "Du måste ange ett namn" + +#: fs-admin/fs-admin.php:699 +msgid "Category added successfully" +msgstr "Kategori tillagd" + +#: fs-admin/fs-admin.php:711 +msgid "You must select a category" +msgstr "Du måste välja en kategori" + +#: fs-admin/fs-admin.php:717 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Du har valt ett forumnamn som redan finns i den här gruppen. Vänligen ange ett annat" + +#: fs-admin/fs-admin.php:724 +msgid "Forum added successfully" +msgstr "Forum tillagt" + +#: fs-admin/fs-admin.php:751 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingel Forum>> Kategorier och forum" + +#: fs-admin/fs-admin.php:773 +#: fs-admin/fs-admin.php:803 +msgid "Modify" +msgstr "Ändra" + +#: fs-admin/fs-admin.php:812 +msgid "Add forum" +msgstr "Lägg till forum" + +#: fs-admin/fs-admin.php:837 +msgid "Group Moved Down" +msgstr "Flytta upp Grupp" + +#: fs-admin/fs-admin.php:847 +msgid "Forum Moved Down" +msgstr "Flytta ner Forum" + +#: fs-admin/fs-admin.php:857 +msgid "Group Moved Up" +msgstr "Flytta ner Grupp" + +#: fs-admin/fs-admin.php:867 +msgid "Forum Moved Up" +msgstr "Flytta upp Forum" + +#: fs-admin/fs-admin.php:904 +#: fs-admin/fs-admin.php:911 +msgid "Moderator successfully removed." +msgstr "Moderator borttagen." + +#: fs-admin/fs-admin.php:906 +msgid "Moderator successfully saved." +msgstr "Moderator sparad." + +#: fs-admin/fs-admin.php:913 +msgid "Moderator NOT removed." +msgstr "Moderator EJ borttagen." + +#: fs-admin/fs-admin.php:927 +msgid "You must select a user" +msgstr "Du måste välja en användare" + +#: fs-admin/fs-admin.php:931 +msgid "Global Moderator added successfully" +msgstr "Global Moderator tillagd" + +#: fs-admin/fs-admin.php:935 +msgid "Moderator added successfully" +msgstr "Moderator tillagd" + +#: fs-admin/fs-admin.php:957 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingel Forum>> Hantera Moderatorer" + +#: fs-admin/fs-admin.php:966 +msgid "Currently moderating" +msgstr "Modererar just nu" + +#: fs-admin/fs-admin.php:970 +msgid "Update" +msgstr "Uppdatera" + +#: fs-admin/fs-admin.php:980 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global moderator: (Medlemmen kan moderera alla forum)" + +#: fs-admin/fs-admin.php:999 +msgid "No moderators yet" +msgstr "Inga moderatorer ännu" + +#: fs-admin/fs-admin.php:1024 +msgid "Ads saved successfully" +msgstr "Reklamen sparades" + +#: fs-admin/fs-admin.php:1029 +msgid "Mingle Forum Ads >> options" +msgstr "Mingel Forum Reklam>> Alternativ" + +#: fs-admin/fs-admin.php:1031 +msgid "HTML is allowed in all ad areas below" +msgstr "HTML är godkända i alla reklam områden nedanför" + +#: fs-admin/fs-admin.php:1035 +msgid "Ads Option" +msgstr "Reklam Inställningar" + +#: fs-admin/fs-admin.php:1042 +msgid "Enable Area Above Forum" +msgstr "Aktivera området ovanför Forum" + +#: fs-admin/fs-admin.php:1044 +#: fs-admin/fs-admin.php:1052 +#: fs-admin/fs-admin.php:1060 +#: fs-admin/fs-admin.php:1068 +#: fs-admin/fs-admin.php:1076 +#: fs-admin/fs-admin.php:1084 +#: fs-admin/fs-admin.php:1092 +msgid "css-value:" +msgstr "css-värde:" + +#: fs-admin/fs-admin.php:1050 +msgid "Enable Area Below Forum" +msgstr "Aktivera området nedanför Forum" + +#: fs-admin/fs-admin.php:1058 +msgid "Enable Area Above Branding" +msgstr "Aktivera området ovanför Märkningen" + +#: fs-admin/fs-admin.php:1066 +msgid "Enable Area Above Info Center" +msgstr "Aktivera område ovanför Informationen" + +#: fs-admin/fs-admin.php:1074 +msgid "Enable Area Above Breadcrumbs" +msgstr "Aktivera området ovanför brödsmulorna" + +#: fs-admin/fs-admin.php:1082 +msgid "Enable Area Above Quick Reply Form" +msgstr "Aktivera området ovanför Snabbsvars mallen" + +#: fs-admin/fs-admin.php:1090 +msgid "Enable Area Below First Post" +msgstr "Aktivera området nedanför första inlägget" + +#: fs-admin/fs-admin.php:1097 +msgid "Below you can modify/add your own CSS" +msgstr "Nedanför kan du ändra/lägga till den egen CSS" + +#: fs-admin/fs-admin.php:1098 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "NOTERING: Om du inte vet vad detta är till för, lämmna det tomt" + +#: fs-admin/fs-admin.php:1105 +msgid "Save Options" +msgstr "Spara inställningar" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Lägg till forum till" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Beskrivning:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Spara forum" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "Lägg till Kategori" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "Spara Kategori" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Spara användargrupp" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Välj användargrupp" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Lägg till användare" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Du måste ange ett gruppnamn" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Gruppen har uppdaterats" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Du måste ange ett forumnamn" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forumet har uppdaterats" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Redigera kategori" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Användargrupper:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Medlemmarna i markerade användargrupper har tillgång till forumen i den här kategorin:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Det finns inga användargrupper" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Spara grupp" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Redigera forum" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Välj användare" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Lägg till moderator" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Du måste ange ett namn för användargruppen" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Användargruppen har uppdaterats" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Redigera användragruppen" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Spara användargruppen" + +#~ msgid "General Options" +#~ msgstr "Allmänna alternativ" + +#~ msgid "Categories and forums" +#~ msgstr "Kategorier och forum" + +#~ msgid "Remove this post?" +#~ msgstr "Ta bort det här inlägget?" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Meddela mig när jag får nya meddelanden?" + +#~ msgid "Messages" +#~ msgstr "Meddelanden:" + +#~ msgid "New Message" +#~ msgstr "Nytt meddelande" + +#~ msgid "Read Message Thread" +#~ msgstr "Läs meddelandetråd" + +#~ msgid "new" +#~ msgstr "nytt" + +#~ msgid "Use Private Messages:" +#~ msgstr "Använd Privata meddelanden:" + +#~ msgid "I recommend disabling this and using" +#~ msgstr "Jag rekommenderar att inaktivera denna och använda" + +#~ msgid "instead." +#~ msgstr " istället." + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "Max antal meddelanden i Inkorgen (0 = obegränsat):" + +#~ msgid "Administratos always have unlimited messages" +#~ msgstr "Adminstratörer har obegränsad storlek på inkorgen" + +#~ msgid "Message Deleted" +#~ msgstr "Meddelandet raderat" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "Ditt meddelande har raderats!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "Tillbaka till inkorgen" + +#~ msgid "ERROR" +#~ msgstr "FEL" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "Du har inte behörighet att visa denna!" + +#~ msgid "Create New Message" +#~ msgstr "Skapa nytt meddelande" + +#~ msgid "Unlimited" +#~ msgstr "Obegränsat" + +#~ msgid "Message Box Size" +#~ msgstr "Meddelandeboxens storlek" + +#~ msgid "of" +#~ msgstr "av" + +#~ msgid "Message Box Is Full!" +#~ msgstr "Inkorgen är full!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "Du kan inte skicka eller ta emot några nya meddelanden" + +#~ msgid "Started By" +#~ msgstr "Startad av" + +#~ msgid "Last Reply" +#~ msgstr "Senaste svar" + +#~ msgid "Unread" +#~ msgstr "Oläst(a)" + +#~ msgid "Read" +#~ msgstr "Läst(a)" + +#~ msgid "No Messages" +#~ msgstr "Inga meddelanden" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "Du har inga nya meddelanden" + +#~ msgid "Message Sent" +#~ msgstr "Meddelandet skickat" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "Meddelandet har skickats!" + +#~ msgid "Back To Your Messages" +#~ msgstr "Tillbaka till inkorgen" + +#~ msgid "You have recieved a new message from" +#~ msgstr "Du har fått ett nytt meddelande från" + +#~ msgid "follow this link to view:" +#~ msgstr "följ denna länk för att se:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "Meddelandet kunde inte skickas!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "Mottagarens inkorg är full!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "Fyll i alla fält innan du skickar meddelandet!" + +#~ msgid "To:" +#~ msgstr "Till:" + +#~ msgid "Select User" +#~ msgstr "Välj användare" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "" +#~ "Klicka i fältet och börja skriva medlemsnamnet för at hitta dem snabbare" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "Du måste vara inloggad för att kunna skapa personliga meddelanden!" + +#~ msgid "Sender" +#~ msgstr "Avsändare" + +#~ msgid "Message Contents" +#~ msgstr "Meddelandeinnehåll" + +#~ msgid "Reply:" +#~ msgstr "Svara:" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "E-post" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingel Forum-teman:" + +#~ msgid "Posts" +#~ msgstr "Inlägg" + +#~ msgid "Topics " +#~ msgstr "Ämnen" + +#~ msgid "Posted on: " +#~ msgstr "Skrivet den:" + +#~ msgid "Allow email notifications?" +#~ msgstr "Tillåt e-postmeddelanden?" + +#~ msgid "Notify" +#~ msgstr "Underrätta" + +#~ msgid "View Inbox" +#~ msgstr "Visa Inkorgen" + +#~ msgid "Contact:" +#~ msgstr "Kontakt:" + +#~ msgid "Inbox size" +#~ msgstr "Inkorgen storlek" + +#~ msgid "total" +#~ msgstr "totalt" + +#~ msgid "From" +#~ msgstr "Från" + +#~ msgid "NEW" +#~ msgstr "NY" + +#~ msgid "OLD" +#~ msgstr "GAMMAL" + +#~ msgid "Empty Inbox" +#~ msgstr "Tomma Inkorg" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "Inkorgen är tom!" + +#~ msgid "Try Again" +#~ msgstr "Försök igen" + +#~ msgid "Reply To Message" +#~ msgstr "Svara på meddelande" diff --git a/i18n/mingleforum-th.mo b/i18n/mingleforum-th.mo new file mode 100644 index 0000000..87f0add Binary files /dev/null and b/i18n/mingleforum-th.mo differ diff --git a/i18n/mingleforum-th.po b/i18n/mingleforum-th.po new file mode 100644 index 0000000..309321b --- /dev/null +++ b/i18n/mingleforum-th.po @@ -0,0 +1,1717 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "หัวข้อ:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "เปลี่ยนแปลงตัวเลือก" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "อนุญาตให้บุคคลอื่นดูข้อมูลส่วนตัว?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "มีการแจ้งเตือนทางอีเมล์สำหรับหัวข้อ:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "คุณต้องใส่หัวข้อ" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "คุณต้องใส่ข้อความ" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "เขียนหัวข้อ:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "ตอบกลับหัวข้อ:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "อ้างถึงคำพูด" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "เมื่อ" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "ตอบ" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "หัวข้อ:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "ตอบ:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "ข้อความ:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "ส่งข้อความ" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "แก้ไขข้อความ" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "บันทึก" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "เริ่มหัวข้อใหม่" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "ขออภัย, คุณไม่ได้รับอนุญาตให้เขียนข้อความ" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +msgid "Pro" +msgstr "" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "เปลี่ยนแปลงตัวเลือก" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "" + +#: wpf.class.php:175 +msgid "Forum Structure - Categories & Forums" +msgstr "" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "" + +#: wpf.class.php:178 +msgid "About" +msgstr "" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "โดย:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "บุคคลทั่วไป" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "โดย" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "กระทู้ล่าสุด โดย" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "สถานะ" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "หัวข้อ" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "เริ่มโดย" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "ตอบ" + +#: wpf.class.php:722 +msgid "Views" +msgstr "อ่าน" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "กระทู้ล่าสุด" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "หัวข้อติดหมุด" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "ย้ายหัวข้อ" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "ลบหัวข้อ" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "ข้อความที่ยังไม่ได้อ่าน" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "ยกเลิกการแจ้งเตือนหัวข้อนี้?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "คุณแน่ใจหรือไม่ที่จะเปิดการเตือนเมื่อมีการตอบกระทู้ในหัวข้อนี้?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "" + +#: wpf.class.php:856 +msgid "Author" +msgstr "ผู้เขียน" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "กระทู้:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "ตอบกลับ:" + +#: wpf.class.php:914 +#, fuzzy +msgid "Submit Quick Reply" +msgstr "ตอบกลับ:" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "กระทู้" + +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "เมื่อ" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "ใส่การอ้างถึงคำพูด" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "ลบทิ้ง" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "แก้ไข" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "หัวข้อ:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "กระทู้:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "กระทู้ใหม่" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "ไม่มีกระทู้ใหม่" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "ยังไม่มีหัวข้อใหม่" + +#: wpf.class.php:1154 +msgid "in" +msgstr "ใน" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "ค้นหา" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "เริ่มหัวข้อใหม่" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "ยกเลิกการติดหมุด" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "ติดหมุด" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#, fuzzy +msgid "Re-open" +msgstr "ลบทิ้ง" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +#, fuzzy +msgid "Close" +msgstr "ใส่โค้ด" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "ตอบ" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "แจ้งเตือน" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "แจ้งเตือน" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "ข้อมูลส่วนตัว" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "ข้อมูลส่วนตัว" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "หน้าแรก" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "ออกจากระบบ" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "ค้นหา" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "ชื่อผู้ใช้:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "รหัสผ่าน:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "คงสถานะการเข้าระบบไว้ตลอด" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "กระทู้ที่ยังไม่ได้อ่าน" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "ข้อมูลส่วนตัว" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "แก้ไขข้อมูลส่วนตัว" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "ยินดีต้อนรับ" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "ใช้งานล่าสุดเมื่อ:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "แสดงกระทู้ที่ยังไม่ได้อ่าน" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "เปลี่ยนแปลงตัวเลือก" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "ยินดีต้อนรับ บุคคลทั่วไป, กรุณา เข้าสู่ระบบ หรือ" + +#: wpf.class.php:1928 +msgid "register." +msgstr "ลงทะเบียน" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "ยินดีต้อนรับ บุคคลทั่วไป, กรุณา เข้าสู่ระบบ หรือ " + +#: wpf.class.php:1933 +msgid "registration." +msgstr "ลงทะเบียน" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "ค้นหา" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "หน้า:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +msgid "First" +msgstr "" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "กระทู้ล่าสุด" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "ดูข้อมูลส่วนตัว" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "ตัวหนา" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "ตัวเอียง" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "ขีดเส้นใต้" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "ขีดฆ่า" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "ใส่โค้ด" + +#: wpf.class.php:2283 +msgid "List" +msgstr "" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "ใส่ลิ้งค์" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "ใส่รูป" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "ใส่อีเมล์" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "ใส่รหัสสี" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "ใส่ YouTube" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +#, fuzzy +msgid "Smile" +msgstr "ใส่อีเมล์" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +#, fuzzy +msgid "Sad" +msgstr "และ" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +#, fuzzy +msgid "Mad" +msgstr "และ" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +#, fuzzy +msgid "Wink" +msgstr "ใส่ลิ้งค์" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Posts in" +msgstr "กระทู้:" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Topics Made by" +msgstr "โดย" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "สมาชิก" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "สมาชิกล่าสุด:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "กระทู้ที่ยังไม่ได้อ่าน" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "ชื่อ:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "ลงทะเบียนเมื่อ:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "ตำแหน่ง:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "เว็บไซท์:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "ข้อมูลชีวประวัติ:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "ค้นหาสำหรับ:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "โดยผู้ใช้งาน:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "อายุข้อความ:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "ระหว่าง" + +#: wpf.class.php:2467 +msgid "and" +msgstr "และ" + +#: wpf.class.php:2467 +msgid "days" +msgstr "วัน" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "กดที่นี่เพื่อเลือกบอร์ดที่ต้องการค้นหา หรือ" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "เลือกทั้งหมด" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "ค้นหา" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "หัวข้อ" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "หัวข้อปกติ" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "" + +#: wpf.class.php:2671 +msgid "Enter Security Code: (required)" +msgstr "" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "ตอบกลับหัวข้อ:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "" + +#: wpf.class.php:2689 +#, fuzzy +msgid "Date:" +msgstr "ชื่อ:" + +#: wpf.class.php:2690 +#, fuzzy +msgid "Reply Content:" +msgstr "รายละเอียดข้อความ" + +#: wpf.class.php:2691 +#, fuzzy +msgid "View Topic Here:" +msgstr "เริ่มหัวข้อใหม่" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "ส่งข้อความ" + +#: wpf_define.php:33 +msgid "Category" +msgstr "" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "หัวข้อ" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "ลบ" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "" + +#: fs-admin/fs-admin.php:426 +#, fuzzy +msgid "Username Display:" +msgstr "ชื่อผู้ใช้:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "ไม่มีกระทู้ใหม่" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +msgid "Use Forum RSS:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "" + +#: fs-admin/fs-admin.php:538 +#, fuzzy +msgid "Check " +msgstr "เลือกทั้งหมด" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "" + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "หน้าแรก" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "หน้าแรก" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "ข้อความส่งไปยังผู้รับเรียบร้อยแล้ว!" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "เปลี่ยนแปลงตัวเลือก" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "บันทึกการเปลี่ยนแปลง" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "" + +#: fs-admin/wpf-add-group.php:5 +msgid "Add category" +msgstr "" + +#: fs-admin/wpf-add-group.php:19 +msgid "Save category" +msgstr "" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "" + +#~ msgid "Remove this post?" +#~ msgstr "ลบข้อความ?" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "แจ้งเตือนเมื่อมีผู้ตอบกระทู้?" + +#~ msgid "Messages" +#~ msgstr "ข้อความส่วนตัว" + +#~ msgid "New Message" +#~ msgstr "ข้อความใหม่" + +#~ msgid "Read Message Thread" +#~ msgstr "อ่านข้อความ" + +#~ msgid "new" +#~ msgstr "ข้อความใหม่" + +#~ msgid "Message Deleted" +#~ msgstr "ลบข้อความ" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "ลบข้อความของคุณแล้ว!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "กลับไป ตู้ข้อความ" + +#~ msgid "ERROR" +#~ msgstr "ผิดพลาด" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "คุณไม่ได้รับอนุญาตให้ดูข้อความนี้ กรุณาเข้าสู่ระบบ!" + +#~ msgid "Create New Message" +#~ msgstr "เขียนข้อความใหม่" + +#~ msgid "Unlimited" +#~ msgstr "ไม่จำกัด" + +#~ msgid "Message Box Size" +#~ msgstr "ข้อความในตู้รับข้อความ" + +#~ msgid "of" +#~ msgstr "จาก" + +#~ msgid "Message Box Is Full!" +#~ msgstr "ตู้ข้อความเต็ม!" + +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "คุณไม่สามารถส่งหรือรับข้อความใหม่" + +#~ msgid "Started By" +#~ msgstr "จาก" + +#~ msgid "Last Reply" +#~ msgstr "ตอบกลับ" + +#~ msgid "Unread" +#~ msgstr "ยังไม่อ่าน" + +#~ msgid "Read" +#~ msgstr "อ่าน" + +#~ msgid "No Messages" +#~ msgstr "ไม่มีข้อความ" + +#~ msgid "Sorry You Have No Messages!" +#~ msgstr "ไม่มีข้อความส่งถึงคุณ!" + +#~ msgid "Message Sent" +#~ msgstr "ส่งข้อความแล้ว" + +#~ msgid "Back To Your Messages" +#~ msgstr "กลับไป ตู้ข้อความ" + +#~ msgid "You have recieved a new message from" +#~ msgstr "คุณได้รับข้อความใหม่จาก" + +#~ msgid "follow this link to view:" +#~ msgstr "กดลิ้งค์เพื่อดูข้อความ:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "ไม่สามารถส่งข้อความได้!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "ตู้รับข้อความเต็ม!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "กรุณาใส่รายละเอียดให้ครบถ้วนก่อนส่งข้อความ!" + +#~ msgid "To:" +#~ msgstr "ถึง:" + +#~ msgid "Select User" +#~ msgstr "เลือกผู้รับข้อความ" + +#~ msgid "Click this box and begin typing the username to find them faster" +#~ msgstr "พิมพ์ชื่อผู้รับลงในช่องเพื่อช่วยในการค้นหา" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "คุณต้องเข้าสู่ระบบเพื่อเขียนข้อความ!" + +#~ msgid "Sender" +#~ msgstr "ผู้ส่ง" + +#~ msgid "Message Contents" +#~ msgstr "รายละเอียดข้อความ" + +#~ msgid "Reply:" +#~ msgstr "ตอบกลับ:" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "ใส่อีเมล์" + +#~ msgid "Posts" +#~ msgstr "กระทู้" + +#, fuzzy +#~ msgid "Topics " +#~ msgstr "หัวข้อ:" + +#~ msgid "Topics" +#~ msgstr "หัวข้อ" diff --git a/i18n/mingleforum-tr_TR.mo b/i18n/mingleforum-tr_TR.mo new file mode 100644 index 0000000..c31b78c Binary files /dev/null and b/i18n/mingleforum-tr_TR.mo differ diff --git a/i18n/mingleforum-tr_TR.po b/i18n/mingleforum-tr_TR.po new file mode 100644 index 0000000..993d4da --- /dev/null +++ b/i18n/mingleforum-tr_TR.po @@ -0,0 +1,1613 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2;plural=n != 1;\n" +"X-Poedit-Language: Danish\n" +"X-Poedit-Country: DENMARK\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_n_noop:1,2;_nx_noop:4c,1,2;_x:1,2c;_c;esc_html__;esc_html_e;esc_html_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c\n" +"X-Poedit-Basepath: c:\\wamp\\www\\plugintester\\wp-content\\plugins\\mingle-forum\\\n" +"X-Poedit-SearchPath-0: c:\\wamp\\www\\plugintester\\wp-content\\plugins\\mingle-forum\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Beslemeleri" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "Forum Konusu:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "Forum" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "Konu:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "Kullanıcı bulunamadı" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "Forum seçeneklerini düzenle" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "Başkaları profilini görsün mü?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "Bu konularda email bildirilerin var:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "Ayarları kaydet" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Hile ha?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "Güvenlik kodu uyuşmuyor" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "Bir hata oluştu" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "Konu girmelisiniz" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "Mesaj girmelisiniz" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr " forum konusu oluşturdu:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "forum konusuna cevap yazdıt:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "Alıntıla" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "den" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "Konu Cevapla" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "Konu:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "Mesaj:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "Gönder" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "Yazıyı Düzenle" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "Yazıyı Kaydet" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "Yeni Konu Yaz" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "Üzgünüz. Yazma hakkınız yok." + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profil" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> Tema özellikleri" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "Ayar Adı" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "Temalar" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "Kategoriler & Forumlar" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "Moderatörler" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "Kullanıcı Grupları" + +#: wpf.class.php:178 +msgid "About" +msgstr "Hakkında" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "Son Forum Aktiviteleri" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "tarafından:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "Yan menüde gösterilecek başlık:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "Kaç tane gösterilsin?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Sayfa yükleme süresi:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "saniyedir." + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "Versiyon:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "Misafir" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "tarafından" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "Son mesaj:" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "Üzgünüz ama forumu okumaya yetkili değilsiniz." + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "Durum" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "Konu Başlığı" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "Başlatan:" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "Cevaplar" + +#: wpf.class.php:722 +msgid "Views" +msgstr "Görüntüle" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "Son mesaj" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "Yapışkan Konular" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "Konu Taşı" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "Konu Sil" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "Son ziyaretinizden bu yana yeni konular" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "Forum Konuları" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "Bu başlığı email bildirilerinden kaldır?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Bu başlığı email bildirilerine ekle?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "KONU KAPALI" + +#: wpf.class.php:856 +msgid "Author" +msgstr "Yazan" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Yazılar:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "Cevapla" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Yazı" + +#: wpf.class.php:939 +msgid "on:" +msgstr "den:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "Alıntıla" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "Kaldır" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "Düzenle" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "Başlıklar: " + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "Yazılar: " + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "Yeni yazılar" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "Yeni yazı yok" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "Yeni başlık yok" + +#: wpf.class.php:1154 +msgid "in" +msgstr "içinde" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "Forum-RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "Arama Sonuçları" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profil" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "Yeni Konu" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "Moderatorler:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "Yapışkan kaldır" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "Yapışkan" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "Tekrar Aç" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "Kapat" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "Cevapla" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "Abone ol" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "Abone ol" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS-beslemeleri" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "RSS-beslemeleri" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "Profilim" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "Profilim" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "Forum Ana Sayfa" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "Çıkış" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "Ara" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "Giriş yaptınız:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "Kullanıcı Adı: " + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "Şifre: " + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "Hatırla" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Admin" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "Moderatör" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "Son girişten bu yana yeni konular" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "Profil Bilgisi" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "Profil Düzenle" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "Hoşgeldiniz" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "Son ziyaretiniz:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "Son ziyaretinizden bu yana yeni konuları göster" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "Forum seçeneklerini düzenle" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "Hoşgeldin Ziyaretçi, lütfen giriş yap ya da" + +#: wpf.class.php:1928 +msgid "register." +msgstr "kayıt ol." + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "Hoşgeldin Ziyaretçi, foruma yazabilmek için" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "kayıt gereklidir." + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "Üst Kısım Göster/Gizle" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "Forumları Ara" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "Sayfalar:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "Liste" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "Liste" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "Yazı silindi" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "Profili Görüntüle" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "Koyu" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "Italik" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "Altı Çizili" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "Üstü Çizili" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Kod" + +#: wpf.class.php:2283 +msgid "List" +msgstr "Liste" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "Listele" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "Bağlantı" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "Resim" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "E-mail" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Hex Renk Ekle" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "YouTube Video Göm" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "Gülücük" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "Büyük Gülücük" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "Üzgün" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "Nötr" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "Dil Çıkar" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "Çılgın" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "Şaşkın" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "Oy" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "Göz Kırp" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "Şaşırmış" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "Serinkanlı" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Bilgi Merkezi" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "Konusu" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "Konuları yapan" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "Üyeler" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "Son Üye:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "Son ziyaretinizden bu yana konular" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "Özet" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "İsim:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "Kayıtlı:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "Yer:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "Web Site:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/Google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "Biyografi:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "Ara:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "Kullanıcı tarafından:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Mesaj Yaşı:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "arasında" + +#: wpf.class.php:2467 +msgid "and" +msgstr "ve" + +#: wpf.class.php:2467 +msgid "days" +msgstr "gün" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "Aramak için forum seçin" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "Hepsini kontrol et" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "Arama Yap" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "Konu" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Sıralama" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "Yazılı" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "Kapalı Konu" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "Normal Konu" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "Sıcak Konu" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "Çok Sıcak Konu" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "Güvenlik Kodu:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "Güvenlik Kodu:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "Forum konusuna yeni cevap:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "DETAYLAR:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "Tarih:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "Cevap İçeriği:" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "Başlığı burada görüntüle:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "Gelen kutusu" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "Mesaj Gönder" + +#: wpf_define.php:33 +msgid "Category" +msgstr "Kategori" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "Konu" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "Grup adı belirtmelisiniz." + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "Varolan bir kullanıcı adı seçtiniz. Lütfen başkasını seçiniz" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "Kullanıcı grubu başarıyla eklendi." + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "Ekleyecek kullanıcı seçmediniz:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "Kullanıcı grubu seçmelisiniz" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "Hata" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "Böyle bir kullanıcı yok:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "Uyarı" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "Kullanıcı" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "zaten bu grupta" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "başarıyla eklendi" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "Hatalar:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "Uyarılar:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "Eklenen Kullanıcılar:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "Kullanıcı grupları başarıyla silindi." + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "Üye başarıyla kaldırıldı." + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >>Kullanıcı Gruplarını Yönet" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "yeni ekle" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "Sil" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "Üye ekle" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "Bu grupta üye yok" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "Tema başarıyla etkinleştirildi." + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> Tema özellikleri" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "Daha fazla tema bul" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "ÖNEMLİ: 1.0.03 versiyonuyla birlikte tema dizini /wp-content/mingle-forum-skins/ dizinine taşındı" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "Neden değiştirdin ki?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "Ekran Görüntüsü" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "İsim" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "Versiyon" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "Açıklama" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "İşlem" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "Kullanımda" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "Aktive Et" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "Mingle Forum Hakkında" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "Şu an ki Versiyon: " + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum tek bir amaca bağlıdır; 'BASİT TUT!' WP Forum üzerinden devam ettirilip ÇOKÇA geliştirildi. Şu an Mingle eklentisiyle ya da Mingle eklentisi olmadan tamamen entegre durumdadır(Blair Williams sağolsun). Ayrıca Eric Hamby'e önceki forum çalışmalarından dolayı büyük teşekkürlerimi sunarım." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "Yazar: " + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "Eklenti Sayfası:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "Destek Forumları:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum Temaları:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "Seçenekler Başarıyla Kaydedildi." + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "İstatistik" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "Değer" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "Yazı Sayısı:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "Mesaj Sayısı:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "Kullanıcı Sayısı:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "Veritabanı Boyutu:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Veritabanı Sunucusu:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum versiyonu:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> Genel Ayarlar" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "varsayılan" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "Ayar Adı" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "Ayar değeri" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "Sayfa başına yazı sayısı:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "Sayfa başına mesaj sayısı:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "Sıcak Konu Yazı Sayısı:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "Çok Sıcak Konu Yazı Sayısı:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "Kullanıcı Adı Gösterimi:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "Yeni Kullanıcı Başlığı:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "Seviye 1 Kullanıcı Başlığı:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "Seviye 1 Kullanıcı Sayısı:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "Seviye 2 Kullanıcı Başlığı:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "Seviye 2 Kullanıcı Sayısı:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "Seviye 3 Kullanıcı Başlığı:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "Seviye 3 Kullanıcı Sayısı:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "Yeni yazı yok" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "Forum Giriş Formu Göster:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "Forumda Avatar Göster:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "Forum-RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Yazmak için kayıt gerekli:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "Yüklü Sürüm:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library yüklü değil" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "Misafirler için Captcha kullan:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "Gerekli" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "Eğer 'Yazmak için kayıtlı olmak gerekli' aktifse bunu boş bırakın" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "Tarih Formatı:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "Varsayılan Tarih:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "kontrol Et " + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "tarih formatı için." + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "Silinen Gruplar" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "Silinen Forumlar:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "Silinen Mesajlar:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "Silinen Yazılar:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "İsim girmelisiniz" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "Kategori başarıyla eklendi" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "Kategori seçmelisiniz" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "Var olan bir forum adı seçtiniz, lütfen başka bir ad seçiniz" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "Forum başarıyla eklendi" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> Kategoriler ve Forumlar" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "Düzenle" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "Forum Ekle" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forum Beslemeleri" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forum Beslemeleri" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "Moderatör başarıyla eklendi." + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "Moderatör başarıyla kaydedildi." + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "Moderatör KALDIRILMADI." + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "Kullanıcı seçmelisiniz" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "Global moderatör başarıyla eklendi" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "Moderatör başarıyla eklendi" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> Moderatörleri Yönet" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "Moderatörler" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "Güncelle" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "Global moderatör: (Her Forumu Yönetebilir)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "Moderatör YOK" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "başarıyla eklendi" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> Tema özellikleri" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "Ayar Adı" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "Ayarları kaydet" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "Forumu ekle" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "Açıklama:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "Forumu Kaydet" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "Kategoriyi düzenle" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "Kategoriyi düzenle" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "Kullanıcı Grubu Seç" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "Kullanıcı Grubu Seç" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "Kullanıcı ekle" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "Grup adı belirtmelisiniz" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "Grup başarıyla güncellendi" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "Forum adı belirtmelisiniz" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "Forum başarıyla güncellendi" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "Kategoriyi düzenle" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "Kullanıcı Grupları:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "Seçili Kullanıcı Grubu Kullanıcıları bu kategoriye erişebilir:" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "Kullanıcı Grubu YOK" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "Grup Kaydet" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "Forum düzenle" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "Kullanıcı Seç" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "Moderatör Ekle" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "Kullanıcı Grubu için isim belirtmelisiniz" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "Kullanıcı Grubu başarıyla güncellendi" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "Kullanıcı Grubu Düzenle" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "Kullanıcı Grubu Kaydet" + +#~ msgid "General Options" +#~ msgstr "Genel Ayarlar" + +#~ msgid "Categories and forums" +#~ msgstr "Kategoriler ve Forumlar" + +#~ msgid "Remove this post?" +#~ msgstr "Bu yazı kaldırılsın mı?" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "" +#~ "Geçerli ayarlar: user_login, nickname, display_name, first_name, last_name" + +#~ msgid "Notify me when I get new Messages?" +#~ msgstr "Giv mig besked ved nye beskeder?" + +#~ msgid "Messages" +#~ msgstr "Beskeder" + +#~ msgid "New Message" +#~ msgstr "Ny besked" + +#~ msgid "Read Message Thread" +#~ msgstr "Læs beskedtråd" diff --git a/i18n/mingleforum-zh_CN.mo b/i18n/mingleforum-zh_CN.mo new file mode 100644 index 0000000..9a83c9a Binary files /dev/null and b/i18n/mingleforum-zh_CN.mo differ diff --git a/i18n/mingleforum-zh_CN.po b/i18n/mingleforum-zh_CN.po new file mode 100644 index 0000000..6f7bf79 --- /dev/null +++ b/i18n/mingleforum-zh_CN.po @@ -0,0 +1,1761 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:38-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "论坛Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "论坛主题:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "论坛" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "主题:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "没有该用户" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "编辑论坛选项" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "允许其他人查看我的个人资料?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "您对这些主题有电子邮件通知:" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "保存选项" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "作弊,我们是谁?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "安全代码不匹配" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "发生错误" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "您必须输入标题" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "您必须输入内容" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "创建的论坛主题:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "论坛主题的回复:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "引用" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "在" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "发表回复" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "标题:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "回复:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "内容:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "提交" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "编辑帖子" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "保存帖子" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "发表新主题" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "对不起,您没有权限发帖。" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "个人资料" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle论坛 >>皮肤选项" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "选项名称" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "皮肤" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "分类&论坛" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "版主" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "用户组" + +#: wpf.class.php:178 +msgid "About" +msgstr "关于" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "论坛最新活动" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "由:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "侧边栏显示的标题:" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "您想要展示多少个项目?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "页面加载时间:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "秒。" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle论坛" + +#: wpf.class.php:649 +msgid "Version:" +msgstr "版本:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "游客" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "由" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "最新发帖" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "对不起,您没有访问该论坛的权限。" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "状态" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "主题标题" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "开始于" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "回复" + +#: wpf.class.php:722 +msgid "Views" +msgstr "浏览" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "最后一篇" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "主题置顶" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "移动主题" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "删除主题" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "自上次访问后的新帖子" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "论坛主题" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "将该主题从邮件通知删除吗?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "将该主题添加到邮件通知吗?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "主题已关闭" + +#: wpf.class.php:856 +msgid "Author" +msgstr "作者" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "帖子:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "回复" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "发表" + +#: wpf.class.php:939 +msgid "on:" +msgstr "在:" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "引用" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "删除" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "编辑" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "主题:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "帖子:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "新帖" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "没有新帖" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "还没有主题" + +#: wpf.class.php:1154 +msgid "in" +msgstr "在" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "论坛的RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "搜索结果" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "个人资料" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "新主题" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "版主:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "撤消置顶" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "置顶" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +msgid "Re-open" +msgstr "重新打开" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +msgid "Close" +msgstr "关闭" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "回复" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +#, fuzzy +msgid "Unsubscribe" +msgstr "捐助" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "捐助" + +#: wpf.class.php:1564 +msgid "RSS feed" +msgstr "" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +msgid "RSS-Feed" +msgstr "" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "我的个人资料" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "我的个人资料" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "论坛首页" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "退出" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "搜索" + +#: wpf.class.php:1720 +msgid "You are logged in as:" +msgstr "您的用户名:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "用户名:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "密码:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "记住我的登录状态" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "管理员" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "版主" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "自上次访问后的新主题" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "个人信息" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "编辑个人资料" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "欢迎" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "您上次访问是在:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "显示自您上次访问后的新主题" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "编辑您的论坛选项" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "欢迎您,游客!请登录或" + +#: wpf.class.php:1928 +msgid "register." +msgstr "注册。" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "欢迎您,游客!在本论坛发帖需要" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "注册。" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "显示/隐藏 头部" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "搜索论坛" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "页数:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "表单" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "表单" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "已经删除的帖子" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "查看个人资料" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "粗体" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "斜体" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "下划线" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "删除线" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "代码" + +#: wpf.class.php:2283 +msgid "List" +msgstr "表单" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "列表项" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "链接" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "图片" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "邮箱" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "添加16进制颜色" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "插入YouTube视频" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +msgid "Smile" +msgstr "微笑" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "大笑" + +#: wpf.class.php:2298 +msgid "Sad" +msgstr "难过" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "中立" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "嘲笑" + +#: wpf.class.php:2301 +msgid "Mad" +msgstr "发疯" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "困惑" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "惊恐" + +#: wpf.class.php:2304 +msgid "Wink" +msgstr "眨眼" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "惊讶" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "酷" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "信息中心" + +#: wpf.class.php:2325 +msgid "Posts in" +msgstr "发表在" + +#: wpf.class.php:2325 +msgid "Topics Made by" +msgstr "主题由该会员发起:" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "会员" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "最新会员:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "自您上次访问后的新主题" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "摘要" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "名称:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "注册:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "位置:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "网址:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "雅虎:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "个人信息:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "搜索:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "按用户:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "消息年龄:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "之间" + +#: wpf.class.php:2467 +msgid "and" +msgstr "和" + +#: wpf.class.php:2467 +msgid "days" +msgstr "天" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "点击选择要搜索的论坛" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "验证所有" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "开始搜索" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "标题" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "关联" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "发布" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "已经关闭的主题" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "正常的主题" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "热门主题" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "非常热门的主题" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "验证码:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "验证码:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "论坛主题新的回复:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "详情:" + +#: wpf.class.php:2689 +msgid "Date:" +msgstr "日期:" + +#: wpf.class.php:2690 +msgid "Reply Content:" +msgstr "回复言内容" + +#: wpf.class.php:2691 +msgid "View Topic Here:" +msgstr "查看主题:" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "收件箱" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "发送消息" + +#: wpf_define.php:33 +msgid "Category" +msgstr "类别" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "主题" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "您必须指定一个用户组名称。" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "您选择了一个已经存在于数据库中的名字,请指定另外一个" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "用户组成功添加。" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "您还没有指定要添加的用户:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "你必须选择一个用户组" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "错误" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "没有该用户:" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "警告" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "用户" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "已在该组" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "添加成功" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "错误:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "警告:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "添加的用户:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "用户组删除成功。" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "会员删除成功。" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle论坛 >> 用户组管理" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "添加" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "删除" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "新增会员" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "该组没有成员" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "皮肤激活成功。" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle论坛 >>皮肤选项" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "获取更多皮肤" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "提醒:从1.0.03版本开始,皮肤目录已移至/wp-content/mingle-forum-skins/" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "为什么要改变?" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "截图" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "名称" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "版本" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "描述" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "动作" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "在使用" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "激活" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "关于Mingle论坛" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "当前版本:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle论坛有一个简单的任务,那就是“保持简单”!Mingle论坛是从WP Forum发展而来的,性能有了很大的提升。不管有没有安装Mingle插件(该插件由Blair Williams开发),它现在都已经完全支持整合。在此我还要对Eric Hamby的前期工作表示特别的感谢。(Mingle论坛中文版由PLAYBOY翻译,中文支持:http://www.fac6.com/mingle)" + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "作者:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "插件页面:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "支持论坛:" + +#: fs-admin/fs-admin.php:307 +msgid "Mingle Forum Skins:" +msgstr "论坛皮肤:" + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "选项保存成功。" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle论坛" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "统计" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "值" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "帖子数:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "主题数:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "用户数:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "数据库大小:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "数据库版本:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "论坛版本:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle论坛 >> 常规选项" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "默认" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "选项名称" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "选项输入" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "每页帖子数:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "每页主题数:" + +#: fs-admin/fs-admin.php:418 +msgid "Number of posts for Hot Topic:" +msgstr "热门主题帖子数:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "非常热门主题帖子数:" + +#: fs-admin/fs-admin.php:426 +msgid "Username Display:" +msgstr "用户名显示:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "新用户的头衔:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "一级用户的头衔:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "一级用户帖子数:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "二级用户的头衔:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "二级用户帖子数:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "三级用户的头衔:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "三级用户帖子数:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "没有新帖" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "显示论坛登录方式:" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "显示论坛头像:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "论坛的RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "发帖需要注册:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "安装的版本:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "未安装GD库" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "对未注册用户使用Captcha:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "要求" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "如果启用了上面的“注册后才能发帖”,这一项不用填" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "日期格式:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "默认格式:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "查看" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "日期格式。" + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "删除的组:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "删除的论坛:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "删除的主题:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "删除的帖子:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "您必须输入一个名称" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "分类添加成功" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "您必须选择一个分类" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "您选择了一个该组中已存在的论坛名称,请指定另外一个" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "论坛添加成功" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle论坛>> 分类和论坛" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "修改" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "添加论坛" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "论坛Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "论坛Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "版主删除成功。" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "版主保存成功。" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "版主删除失败。" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "您必须选择一个用户" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "超级版主添加成功" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "版主添加成功" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle论坛 >> 版主管理" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "缓存" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "更新" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "超级版主:(能够管理所有论坛)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "还没有版主" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "添加成功" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle论坛 >>皮肤选项" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "选项名称" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "保存选项" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "加入论坛到" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "描述:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "保存论坛" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "编辑分类" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "编辑分类" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "保存用户组" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "选择用户组" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "添加用户" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "您必须指定该分组的名称" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "分组更新成功" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "您必须指定该论坛的名称" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "论坛更新成功" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "编辑分类" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "用户组:" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "已验证的用户组成员可以访问这个分类的论坛" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "没有用户组" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "保存分组" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "编辑论坛" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "选择用户" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "添加版主" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "您必须指定用户组的名称" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "用户组更新成功" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "编辑用户组" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "保存用户组" + +#~ msgid "General Options" +#~ msgstr "常规选项" + +#~ msgid "Categories and forums" +#~ msgstr "分类和论坛" + +#~ msgid "Remove this post?" +#~ msgstr "删除这个帖子?" + +#~ msgid "" +#~ "Valid Options: user_login, nickname, display_name, first_name, last_name" +#~ msgstr "有效选项:user_login, nickname, display_name, first_name, last_name" + +#, fuzzy +#~ msgid "Messages" +#~ msgstr "消息:" + +#~ msgid "New Message" +#~ msgstr "新的消息" + +#, fuzzy +#~ msgid "Read Message Thread" +#~ msgstr "查看留言" + +#, fuzzy +#~ msgid "new" +#~ msgstr "添加新" + +#~ msgid "Use Private Messages:" +#~ msgstr "使用私人信息:" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "最大的邮件在收件箱(0 =无限):" + +#~ msgid "Message Deleted" +#~ msgstr "邮件被删除" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "您的留言已删除!" + +#~ msgid "Back To Your Inbox" +#~ msgstr "回到您的收件箱" + +#~ msgid "ERROR" +#~ msgstr "错误" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "您没有权限查看此!" + +#~ msgid "Create New Message" +#~ msgstr "创建新邮件" + +#~ msgid "Unlimited" +#~ msgstr "无限" + +#, fuzzy +#~ msgid "Message Box Size" +#~ msgstr "发送消息" + +#~ msgid "of" +#~ msgstr "的" + +#, fuzzy +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "您收到了新邮件从" + +#, fuzzy +#~ msgid "Started By" +#~ msgstr "开始时" + +#, fuzzy +#~ msgid "Last Reply" +#~ msgstr "发表回复" + +#, fuzzy +#~ msgid "No Messages" +#~ msgstr "新的消息" + +#~ msgid "Message Sent" +#~ msgstr "发送消息" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "该消息被成功发送!" + +#, fuzzy +#~ msgid "Back To Your Messages" +#~ msgstr "回到您的收件箱" + +#~ msgid "You have recieved a new message from" +#~ msgstr "您收到了新邮件从" + +#~ msgid "follow this link to view:" +#~ msgstr "跟随这个链接查看:" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "邮件无法发送!" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "受助人的收件箱是否完整!" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "请填写,然后提交信息的所有领域!" + +#~ msgid "To:" +#~ msgstr "为:" + +#~ msgid "Select User" +#~ msgstr "选择用户" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "您必须先登录才能创建私人短信!" + +#~ msgid "Message Contents" +#~ msgstr "留言内容" + +#, fuzzy +#~ msgid "Reply:" +#~ msgstr "答复" + +#~ msgid "Feed" +#~ msgstr "饲料" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "电邮" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "融论坛主题:" + +#~ msgid "Posts" +#~ msgstr "帖子" + +#~ msgid "Topics " +#~ msgstr "话题" + +#~ msgid "Posted on: " +#~ msgstr "张贴于:" + +#~ msgid "Allow email notifications?" +#~ msgstr "允许电子邮件通知?" + +#~ msgid "Notify" +#~ msgstr "通知" + +#~ msgid "View Inbox" +#~ msgstr "查看收件箱" + +#~ msgid "Contact:" +#~ msgstr "联系方式:" + +#~ msgid "Inbox size" +#~ msgstr "收件箱大小" + +#~ msgid "total" +#~ msgstr "总" + +#~ msgid "From" +#~ msgstr "从" + +#~ msgid "NEW" +#~ msgstr "新" + +#~ msgid "OLD" +#~ msgstr "老" + +#~ msgid "Empty Inbox" +#~ msgstr "清空收件箱" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "您的收件箱是空的!" + +#~ msgid "Try Again" +#~ msgstr "再试一次" + +#~ msgid "Reply To Message" +#~ msgstr "回复邮件" diff --git a/i18n/mingleforum-zh_TW.mo b/i18n/mingleforum-zh_TW.mo new file mode 100644 index 0000000..a6962bb Binary files /dev/null and b/i18n/mingleforum-zh_TW.mo differ diff --git a/i18n/mingleforum-zh_TW.po b/i18n/mingleforum-zh_TW.po new file mode 100644 index 0000000..1c9996f --- /dev/null +++ b/i18n/mingleforum-zh_TW.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Mingle Forum\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-21 21:58-0700\n" +"PO-Revision-Date: 2011-01-21 23:37-0700\n" +"Last-Translator: Paul \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: __;_e\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\\pms\n" +"X-Poedit-SearchPath-2: .\\fs-admin\n" + +#: feed.php:18 +#: feed.php:19 +msgid "Forum Feed" +msgstr "Forum Feed" + +#: feed.php:23 +msgid "Forum Topic:" +msgstr "討論區主題:" + +#: feed.php:24 +#: wpf.class.php:1806 +#: wpf_define.php:34 +msgid "Forum" +msgstr "討論區" + +#: feed.php:24 +#: wpf.class.php:857 +msgid "Topic: " +msgstr "主題:" + +#: feed.php:65 +msgid "Feeds are disabled" +msgstr "" + +#: wpf-edit-profile.php:14 +msgid "No such user" +msgstr "查無使用者" + +#: wpf-edit-profile.php:29 +msgid "You have no subscriptions at this time" +msgstr "" + +#: wpf-edit-profile.php:34 +msgid "Edit forum options" +msgstr "編輯論壇選項" + +#: wpf-edit-profile.php:39 +msgid "Allow others to view my profile?" +msgstr "允許其他人看我的個人資料?" + +#: wpf-edit-profile.php:44 +msgid "You have email notifications for these topics:" +msgstr "接受Email通知" + +#: wpf-edit-profile.php:47 +#: fs-admin/fs-admin.php:543 +msgid "Save options" +msgstr "儲存" + +#: wpf-edit-profile.php:53 +#: wpf.class.php:614 +#: wpf.class.php:2069 +#: wpf.class.php:2095 +#: wpf.class.php:2113 +#: wpf.class.php:2135 +#: wpf.class.php:2144 +#: wpf.class.php:2202 +msgid "Cheating, are we?" +msgstr "Cheating, are we?" + +#: wpf-insert.php:28 +msgid "Security code does not mach" +msgstr "驗證碼錯誤" + +#: wpf-insert.php:43 +#: wpf-insert.php:48 +#: wpf-insert.php:106 +#: wpf-insert.php:111 +#: wpf-insert.php:152 +#: wpf-insert.php:157 +msgid "An error occured" +msgstr "發生錯誤" + +#: wpf-insert.php:44 +#: wpf-insert.php:107 +#: wpf-insert.php:153 +msgid "You must enter a subject" +msgstr "您必須輸入主旨" + +#: wpf-insert.php:49 +#: wpf-insert.php:112 +#: wpf-insert.php:158 +msgid "You must enter a message" +msgstr "您必須輸入訊息" + +#: wpf-insert.php:68 +msgid "created the forum topic:" +msgstr "建立論壇主題:" + +#: wpf-insert.php:123 +msgid "replied to the forum topic:" +msgstr "回覆討論區主題:" + +#: wpf-post.php:10 +msgid "Quote from" +msgstr "引用" + +#: wpf-post.php:10 +#: wpf.class.php:677 +#: wpf.class.php:685 +#: wpf.class.php:1154 +msgid "on" +msgstr "於" + +#: wpf-post.php:20 +#: wpf.class.php:1279 +#: wpf.class.php:1852 +msgid "Post Reply" +msgstr "發表回覆:" + +#: wpf-post.php:23 +#: wpf-post.php:63 +#: wpf-thread.php:13 +msgid "Subject:" +msgstr "主旨:" + +#: wpf-post.php:24 +#: wpf.class.php:907 +msgid "Re:" +msgstr "回覆:" + +#: wpf-post.php:27 +#: wpf-post.php:67 +#: wpf-thread.php:17 +msgid "Message:" +msgstr "訊息:" + +#: wpf-post.php:38 +#: wpf-thread.php:28 +msgid "Submit" +msgstr "送出" + +#: wpf-post.php:60 +#: wpf.class.php:1276 +#: wpf.class.php:1855 +msgid "Edit Post" +msgstr "編輯文章" + +#: wpf-post.php:76 +msgid "Save Post" +msgstr "儲存" + +#: wpf-thread.php:10 +msgid "Post new Topic" +msgstr "張貼新話題" + +#: wpf-thread.php:36 +msgid "Sorry. you don't have permission to post." +msgstr "對不起,您沒有權限發起新話題" + +#: wpf.class.php:150 +#: fs-admin/fs-admin.php:440 +msgid "Newbie" +msgstr "" + +#: wpf.class.php:151 +#: fs-admin/fs-admin.php:444 +msgid "Beginner" +msgstr "" + +#: wpf.class.php:152 +#: fs-admin/fs-admin.php:452 +msgid "Advanced" +msgstr "" + +#: wpf.class.php:153 +#: fs-admin/fs-admin.php:460 +#, fuzzy +msgid "Pro" +msgstr "Profile" + +#: wpf.class.php:171 +#: wpf.class.php:172 +#, fuzzy +msgid "Mingle Forum - Options" +msgstr "Mingle Forum >> 主題管理" + +#: wpf.class.php:172 +#, fuzzy +msgid "Options" +msgstr "選項名稱" + +#: wpf.class.php:173 +msgid "Ads" +msgstr "" + +#: wpf.class.php:174 +msgid "Skins" +msgstr "主題" + +#: wpf.class.php:175 +#, fuzzy +msgid "Forum Structure - Categories & Forums" +msgstr "分類與討論區" + +#: wpf.class.php:175 +msgid "Forum Structure" +msgstr "" + +#: wpf.class.php:176 +msgid "Moderators" +msgstr "版主" + +#: wpf.class.php:177 +msgid "User Groups" +msgstr "群組" + +#: wpf.class.php:178 +msgid "About" +msgstr "關於" + +#: wpf.class.php:189 +#: wpf.class.php:190 +msgid "Forums Latest Activity" +msgstr "論壇最新文章" + +#: wpf.class.php:209 +#: wpf.class.php:229 +msgid "by:" +msgstr "由:" + +#: wpf.class.php:246 +msgid "Title to display in the sidebar:" +msgstr "在側邊欄顯示標題" + +#: wpf.class.php:248 +msgid "How many items would you like to display?" +msgstr "顯示多少項目?" + +#: wpf.class.php:645 +msgid "Page loaded in:" +msgstr "Page loaded in:" + +#: wpf.class.php:645 +msgid "seconds." +msgstr "秒。" + +#: wpf.class.php:648 +msgid "Mingle Forum " +msgstr "Mingle Forum " + +#: wpf.class.php:649 +msgid "Version:" +msgstr "版本:" + +#: wpf.class.php:668 +#: wpf.class.php:2266 +msgid "Guest" +msgstr "訪客" + +#: wpf.class.php:677 +#: wpf.class.php:1153 +msgid "by" +msgstr "由" + +#: wpf.class.php:685 +msgid "Latest Post by" +msgstr "由" + +#: wpf.class.php:708 +#: wpf.class.php:839 +msgid "Sorry, but you don't have access to this forum" +msgstr "很抱歉,您沒有權限觀看此討論區" + +#: wpf.class.php:718 +#: wpf.class.php:2354 +msgid "Status" +msgstr "狀態" + +#: wpf.class.php:719 +#: wpf.class.php:2355 +msgid "Topic Title" +msgstr "標題" + +#: wpf.class.php:720 +#: wpf.class.php:2356 +#: wpf.class.php:2544 +msgid "Started by" +msgstr "發表人" + +#: wpf.class.php:721 +#: wpf.class.php:2357 +msgid "Replies" +msgstr "回覆" + +#: wpf.class.php:722 +msgid "Views" +msgstr "觀看數" + +#: wpf.class.php:723 +#: wpf.class.php:1153 +#: wpf.class.php:2358 +msgid "Last post" +msgstr "最後發表" + +#: wpf.class.php:727 +msgid "Sticky Topics" +msgstr "置頂主題" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +#: wpf.class.php:1640 +#: wpf.class.php:1657 +msgid "Move Topic" +msgstr "移動主題" + +#: wpf.class.php:731 +#: wpf.class.php:733 +#: wpf.class.php:777 +#: wpf.class.php:779 +msgid "Delete Topic" +msgstr "刪除主題" + +#: wpf.class.php:743 +#: wpf.class.php:772 +msgid "New posts since last visit" +msgstr "自上次訪問後的新回覆" + +#: wpf.class.php:760 +msgid "Forum Topics" +msgstr "討論區主題" + +#: wpf.class.php:827 +msgid "Remove this topic from your email notifications?" +msgstr "取消Email通知?" + +#: wpf.class.php:829 +msgid "Add this topic to your email notifications?" +msgstr "Email通知?" + +#: wpf.class.php:850 +msgid "TOPIC CLOSED" +msgstr "" + +#: wpf.class.php:856 +msgid "Author" +msgstr "作者" + +#: wpf.class.php:872 +#: wpf.class.php:2410 +msgid "Posts:" +msgstr "Posts:" + +#: wpf.class.php:905 +#, fuzzy +msgid "Quick Reply" +msgstr "回覆" + +#: wpf.class.php:914 +msgid "Submit Quick Reply" +msgstr "" + +#: wpf.class.php:936 +#: wpf_define.php:36 +msgid "Post" +msgstr "Post" + +#: wpf.class.php:939 +#, fuzzy +msgid "on:" +msgstr "於" + +#: wpf.class.php:943 +#: wpf.class.php:952 +#: wpf.class.php:2282 +msgid "Quote" +msgstr "引用" + +#: wpf.class.php:945 +#: wpf.class.php:954 +#: fs-admin/fs-admin.php:153 +#: fs-admin/fs-admin.php:961 +msgid "Remove" +msgstr "移除" + +#: wpf.class.php:947 +#: wpf.class.php:956 +msgid "Edit" +msgstr "编辑" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Topics: " +msgstr "主题:" + +#: wpf.class.php:1030 +#: wpf.class.php:1081 +msgid "Posts: " +msgstr "回覆:" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "New posts" +msgstr "有新回覆" + +#: wpf.class.php:1040 +#: wpf.class.php:1091 +msgid "No new posts" +msgstr "沒有新回覆" + +#: wpf.class.php:1040 +msgid "Mark All Read" +msgstr "" + +#: wpf.class.php:1151 +msgid "No topics yet" +msgstr "沒有主題" + +#: wpf.class.php:1154 +msgid "in" +msgstr "主題:" + +#: wpf.class.php:1205 +msgid "Forums RSS" +msgstr "討論區的RSS" + +#: wpf.class.php:1216 +msgid "Are you sure you want to remove this?" +msgstr "" + +#: wpf.class.php:1270 +#: wpf.class.php:1845 +msgid "Search Results" +msgstr "搜尋結果" + +#: wpf.class.php:1273 +msgid "Profile" +msgstr "Profile" + +#: wpf.class.php:1282 +#: wpf.class.php:1502 +#: wpf.class.php:1634 +#: wpf.class.php:1651 +#: wpf.class.php:1858 +msgid "New Topic" +msgstr "新主题" + +#: wpf.class.php:1349 +msgid "Moderators:" +msgstr "版主:" + +#: wpf.class.php:1525 +#: wpf.class.php:1538 +#: wpf.class.php:1637 +#: wpf.class.php:1654 +msgid "Undo Sticky" +msgstr "取消置頂" + +#: wpf.class.php:1527 +#: wpf.class.php:1540 +#: wpf.class.php:1636 +#: wpf.class.php:1653 +msgid "Sticky" +msgstr "置頂" + +#: wpf.class.php:1530 +#: wpf.class.php:1543 +#: wpf.class.php:1639 +#: wpf.class.php:1656 +#, fuzzy +msgid "Re-open" +msgstr "移除" + +#: wpf.class.php:1532 +#: wpf.class.php:1545 +#: wpf.class.php:1638 +#: wpf.class.php:1655 +#, fuzzy +msgid "Close" +msgstr "Code" + +#: wpf.class.php:1552 +#: wpf.class.php:1633 +#: wpf.class.php:1650 +msgid "Reply" +msgstr "回覆" + +#: wpf.class.php:1559 +#: wpf.class.php:1575 +msgid "Unsubscribe" +msgstr "" + +#: wpf.class.php:1561 +#: wpf.class.php:1577 +msgid "Subscribe" +msgstr "" + +#: wpf.class.php:1564 +#, fuzzy +msgid "RSS feed" +msgstr "RSS" + +#: wpf.class.php:1580 +#: wpf.class.php:1635 +#: wpf.class.php:1652 +#, fuzzy +msgid "RSS-Feed" +msgstr "RSS" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My profile" +msgstr "我的個人資料" + +#: wpf.class.php:1618 +#: wpf.class.php:1622 +msgid "My Profile" +msgstr "我的個人資料" + +#: wpf.class.php:1629 +#: wpf.class.php:1646 +msgid "Forum Home" +msgstr "討論區首頁" + +#: wpf.class.php:1630 +#: wpf.class.php:1647 +#: wpf.class.php:1923 +msgid "Log out" +msgstr "登出" + +#: wpf.class.php:1632 +#: wpf.class.php:1649 +#: wpf.class.php:2453 +msgid "Search" +msgstr "搜尋" + +#: wpf.class.php:1720 +#, fuzzy +msgid "You are logged in as:" +msgstr "Page loaded in:" + +#: wpf.class.php:1726 +msgid "Username: " +msgstr "帳號:" + +#: wpf.class.php:1727 +msgid "Password: " +msgstr "密碼:" + +#: wpf.class.php:1729 +msgid "Remember Me" +msgstr "記得我" + +#: wpf.class.php:1765 +msgid "Administrator" +msgstr "Administrator" + +#: wpf.class.php:1769 +msgid "Moderator" +msgstr "版主" + +#: wpf.class.php:1839 +msgid "New Topics since last visit" +msgstr "新的主題自上次訪問" + +#: wpf.class.php:1849 +msgid "Profile Info" +msgstr "個人簡介" + +#: wpf.class.php:1913 +msgid "Edit Profile" +msgstr "編輯個人資料" + +#: wpf.class.php:1917 +#: wpf.class.php:1929 +msgid "Welcome" +msgstr "歡迎" + +#: wpf.class.php:1918 +msgid "Your last visit was:" +msgstr "您上次訪問是:" + +#: wpf.class.php:1920 +msgid "Show new topics since your last visit" +msgstr "顯示從上次訪問後的新話題" + +#: wpf.class.php:1921 +msgid "Edit your forum options" +msgstr "編輯討論區選項" + +#: wpf.class.php:1928 +msgid "Welcome Guest, please login or" +msgstr "您好,請登入或" + +#: wpf.class.php:1928 +msgid "register." +msgstr "註冊" + +#: wpf.class.php:1933 +msgid "Welcome Guest, posting in this forum requires" +msgstr "您好,想要參與討論需要" + +#: wpf.class.php:1933 +msgid "registration." +msgstr "註冊" + +#: wpf.class.php:1941 +msgid "Show/Hide Header" +msgstr "" + +#: wpf.class.php:1955 +msgid "Search forums" +msgstr "討論區搜尋" + +#: wpf.class.php:1990 +#: wpf.class.php:2021 +msgid "Pages:" +msgstr "頁:" + +#: wpf.class.php:2003 +#: wpf.class.php:2034 +#, fuzzy +msgid "First" +msgstr "清單" + +#: wpf.class.php:2014 +#: wpf.class.php:2045 +#, fuzzy +msgid "Last" +msgstr "清單" + +#: wpf.class.php:2132 +msgid "Post deleted" +msgstr "刪除回覆" + +#: wpf.class.php:2259 +#: wpf.class.php:2263 +#: fs-admin/fs-admin.php:155 +msgid "View profile" +msgstr "檢視個人資料" + +#: wpf.class.php:2277 +msgid "Bold" +msgstr "粗體" + +#: wpf.class.php:2278 +msgid "Italic" +msgstr "斜體" + +#: wpf.class.php:2279 +msgid "Underline" +msgstr "底線" + +#: wpf.class.php:2280 +msgid "Strikethrough" +msgstr "刪除線" + +#: wpf.class.php:2281 +msgid "Code" +msgstr "Code" + +#: wpf.class.php:2283 +msgid "List" +msgstr "清單" + +#: wpf.class.php:2284 +msgid "List item" +msgstr "項目清單" + +#: wpf.class.php:2285 +msgid "Link" +msgstr "連結" + +#: wpf.class.php:2286 +msgid "Image" +msgstr "圖片" + +#: wpf.class.php:2287 +msgid "Email" +msgstr "Email" + +#: wpf.class.php:2288 +msgid "Add Hex Color" +msgstr "Add Hex Color" + +#: wpf.class.php:2289 +msgid "Embed YouTube Video" +msgstr "" + +#: wpf.class.php:2290 +msgid "Embed Google Map" +msgstr "" + +#: wpf.class.php:2296 +#, fuzzy +msgid "Smile" +msgstr "Email" + +#: wpf.class.php:2297 +msgid "Big Grin" +msgstr "" + +#: wpf.class.php:2298 +#, fuzzy +msgid "Sad" +msgstr "和" + +#: wpf.class.php:2299 +msgid "Neutral" +msgstr "" + +#: wpf.class.php:2300 +msgid "Razz" +msgstr "" + +#: wpf.class.php:2301 +#, fuzzy +msgid "Mad" +msgstr "和" + +#: wpf.class.php:2302 +msgid "Confused" +msgstr "" + +#: wpf.class.php:2303 +msgid "Eek!" +msgstr "" + +#: wpf.class.php:2304 +#, fuzzy +msgid "Wink" +msgstr "連結" + +#: wpf.class.php:2305 +msgid "Surprised" +msgstr "" + +#: wpf.class.php:2306 +msgid "Cool" +msgstr "" + +#: wpf.class.php:2318 +msgid "Info Center" +msgstr "Info Center" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Posts in" +msgstr "回覆:" + +#: wpf.class.php:2325 +#, fuzzy +msgid "Topics Made by" +msgstr "編輯由" + +#: wpf.class.php:2325 +#: fs-admin/fs-admin.php:147 +msgid "Members" +msgstr "會員" + +#: wpf.class.php:2325 +msgid "Latest Member:" +msgstr "最新註冊會員:" + +#: wpf.class.php:2351 +msgid "New topics since your last visit" +msgstr "您上次訪問過後的新主題" + +#: wpf.class.php:2395 +msgid "Summary" +msgstr "個人資料" + +#: wpf.class.php:2401 +#: wpf.class.php:2687 +#: fs-admin/wpf-add-forum.php:8 +msgid "Name:" +msgstr "名稱:" + +#: wpf.class.php:2406 +msgid "Registered:" +msgstr "註冊日期:" + +#: wpf.class.php:2414 +msgid "Position:" +msgstr "身分:" + +#: wpf.class.php:2417 +msgid "Website:" +msgstr "網址:" + +#: wpf.class.php:2421 +msgid "AIM:" +msgstr "AIM:" + +#: wpf.class.php:2425 +msgid "Yahoo:" +msgstr "Yahoo:" + +#: wpf.class.php:2428 +msgid "Jabber/google Talk:" +msgstr "Jabber/google Talk:" + +#: wpf.class.php:2432 +msgid "Biographical Info:" +msgstr "自我介紹:" + +#: wpf.class.php:2457 +msgid "Search for:" +msgstr "搜尋:" + +#: wpf.class.php:2461 +msgid "By user:" +msgstr "按會員:" + +#: wpf.class.php:2466 +msgid "Message Age:" +msgstr "Message Age:" + +#: wpf.class.php:2467 +msgid "Between" +msgstr "之間" + +#: wpf.class.php:2467 +msgid "and" +msgstr "和" + +#: wpf.class.php:2467 +msgid "days" +msgstr "天" + +#: wpf.class.php:2473 +msgid "Click to choose Forum(s) to search" +msgstr "選擇搜尋討論區" + +#: wpf.class.php:2495 +msgid "Check all" +msgstr "搜尋全部" + +#: wpf.class.php:2500 +msgid "Start Search" +msgstr "開始搜尋" + +#: wpf.class.php:2542 +msgid "Subject" +msgstr "主旨" + +#: wpf.class.php:2543 +msgid "Relevance" +msgstr "Relevance" + +#: wpf.class.php:2545 +msgid "Posted" +msgstr "發佈" + +#: wpf.class.php:2611 +msgid "Closed topic" +msgstr "關閉的主題" + +#: wpf.class.php:2614 +msgid "Normal topic" +msgstr "一般話題" + +#: wpf.class.php:2617 +msgid "Hot topic" +msgstr "熱門話題" + +#: wpf.class.php:2620 +msgid "Very Hot topic" +msgstr "非常熱門話題" + +#: wpf.class.php:2652 +msgid "Security Code:" +msgstr "驗證碼:" + +#: wpf.class.php:2671 +#, fuzzy +msgid "Enter Security Code: (required)" +msgstr "驗證碼:" + +#: wpf.class.php:2685 +#, fuzzy +msgid "New post in forum:" +msgstr "新回覆的主題:" + +#: wpf.class.php:2686 +msgid "DETAILS:" +msgstr "" + +#: wpf.class.php:2689 +#, fuzzy +msgid "Date:" +msgstr "名稱:" + +#: wpf.class.php:2690 +#, fuzzy +msgid "Reply Content:" +msgstr "留言內容" + +#: wpf.class.php:2691 +#, fuzzy +msgid "View Topic Here:" +msgstr "新主题" + +#: wpf.class.php:2740 +#: wpf.class.php:2750 +msgid "Inbox" +msgstr "收件箱" + +#: wpf.class.php:2766 +#: wpf.class.php:2779 +msgid "Send Message" +msgstr "發送訊息" + +#: wpf_define.php:33 +msgid "Category" +msgstr "類別" + +#: wpf_define.php:35 +msgid "Topic" +msgstr "主题" + +#: fs-admin/fs-admin.php:33 +msgid "You must specify a user group name." +msgstr "您必須指定群組名稱" + +#: fs-admin/fs-admin.php:35 +#: fs-admin/fs-admin.php:682 +msgid "You have choosen a name that already exists in the database, please specify another" +msgstr "此名稱已存在,請更換名稱" + +#: fs-admin/fs-admin.php:37 +msgid "User Group successfully added." +msgstr "群組增加成功" + +#: fs-admin/fs-admin.php:55 +msgid "You haven't specified any user to add:" +msgstr "您還沒有指定任何會員:" + +#: fs-admin/fs-admin.php:59 +msgid "You must choose a user group" +msgstr "您必須選擇一個群組" + +#: fs-admin/fs-admin.php:66 +msgid "Error" +msgstr "錯誤" + +#: fs-admin/fs-admin.php:66 +msgid "No such user:" +msgstr "沒有這樣的會員" + +#: fs-admin/fs-admin.php:70 +msgid "Warning" +msgstr "警告" + +#: fs-admin/fs-admin.php:70 +#: fs-admin/fs-admin.php:74 +msgid "User" +msgstr "會員" + +#: fs-admin/fs-admin.php:70 +msgid "is already in this group" +msgstr "已經在本群組" + +#: fs-admin/fs-admin.php:74 +msgid "added successfully" +msgstr "增加成功" + +#: fs-admin/fs-admin.php:82 +msgid "Errors:" +msgstr "錯誤:" + +#: fs-admin/fs-admin.php:83 +msgid "Warnings:" +msgstr "警告:" + +#: fs-admin/fs-admin.php:84 +msgid "Users added:" +msgstr "新增會員:" + +#: fs-admin/fs-admin.php:98 +msgid "User Group(s) successfully deleted." +msgstr "群組刪除成功" + +#: fs-admin/fs-admin.php:106 +msgid "Member successfully removed." +msgstr "會員刪除成功" + +#: fs-admin/fs-admin.php:112 +msgid "Mingle Forum >> Manage User Groups" +msgstr "Mingle Forum >> 群組管理" + +#: fs-admin/fs-admin.php:112 +#: fs-admin/fs-admin.php:747 +#: fs-admin/fs-admin.php:947 +msgid "add new" +msgstr "新增" + +#: fs-admin/fs-admin.php:119 +#: fs-admin/fs-admin.php:801 +msgid "Delete" +msgstr "刪除" + +#: fs-admin/fs-admin.php:159 +#: fs-admin/fs-admin.php:165 +msgid "Add members" +msgstr "新增會員" + +#: fs-admin/fs-admin.php:164 +msgid "No members in this group" +msgstr "此群組沒有會員" + +#: fs-admin/fs-admin.php:221 +msgid "Skin successfully activated." +msgstr "主題套用成功" + +#: fs-admin/fs-admin.php:227 +msgid "Mingle Forum >> Skin options" +msgstr "Mingle Forum >> 主題管理" + +#: fs-admin/fs-admin.php:228 +msgid "Get More Skins" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "IMPORTANT: As of version 1.0.03 the skins directory has been moved to /wp-content/mingle-forum-skins/" +msgstr "" + +#: fs-admin/fs-admin.php:229 +msgid "Why did you change it?" +msgstr "" + +#: fs-admin/fs-admin.php:232 +msgid "Screenshot" +msgstr "預覽圖" + +#: fs-admin/fs-admin.php:233 +#: fs-admin/wpf-add-group.php:10 +msgid "Name" +msgstr "名稱" + +#: fs-admin/fs-admin.php:234 +msgid "Version" +msgstr "版本" + +#: fs-admin/fs-admin.php:235 +#: fs-admin/wpf-add-group.php:11 +msgid "Description" +msgstr "描述" + +#: fs-admin/fs-admin.php:236 +msgid "Action" +msgstr "Action" + +#: fs-admin/fs-admin.php:250 +#: fs-admin/fs-admin.php:265 +msgid "In Use" +msgstr "使用中" + +#: fs-admin/fs-admin.php:252 +#: fs-admin/fs-admin.php:267 +msgid "Activate" +msgstr "套用" + +#: fs-admin/fs-admin.php:295 +msgid "About Mingle Forum" +msgstr "關於Mingle Forum" + +#: fs-admin/fs-admin.php:298 +msgid "Current Version: " +msgstr "目前版本:" + +#: fs-admin/fs-admin.php:302 +msgid "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." +msgstr "Mingle Forum has one simple mission; to 'KEEP IT SIMPLE!' It was taken over from WP Forum and has been improved upon GREATLY. It now fully supports integration with or without the Mingle plugin (by Blair Williams). Also I want to give a big thanks to Eric Hamby for his previous work on the forum script." + +#: fs-admin/fs-admin.php:304 +msgid "Author: " +msgstr "作者:" + +#: fs-admin/fs-admin.php:305 +msgid "Plugin Page:" +msgstr "外掛:" + +#: fs-admin/fs-admin.php:306 +msgid "Support Forum:" +msgstr "支援討論區:" + +#: fs-admin/fs-admin.php:307 +#, fuzzy +msgid "Mingle Forum Skins:" +msgstr "Mingle Forum " + +#: fs-admin/fs-admin.php:354 +msgid "Options successfully saved." +msgstr "選項儲存成功" + +#: fs-admin/fs-admin.php:359 +msgid "Mingle Forum" +msgstr "Mingle Forum" + +#: fs-admin/fs-admin.php:363 +msgid "Statistic" +msgstr "統計" + +#: fs-admin/fs-admin.php:364 +msgid "Value" +msgstr "值" + +#: fs-admin/fs-admin.php:368 +msgid "Number of posts:" +msgstr "回覆數量:" + +#: fs-admin/fs-admin.php:372 +msgid "Number of threads:" +msgstr "主題數量:" + +#: fs-admin/fs-admin.php:376 +msgid "Number of users:" +msgstr "會員數量:" + +#: fs-admin/fs-admin.php:380 +msgid "Total database size:" +msgstr "資料庫目前已用:" + +#: fs-admin/fs-admin.php:384 +msgid "Database server:" +msgstr "Database server:" + +#: fs-admin/fs-admin.php:388 +msgid "Mingle Forum version:" +msgstr "Mingle Forum 版本:" + +#: fs-admin/fs-admin.php:393 +msgid "Mingle Forum >> General Options" +msgstr "Mingle Forum >> 一般選項" + +#: fs-admin/fs-admin.php:398 +msgid "default " +msgstr "預設" + +#: fs-admin/fs-admin.php:402 +msgid "Option Name" +msgstr "選項名稱" + +#: fs-admin/fs-admin.php:403 +msgid "Option Input" +msgstr "輸入選項" + +#: fs-admin/fs-admin.php:408 +msgid "Posts per page:" +msgstr "一頁顯示幾篇回覆:" + +#: fs-admin/fs-admin.php:412 +msgid "Threads per page:" +msgstr "一頁顯示幾個主題:" + +#: fs-admin/fs-admin.php:418 +#, fuzzy +msgid "Number of posts for Hot Topic:" +msgstr "幾篇回覆就成為熱門主題:" + +#: fs-admin/fs-admin.php:422 +msgid "Number of posts for Very Hot Topic:" +msgstr "幾篇回覆就成為非常熱門主題:" + +#: fs-admin/fs-admin.php:426 +#, fuzzy +msgid "Username Display:" +msgstr "帳號:" + +#: fs-admin/fs-admin.php:439 +msgid "New User's Title:" +msgstr "新用戶名稱:" + +#: fs-admin/fs-admin.php:443 +msgid "User Level 1 Title:" +msgstr "等級一會員名稱:" + +#: fs-admin/fs-admin.php:447 +msgid "User Level 1 Count:" +msgstr "User Level 1 Count:" + +#: fs-admin/fs-admin.php:448 +msgid "25" +msgstr "" + +#: fs-admin/fs-admin.php:451 +msgid "User Level 2 Title:" +msgstr "等級二會員名稱:" + +#: fs-admin/fs-admin.php:455 +msgid "User Level 2 Count:" +msgstr "User Level 2 Count:" + +#: fs-admin/fs-admin.php:456 +msgid "50" +msgstr "" + +#: fs-admin/fs-admin.php:459 +msgid "User Level 3 Title:" +msgstr "等級三會員名稱:" + +#: fs-admin/fs-admin.php:463 +msgid "User Level 3 Count:" +msgstr "User Level 3 Count:" + +#: fs-admin/fs-admin.php:464 +msgid "100" +msgstr "" + +#: fs-admin/fs-admin.php:467 +#, fuzzy +msgid "Notify Admin on new posts:" +msgstr "沒有新回覆" + +#: fs-admin/fs-admin.php:471 +#: fs-admin/fs-admin.php:510 +msgid "Off" +msgstr "" + +#: fs-admin/fs-admin.php:474 +msgid "Show Forum Login Form:" +msgstr "" + +#: fs-admin/fs-admin.php:478 +#: fs-admin/fs-admin.php:486 +#: fs-admin/fs-admin.php:494 +#: fs-admin/fs-admin.php:502 +#: fs-admin/fs-admin.php:518 +msgid "On" +msgstr "" + +#: fs-admin/fs-admin.php:482 +msgid "Show Avatars in the forum:" +msgstr "顯示頭像在討論區:" + +#: fs-admin/fs-admin.php:490 +msgid "Show users Bio at the bottom of posts:" +msgstr "" + +#: fs-admin/fs-admin.php:498 +#, fuzzy +msgid "Use Forum RSS:" +msgstr "討論區的RSS" + +#: fs-admin/fs-admin.php:506 +msgid "Use SEO friendly URLs:" +msgstr "" + +#: fs-admin/fs-admin.php:506 +msgid "IMPORTANT: Leave this option off if your permalinks are set to 'default'" +msgstr "" + +#: fs-admin/fs-admin.php:514 +msgid "Registration required to post:" +msgstr "Registration required to post:" + +#: fs-admin/fs-admin.php:523 +msgid "Installed version:" +msgstr "安裝的版本:" + +#: fs-admin/fs-admin.php:527 +msgid "GD Library is not installed" +msgstr "GD Library尚未安裝" + +#: fs-admin/fs-admin.php:530 +msgid "Use Captcha for unregistered users:" +msgstr "未註冊使用者的captcha:" + +#: fs-admin/fs-admin.php:534 +msgid "Requires " +msgstr "要求" + +#: fs-admin/fs-admin.php:534 +msgid "If you have 'Registration required to post' above enabled, leave this off" +msgstr "" + +#: fs-admin/fs-admin.php:538 +msgid "Date format:" +msgstr "日期格式:" + +#: fs-admin/fs-admin.php:538 +msgid "Default date:" +msgstr "默认的日期:" + +#: fs-admin/fs-admin.php:538 +msgid "Check " +msgstr "支票" + +#: fs-admin/fs-admin.php:538 +msgid "for date formatting." +msgstr "为日期格式。" + +#: fs-admin/fs-admin.php:653 +msgid "Groups deleted:" +msgstr "群組刪除:" + +#: fs-admin/fs-admin.php:654 +msgid "Forums deleted:" +msgstr "討論區刪除:" + +#: fs-admin/fs-admin.php:655 +msgid "Threads deleted:" +msgstr "主題刪除:" + +#: fs-admin/fs-admin.php:656 +msgid "Posts deleted:" +msgstr "回覆刪除:" + +#: fs-admin/fs-admin.php:680 +#: fs-admin/fs-admin.php:704 +msgid "You must enter a name" +msgstr "您必須輸入一個名稱" + +#: fs-admin/fs-admin.php:689 +msgid "Category added successfully" +msgstr "分類增加成功" + +#: fs-admin/fs-admin.php:701 +msgid "You must select a category" +msgstr "您必須選擇一個分類" + +#: fs-admin/fs-admin.php:707 +msgid "You have choosen a forum name that already exists in this group, please specify another" +msgstr "此討論區名稱已存在,請選別的名稱" + +#: fs-admin/fs-admin.php:714 +msgid "Forum added successfully" +msgstr "討論區增加成功" + +#: fs-admin/fs-admin.php:741 +msgid "Mingle Forum >> Categories and Forums " +msgstr "Mingle Forum >> 分類及討論區" + +#: fs-admin/fs-admin.php:763 +#: fs-admin/fs-admin.php:793 +msgid "Modify" +msgstr "修改" + +#: fs-admin/fs-admin.php:802 +msgid "Add forum" +msgstr "新增討論區" + +#: fs-admin/fs-admin.php:827 +msgid "Group Moved Down" +msgstr "" + +#: fs-admin/fs-admin.php:837 +#, fuzzy +msgid "Forum Moved Down" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:847 +msgid "Group Moved Up" +msgstr "" + +#: fs-admin/fs-admin.php:857 +#, fuzzy +msgid "Forum Moved Up" +msgstr "Forum Feed" + +#: fs-admin/fs-admin.php:894 +#: fs-admin/fs-admin.php:901 +msgid "Moderator successfully removed." +msgstr "版主刪除成功" + +#: fs-admin/fs-admin.php:896 +msgid "Moderator successfully saved." +msgstr "版主儲存成功" + +#: fs-admin/fs-admin.php:903 +msgid "Moderator NOT removed." +msgstr "版主不會被移除" + +#: fs-admin/fs-admin.php:917 +msgid "You must select a user" +msgstr "您必須選擇一個使用者" + +#: fs-admin/fs-admin.php:921 +msgid "Global Moderator added successfully" +msgstr "全域版主增加成功" + +#: fs-admin/fs-admin.php:925 +msgid "Moderator added successfully" +msgstr "版主增加成功" + +#: fs-admin/fs-admin.php:947 +msgid "Mingle Forum >> Manage Moderators" +msgstr "Mingle Forum >> 版主管理" + +#: fs-admin/fs-admin.php:956 +msgid "Currently moderating" +msgstr "目前放缓" + +#: fs-admin/fs-admin.php:960 +msgid "Update" +msgstr "更新" + +#: fs-admin/fs-admin.php:970 +msgid "Global moderator: (User can moderate all forums)" +msgstr "全域版主:(可以管理所有討論區)" + +#: fs-admin/fs-admin.php:989 +msgid "No moderators yet" +msgstr "還沒有版主" + +#: fs-admin/fs-admin.php:1014 +#, fuzzy +msgid "Ads saved successfully" +msgstr "增加成功" + +#: fs-admin/fs-admin.php:1019 +#, fuzzy +msgid "Mingle Forum Ads >> options" +msgstr "Mingle Forum >> 主題管理" + +#: fs-admin/fs-admin.php:1021 +msgid "HTML is allowed in all ad areas below" +msgstr "" + +#: fs-admin/fs-admin.php:1025 +#, fuzzy +msgid "Ads Option" +msgstr "選項名稱" + +#: fs-admin/fs-admin.php:1032 +msgid "Enable Area Above Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1034 +#: fs-admin/fs-admin.php:1042 +#: fs-admin/fs-admin.php:1050 +#: fs-admin/fs-admin.php:1058 +#: fs-admin/fs-admin.php:1066 +#: fs-admin/fs-admin.php:1074 +#: fs-admin/fs-admin.php:1082 +msgid "css-value:" +msgstr "" + +#: fs-admin/fs-admin.php:1040 +msgid "Enable Area Below Forum" +msgstr "" + +#: fs-admin/fs-admin.php:1048 +msgid "Enable Area Above Branding" +msgstr "" + +#: fs-admin/fs-admin.php:1056 +msgid "Enable Area Above Info Center" +msgstr "" + +#: fs-admin/fs-admin.php:1064 +msgid "Enable Area Above Breadcrumbs" +msgstr "" + +#: fs-admin/fs-admin.php:1072 +msgid "Enable Area Above Quick Reply Form" +msgstr "" + +#: fs-admin/fs-admin.php:1080 +msgid "Enable Area Below First Post" +msgstr "" + +#: fs-admin/fs-admin.php:1087 +msgid "Below you can modify/add your own CSS" +msgstr "" + +#: fs-admin/fs-admin.php:1088 +msgid "NOTE: If you do not know what this is for, leave it blank" +msgstr "" + +#: fs-admin/fs-admin.php:1095 +#, fuzzy +msgid "Save Options" +msgstr "儲存" + +#: fs-admin/wpf-add-forum.php:3 +msgid "Add forum to" +msgstr "加入討論區" + +#: fs-admin/wpf-add-forum.php:12 +msgid "Description:" +msgstr "描述:" + +#: fs-admin/wpf-add-forum.php:28 +msgid "Save forum" +msgstr "儲存" + +#: fs-admin/wpf-add-group.php:5 +#, fuzzy +msgid "Add category" +msgstr "編輯目錄" + +#: fs-admin/wpf-add-group.php:19 +#, fuzzy +msgid "Save category" +msgstr "編輯目錄" + +#: fs-admin/wpf-add-usergroup.php:21 +#: .\fs-admin/wpf-add-usergroup.php:21 +msgid "Save user group" +msgstr "儲存使用者群組" + +#: fs-admin/wpf-addusers.php:19 +#: .\fs-admin/wpf-addusers.php:19 +msgid "Select User group" +msgstr "選擇使用者群組" + +#: fs-admin/wpf-addusers.php:29 +#: .\fs-admin/wpf-addusers.php:29 +msgid "Add users" +msgstr "增加使用者" + +#: fs-admin/wpf-edit-forum-group.php:10 +#: .\fs-admin/wpf-edit-forum-group.php:10 +msgid "You must specify a group name" +msgstr "您必須指定一個群組名稱" + +#: fs-admin/wpf-edit-forum-group.php:22 +#: .\fs-admin/wpf-edit-forum-group.php:22 +msgid "Group updated successfully" +msgstr "群組更新成功" + +#: fs-admin/wpf-edit-forum-group.php:32 +#: .\fs-admin/wpf-edit-forum-group.php:32 +msgid "You must specify a forum name" +msgstr "您必須指定一個討論區名稱" + +#: fs-admin/wpf-edit-forum-group.php:35 +#: .\fs-admin/wpf-edit-forum-group.php:35 +msgid "Forum updated successfully" +msgstr "討論區更新成功" + +#: fs-admin/wpf-edit-forum-group.php:47 +#: .\fs-admin/wpf-edit-forum-group.php:47 +msgid "Edit category" +msgstr "編輯目錄" + +#: fs-admin/wpf-edit-forum-group.php:61 +#: .\fs-admin/wpf-edit-forum-group.php:61 +msgid "User Groups:" +msgstr "群組" + +#: fs-admin/wpf-edit-forum-group.php:64 +#: .\fs-admin/wpf-edit-forum-group.php:64 +msgid "Members of the checked User Groups have access to the forums in this category:" +msgstr "選擇的群組有權限觀看此分類" + +#: fs-admin/wpf-edit-forum-group.php:96 +#: .\fs-admin/wpf-edit-forum-group.php:96 +msgid "There are no User Groups" +msgstr "沒有群組" + +#: fs-admin/wpf-edit-forum-group.php:103 +#: .\fs-admin/wpf-edit-forum-group.php:103 +msgid "Save group" +msgstr "儲存群組" + +#: fs-admin/wpf-edit-forum-group.php:117 +#: .\fs-admin/wpf-edit-forum-group.php:117 +msgid "Edit forum" +msgstr "編輯討論區" + +#: fs-admin/wpf-moderator.php:18 +#: .\fs-admin/wpf-moderator.php:18 +msgid "Select user" +msgstr "選擇使用者" + +#: fs-admin/wpf-moderator.php:35 +#: .\fs-admin/wpf-moderator.php:35 +msgid "Add moderator" +msgstr "加入版主" + +#: fs-admin/wpf-usergroup-edit.php:9 +#: .\fs-admin/wpf-usergroup-edit.php:9 +msgid "You must specify a name for the User Group" +msgstr "您必須指定群組的名稱" + +#: fs-admin/wpf-usergroup-edit.php:16 +#: .\fs-admin/wpf-usergroup-edit.php:16 +msgid "User Group updated successfully" +msgstr "群組更新成功" + +#: fs-admin/wpf-usergroup-edit.php:23 +#: .\fs-admin/wpf-usergroup-edit.php:23 +msgid "Edit User Group" +msgstr "編輯群組" + +#: fs-admin/wpf-usergroup-edit.php:37 +#: .\fs-admin/wpf-usergroup-edit.php:37 +msgid "Save User Group" +msgstr "儲存群組" + +#~ msgid "General Options" +#~ msgstr "一般設定" + +#~ msgid "Categories and forums" +#~ msgstr "分類與討論區" + +#~ msgid "Remove this post?" +#~ msgstr "刪除這篇回覆?" + +#~ msgid "Messages" +#~ msgstr "訊息:" + +#~ msgid "New Message" +#~ msgstr "新的消息" + +#, fuzzy +#~ msgid "Read Message Thread" +#~ msgstr "查看留言" + +#~ msgid "new" +#~ msgstr "新留言" + +#~ msgid "Use Private Messages:" +#~ msgstr "使用私人訊息:" + +#~ msgid "Maximum Messages In Inbox (0 = unlimited):" +#~ msgstr "收件夾最多訊息(0 =無限制):" + +#~ msgid "Message Deleted" +#~ msgstr "訊息刪除" + +#~ msgid "Your Message Was Deleted!" +#~ msgstr "您的訊息已刪除" + +#~ msgid "Back To Your Inbox" +#~ msgstr "回到收件夾" + +#~ msgid "ERROR" +#~ msgstr "錯誤" + +#~ msgid "You Do Not Have Permission To View This!" +#~ msgstr "您沒有權限查看" + +#~ msgid "Create New Message" +#~ msgstr "建立新訊息" + +#~ msgid "Unlimited" +#~ msgstr "無限" + +#, fuzzy +#~ msgid "Message Box Size" +#~ msgstr "发送消息" + +#~ msgid "of" +#~ msgstr "的" + +#, fuzzy +#~ msgid "You cannot send/receive any new messages" +#~ msgstr "您收到了新邮件从" + +#~ msgid "Started By" +#~ msgstr "發表於" + +#, fuzzy +#~ msgid "Last Reply" +#~ msgstr "发表回复" + +#, fuzzy +#~ msgid "No Messages" +#~ msgstr "新的消息" + +#~ msgid "Message Sent" +#~ msgstr "發送訊息" + +#~ msgid "The Message Was Successfully Sent!" +#~ msgstr "訊息發送成功" + +#, fuzzy +#~ msgid "Back To Your Messages" +#~ msgstr "回到您的收件箱" + +#~ msgid "You have recieved a new message from" +#~ msgstr "你收到了一個新訊息從" + +#~ msgid "follow this link to view:" +#~ msgstr "點這查看" + +#~ msgid "Message Could Not Be Sent!" +#~ msgstr "郵件無法發送" + +#~ msgid "The recipients inbox is FULL!" +#~ msgstr "對方收件夾已滿" + +#~ msgid "Please fill in all fields before submitting message!" +#~ msgstr "請填寫以下欄位" + +#~ msgid "To:" +#~ msgstr "給:" + +#~ msgid "Select User" +#~ msgstr "選擇使用者" + +#~ msgid "You Must Be Logged In To Create Private Messages!" +#~ msgstr "您必須先登入才能發私人訊息!" + +#~ msgid "Message Contents" +#~ msgstr "留言內容" + +#, fuzzy +#~ msgid "Reply:" +#~ msgstr "答复" + +#~ msgid "Feed" +#~ msgstr "Feed" + +#, fuzzy +#~ msgid "Email:" +#~ msgstr "Email" + +#~ msgid "Mingle Forum Themes:" +#~ msgstr "Mingle Forum 佈景" + +#~ msgid "Posts" +#~ msgstr "回覆" + +#~ msgid "Topics " +#~ msgstr "主題" + +#~ msgid "Posted on: " +#~ msgstr "張貼於:" + +#~ msgid "Allow email notifications?" +#~ msgstr "允许电子邮件通知?" + +#~ msgid "Notify" +#~ msgstr "通知" + +#~ msgid "View Inbox" +#~ msgstr "查看收件箱" + +#~ msgid "Contact:" +#~ msgstr "联系方式:" + +#~ msgid "Inbox size" +#~ msgstr "收件箱大小" + +#~ msgid "total" +#~ msgstr "总" + +#~ msgid "From" +#~ msgstr "从" + +#~ msgid "NEW" +#~ msgstr "新" + +#~ msgid "OLD" +#~ msgstr "老" + +#~ msgid "Empty Inbox" +#~ msgstr "清空收件箱" + +#~ msgid "Your Inbox Is Empty!" +#~ msgstr "您的收件箱是空的!" + +#~ msgid "Try Again" +#~ msgstr "再试一次" + +#~ msgid "Reply To Message" +#~ msgstr "回复邮件" diff --git a/images/chart.png b/images/chart.png new file mode 100644 index 0000000..e1af239 Binary files /dev/null and b/images/chart.png differ diff --git a/images/closed.gif b/images/closed.gif new file mode 100644 index 0000000..48e68c4 Binary files /dev/null and b/images/closed.gif differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..d2bb95a Binary files /dev/null and b/images/logo.png differ diff --git a/images/logomain.png b/images/logomain.png new file mode 100644 index 0000000..40a5e30 Binary files /dev/null and b/images/logomain.png differ diff --git a/images/table.png b/images/table.png new file mode 100644 index 0000000..ad91254 Binary files /dev/null and b/images/table.png differ diff --git a/images/user.png b/images/user.png new file mode 100644 index 0000000..8d182e9 Binary files /dev/null and b/images/user.png differ diff --git a/js/plugins/bbcodev2/editor_plugin_src.js b/js/plugins/bbcodev2/editor_plugin_src.js new file mode 100644 index 0000000..6523a5d --- /dev/null +++ b/js/plugins/bbcodev2/editor_plugin_src.js @@ -0,0 +1,285 @@ + +/** + * $Id: editor_plugin_src.js 201 2007-02-12 15:56:56Z spocke $ + * + * @id Moxiecode + * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved. + */ + +// URL : http://support.utiliweb.fr/handlers/tiny_mce/plugins/bbcodev2/editor_plugin_src.js + +(function() { + tinymce.create('tinymce.plugins.BBCodev2Plugin', { + init : function(ed, url) { + var t = this, dialect = ed.getParam('bbcode_dialect', 'punbb').toLowerCase(); + + ed.onBeforeSetContent.add(function(ed, o) { + o.content = t['_' + dialect + '_bbcode2html'](o.content); + }); + + ed.onPostProcess.add(function(ed, o) { + if (o.set) + o.content = t['_' + dialect + '_bbcode2html'](o.content); + + if (o.get) + o.content = t['_' + dialect + '_html2bbcode'](o.content); + }); + + function replaceContent(component, tag) { + var cm = ed.controlManager.get(component); + if (ed.selection.getContent() !== '') { + ed.selection.setContent('[' + tag + ']' + ed.selection.getContent() + '[/' + tag + ']'); + } else if (cm.isActive()) { + ed.selection.setContent('[/' + tag + ']'); + cm.setActive(false); + } else { + ed.selection.setContent('[' + tag + ']'); + cm.setActive(true); + } + } + + ed.addCommand('preCmd', function () { + replaceContent('pre', 'code'); + }); + ed.addCommand('ytCmd', function () { + replaceContent('yt', 'yt'); + }); + ed.addCommand('mapCmd', function () { + replaceContent('map', 'map'); + }); + ed.addCommand('spoilCmd', function () { + replaceContent('spoil', 'spoiler'); + }); + + ed.addCommand('linkCmd', function () { + var entry = prompt(); + if (entry) + ed.selection.setContent('' + ed.selection.getContent() + ''); + }); + + ed.addCommand('imageCmd', function () { + var entry = prompt(); + if (entry) + ed.selection.setContent(''); + }); + + ed.onInit.add(function (ed) { + var cm = ed.controlManager; + if (cm.get('pre')) + cm.get('pre').settings.cmd = 'preCmd'; + if (cm.get('yt')) + cm.get('yt').settings.cmd = 'ytCmd'; + if (cm.get('map')) + cm.get('map').settings.cmd = 'mapCmd'; + if (cm.get('link')) + cm.get('link').settings.cmd = 'linkCmd'; + if (cm.get('image')) + cm.get('image').settings.cmd = 'imageCmd'; + if (cm.get('spoil')) + cm.get('spoil').settings.cmd = 'spoilCmd'; + }); + }, + + getInfo : function() { + return { + longname : 'BBCodev2 Plugin', + id : 'Moxiecode Systems AB', + idurl : 'http://tinymce.moxiecode.com', + infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/bbcodev2', + version : tinymce.majorVersion + "." + tinymce.minorVersion + }; + }, + + // Private methods + + // HTML -> BBCode in PunBB dialect + _punbb_html2bbcode : function(s) { + s = tinymce.trim(s); + + function rep(re, str) { + s = s.replace(re, str); + }; + + + // example: to [b] + rep(/

    (.*?)<\/p>/gi,"[code]$1[/code]"); + rep(/(.*?)<\/strong>/gi,"[code]$1[/code]"); + rep(/(.*?)<\/em>/gi,"[code]$1[/code]"); + + rep(/(.*?)<\/a>/gi,"[link=$1]$2[/link]"); + rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); + rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); + rep(/(.*?)<\/a>/gi,"[link=$1]$2[/link]"); + rep(/(.*?)<\/a>/gi,"[url=$1]$2[/url]"); + + + + rep(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); + rep(/(.*?)<\/font>/gi,"[blockquote][color=$1]$2[/color][/blockquote]"); + rep(/(.*?)<\/font>/gi,"[code][color=$1]$2[/color][/code]"); + rep(/(.*?)<\/font>/gi,"[blockquote][color=$1]$2[/color][/blockquote]"); + rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/span>/gi,"[size=$1]$2[/size]"); + rep(/(.*?)<\/font>/gi,"$1"); + rep(//gi,"[img]$1[/img]"); + rep(//gi,"[img=miniature]$1[/img]"); + rep(//gi,"[img]$1[/img]"); + rep(/(.*?)<\/span>/gi,"[code]$1[/code]"); + rep(/(.*?)<\/span>/gi,"[blockquote]$1[/blockquote]"); + rep(/(.*?)<\/span>/gi,"[quote=$1]$2[/quote]"); + rep(/(.*?)<\/span>/gi,"[quote=$1]$2[/quote]"); + rep(/(.*?)<\/span>/gi,"[hide]$1[/hide]"); + rep(/

    (.*?)<\/p>/gi,"[blockquote]$1[/blockquote]"); + rep(/

    (.*?)<\/p>/gi,"[hide]$1[/hide]"); + rep(/

    (.*?)<\/p>/gi,"[quote=$1]$2[/quote]"); + rep(/(.*?)<\/span>/gi,"[blockquote]$1[/blockquote]"); + rep(/(.*?)<\/strong>/gi,"[quote][b]$1[/b][/quote]"); + rep(/(.*?)<\/em>/gi,"[quote][i]$1[/i][/quote]"); + rep(/(.*?)<\/u>/gi,"[code][u]$1[/u][/code]"); + rep(/(.*?)<\/code>/gi,"[code]$1[/code]"); + rep(/(.*?)<\/u>/gi,"[quote][u]$1[/u][/quote]"); + rep(/<\/(strong|b)>/gi,"[/b]"); + rep(/<(strong|b)>/gi,"[b]"); + rep(/<\/(em|i)>/gi,"[/i]"); + rep(/<(em|i)>/gi,"[i]"); + rep(/<\/u>/gi,"[/u]"); + rep(/

    .*?<\/div>/gi,"[video=youtube]$1[/video]"); + rep(/
    .*?<\/div>/gi,"[video=dailymotion]$1[/video]"); + rep(/
    .*?<\/div>/gi,"[video=veoh]$1[/video]"); + rep(/
    .*?<\/div>/gi,"[video=vimeo]$1[/video]"); + rep(/
    .*?<\/div>/gi,"[video=jiwa]$1[/video]"); + rep(/
    .*?<\/div>/gi,"[deezer]$1[/deezer]"); + rep(/
    .*?<\/div>/gi,"[picasa]$1[/picasa]"); + rep(/(.*?)<\/span>/gi,"[no]$1[/no]"); + rep(/(.*?)<\/span>/gi,"[u]$1[/u]"); + rep(/

    <\/p>/gi,"\n"); + rep(/

    <\/p>/gi,"\n"); + rep(/

    <\/p>/gi,"\n"); + rep(/

    <\/p>/gi,"\n"); + rep(/

    (.*?)<\/p>/gi,"[$1]$2[/$1]"); + rep(//gi,"[u]"); + rep(/]*>/gi,"[quote]"); + rep(/<\/blockquote>/gi,"[/quote]"); + +//listes + rep(/]*>(.*?)<\/ul>/gi,"[list]$1[/list]"); + rep(/

      (.*?)<\/ol>/gi,"[list=lower-alpha]$1[/list]"); + rep(/]*>(.*?)<\/ol>/gi,"[list=decimal]$1[/list]"); + rep(/
    1. (.*?)<\/li>/gi,"[*]$1\n"); + + +//tableaux + rep(/(.*?)<\/tbody><\/table>/gi,"[tableau]$1[/tableau]"); + rep(/(.*?)<\/table>/gi,"[tableau]$1[/tableau]"); + rep(//gi,"[ligne]"); + rep(/<\/td><\/tr>/gi,"[/ligne]"); + rep(/<\/td>/gi,"[|]"); + + rep(/

      /gi,""); + rep(//gi,""); + rep(/<\/p>/gi,"
      "); + rep(/
      /gi,"\n"); + rep(//gi,"\n"); + rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/span>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/font>/gi,"[color=$1]$2[/color]"); + rep(/(.*?)<\/span>/gi,"[size=$1]$2[\/size]"); + rep(/(.*?)<\/span>/gi,"[size=$1]$2[\/size]"); + rep(/(.*?)<\/span>/gi,"[size=$1]$2[\/size]"); + rep(/<\!--.*?-->/gi,""); + rep(/<\/span>/gi,""); + rep(//gi,""); + rep(//gi,""); + rep(/<\/div>/gi,""); + rep(//gi,""); + rep(/<\/tr>/gi,""); + rep(/<\/table>/gi,""); + rep(//gi,""); + rep(/<\/tbody>/gi,""); + rep(//gi,""); + rep(//gi,""); + rep(/<\/td>/gi,""); + rep(/ /gi," "); + rep(/"/gi,"\""); + rep(/</gi,"<"); + rep(/>/gi,">"); + rep(/&/gi,"&"); + + return s; + }, + + // BBCode -> HTML from PunBB dialect + _punbb_bbcode2html : function(s) { + s = tinymce.trim(s); + + function rep(re, str) { + s = s.replace(re, str); + }; + + + // example: [b] to + rep(/\[code\](.*?)\[\/code\]/gi,"

      $1

      "); + rep(/\n\n/g, "

      <\/p>"); + rep(/\n/g, "
      "); + rep(/\[b\]/gi,""); + rep(/\[\/b\]/gi,""); + rep(/\[i\]/gi,""); + rep(/\[\/i\]/gi,""); + rep(/\[u\]/gi,""); + rep(/\[\/u\]/gi,""); + rep(/\[url=([^\]]+)\](.*?)\[\/url\]/gi,"$2"); + rep(/\[url\](.*?)\[\/url\]/gi,"
      $1"); + rep(/\[link=([^\]]+)\](.*?)\[\/link\]/gi,"$2"); + rep(/\[link\](.*?)\[\/link\]/gi,"$1"); + rep(/\[img\](.*?)\[\/img\]/gi,""); + rep(/\[img=miniature\](.*?)\[\/img\]/gi,""); + rep(/\[color=(.*?)\]/gi,""); + rep(/\[\/color\]/gi,""); + rep(/\[hide\](.*?)\[\/hide\]/gi,"

      $1

      "); + rep(/\[blockquote.*?\](.*?)\[\/blockquote\]/gi,"

      $1

      "); + rep(/\[quote=(.*?)\](.*?)\[\/quote\]/gi,"

      $2

      "); + rep(/\[quote.*?=(.*?)\](.*?)\[\/quote.*?\]/gi,"

      $2

      "); + rep(/\[size=(.*?)\]/gi,""); + rep(/\[\/size\]/gi,""); + rep(/\[no](.*?)\[\/no\]/gi,"$1"); + rep(/\[center](.*?)\[\/center\]/gi,"

      $1

      "); + rep(/\[left](.*?)\[\/left\]/gi,"

      $1

      "); + rep(/\[right](.*?)\[\/right\]/gi,"

      $1

      "); + rep(/\[justify](.*?)\[\/justify\]/gi,"

      $1

      "); + rep(/\[video=youtube\](.*?)\[\/video\]/gi,"


      $1<\/div>"); + rep(/\[video=dailymotion\](.*?)\[\/video\]/gi,"


      $1<\/div>"); + rep(/\[video=veoh\](.*?)\[\/video\]/gi,"


      $1<\/div>"); + rep(/\[video=vimeo\](.*?)\[\/video\]/gi,"


      $1<\/div>"); + rep(/\[video=jiwa\](.*?)\[\/video\]/gi,"


      $1<\/div>"); + rep(/\[deezer\](.*?)\[\/deezer\]/gi,"


      $1<\/div>"); + rep(/\[picasa\](.*?)\[\/picasa\]/gi,"


      <\/div>"); + + + //tableaux + rep(/\[\|\]/gi,""); + rep(/\[ligne](.*?)\[\/ligne\]/gi,"$1"); + rep(/\[tableau](.*?)\[\/tableau\]/gi,"$1
      "); + // lists + rep(/\[list\]\[\*\](.*?)\[\/list\]/gi, "
      • $1
      "); + rep(/\[list=decimal\]\[\*\](.*?)\[\/list\]/gi, "
      1. $1
      "); + rep(/\[list=lower-alpha\]\[\*\](.*?)\[\/list\]/gi, "
      1. $1
      "); + rep(/\[list\](.*?)\[\/list\]/gi, "
      • $1
      "); + rep(/\[list=decimal\](.*?)\[\/list\]/gi, "
      1. $1
      "); + rep(/\[list=lower-alpha\](.*?)\[\/list\]/gi, "
      1. $1
      "); + rep(/\[\*\]/gi, "
    2. "); + + + // fix empty li's + rep(/

    3. <\/li>/g, ""); + rep(//g, ""); + return s; + } + }); + + // Register plugin + tinymce.PluginManager.add('bbcodev2', tinymce.plugins.BBCodev2Plugin); +})(); diff --git a/js/plugins/emotions/editor_plugin_src.js b/js/plugins/emotions/editor_plugin_src.js new file mode 100644 index 0000000..b8bde22 --- /dev/null +++ b/js/plugins/emotions/editor_plugin_src.js @@ -0,0 +1,43 @@ +/** + * editor_plugin_src.js + * + * Copyright 2009, Moxiecode Systems AB + * Released under LGPL License. + * + * License: http://tinymce.moxiecode.com/license + * Contributing: http://tinymce.moxiecode.com/contributing + */ + +(function(tinymce) { + tinymce.create('tinymce.plugins.EmotionsPlugin', { + init : function(ed, url) { + // Register commands + ed.addCommand('mceEmotion', function() { + ed.windowManager.open({ + file : url + '/emotions.php', + width : 300 + parseInt(ed.getLang('emotions.delta_width', 0)), + height : 200 + parseInt(ed.getLang('emotions.delta_height', 0)), + inline : 1 + }, { + plugin_url : url + }); + }); + + // Register buttons + ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); + }, + + getInfo : function() { + return { + longname : 'Emotions', + author : 'Moxiecode Systems AB', + authorurl : 'http://tinymce.moxiecode.com', + infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', + version : tinymce.majorVersion + "." + tinymce.minorVersion + }; + } + }); + + // Register plugin + tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); +})(tinymce); \ No newline at end of file diff --git a/js/plugins/emotions/emotions.php b/js/plugins/emotions/emotions.php new file mode 100644 index 0000000..3fee6ca --- /dev/null +++ b/js/plugins/emotions/emotions.php @@ -0,0 +1,32 @@ + + + + + + + + + + +
      + + + + + +
      + + diff --git a/js/plugins/emotions/js/emotions.js b/js/plugins/emotions/js/emotions.js new file mode 100644 index 0000000..b33b2b9 --- /dev/null +++ b/js/plugins/emotions/js/emotions.js @@ -0,0 +1,36 @@ +var EmotionsDialog = { + addKeyboardNavigation: function(){ + var tableElm, cells, settings; + + cells = tinyMCEPopup.dom.select("a.emoticon_link", "emoticon_table"); + + settings ={ + root: "emoticon_table", + items: cells + }; + cells[0].tabindex=0; + tinyMCEPopup.dom.addClass(cells[0], "mceFocus"); + if (tinymce.isGecko) { + cells[0].focus(); + } else { + setTimeout(function(){ + cells[0].focus(); + }, 100); + } + tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom); + }, + init : function(ed) { + tinyMCEPopup.resizeToInnerSize(); + this.addKeyboardNavigation(); + }, + + insert : function(title) { + var ed = tinyMCEPopup.editor, dom = ed.dom; + + tinyMCEPopup.execCommand('mceInsertContent', false, title); + + tinyMCEPopup.close(); + } +}; + +tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog); diff --git a/js/script.js b/js/script.js new file mode 100644 index 0000000..105e8ec --- /dev/null +++ b/js/script.js @@ -0,0 +1,130 @@ +// Surrounds the selected text with text1 and text2. +function surroundText(tag1, tag2, myarea) +{ + if (document.selection) //IE + { + myarea.focus(); + var sel = document.selection.createRange(); + sel.text = tag1 + sel.text + tag2; + } + else //Other Browsers + { + var len = myarea.value.length; + var start = myarea.selectionStart; + var end = myarea.selectionEnd; + var scrollTop = myarea.scrollTop; + var scrollLeft = myarea.scrollLeft; + var sel = myarea.value.substring(start, end); + var rep = tag1 + sel + tag2; + myarea.value = myarea.value.substring(0,start) + rep + myarea.value.substring(end,len); + myarea.scrollTop = scrollTop; + myarea.scrollLeft = scrollLeft; + } +} + +var current_header = false; + +function shrinkHeader(mode){ + + var val = ""; + document.getElementById("upshrinkHeader").style.display = mode ? "none" : ""; + document.getElementById("upshrinkHeader2").style.display = mode ? "none" : ""; + + //document.getElementById("upshrink").src = skinurl+"/images" + (mode ? "/upshrink2.gif" : "/upshrink.gif"); + + if(mode === true){ + val = "yes"; + } + if(mode === false){ + val = "no"; + } + + setCookie("wpf_header_state", val, 0 ); + + current_header = mode; +} + + +function setCookie(name, value, expires, path, domain, secure) { + document.cookie= name + "=" + escape(value) + + (expires? "; expires=" + expires.toGMTString(): "") + + (path? "; path=" + path: "") + + (domain? "; domain=" + domain: "") + + (secure? "; secure": ""); +} + +function fold(){ + + var lol = getCookie("wpf_header_state"); + if(lol === "yes") + shrinkHeader(true); + if(lol === "no") + shrinkHeader(false); +} + +function getCookie(c_name) +{ +if (document.cookie.length>0) + { + c_start=document.cookie.indexOf(c_name + "="); + if (c_start!==-1) + { + c_start=c_start + c_name.length+1; + c_end=document.cookie.indexOf(";",c_start); + if (c_end===-1) c_end=document.cookie.length; + return unescape(document.cookie.substring(c_start,c_end)); + } + } +return ""; +} + + +function selectBoards(ids){ + var toggle = true; + + for (i = 0; i < ids.length; i++) + toggle = toggle & document.forms.wpf_searchform["forum" + ids[i]].checked; + + for (i = 0; i < ids.length; i++) + document.forms.wpf_searchform["forum" + ids[i]].checked = !toggle; +} + +function collapseExpandGroups(group, mode){ + +} + +function expandCollapseBoards(){ + var current = document.getElementById("searchBoardsExpand").style.display !== "none"; + document.getElementById("search_coll").src = skinurl+"/images" + (current ? "/upshrink2.gif" : "/upshrink.gif"); + document.getElementById("searchBoardsExpand").style.display = current ? "none" : ""; +} + +// Invert all checkboxes at once by clicking a single checkbox. +function invertAll(headerfield, checkform, mask) +{ + for (var i = 0; i < checkform.length; i++) + { + if (typeof(checkform[i].name) === "undefined" || (typeof(mask) !== "undefined" && checkform[i].name.substr(0, mask.length) !== mask)) + continue; + + if (!checkform[i].disabled) + checkform[i].checked = headerfield.checked; + } +} + +function uncheckglobal(headerfield, checkform){ + checkform.mod_global.checked = false; +} + +jQuery().ready(function () { + jQuery('.mingle-spoiler-view li:first-child').click(function () { + var text = jQuery(this).parent().find('li:last-child'); + if (text.is(':hidden')) { + text.slideDown('200'); + jQuery(this).find('span').html('-'); + } else { + text.slideUp('200'); + jQuery(this).find('span').html('+'); + } + }); +}); diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..04cf005 --- /dev/null +++ b/readme.txt @@ -0,0 +1,483 @@ +=== Mingle Forum Hacked === +Contributors: cartpauj +Hacker : Xéfir Destiny +Donate link: http://cartpauj.com/donate/ +Tags: forum, mingle, mingle forum, cartpauj, discussion, board, threads, messaging, message, messages, user forum, wordpress forum, forum plugin, forums, discussion forums, easy forum, discussion board, discussions, boards, bbpress, bulletin board, bulletin boards, bulletin, server, wp +Requires at least: 3.0 +Tested up to: 3.6 +Stable tag: 1.0.4 + +Mingle Forum allows you to easily and quickly put a Forum on your Wordpress site/blog. + +== BEFORE ALL READ THIS == +Hi ! +I'm Xéfir Destiny, the "hacker" of this plugin. +I made huge modifications from the 1.0.34 version of the original plugin by cartpauj. +Some great new features is included, like the sub-forums capabilities or the wordpress editor for posts writing (with BBCode support !) +It's pretty stable now, even if there are still performance issues. +Unfortunatly, i don't have time anymore to work on it now, so i decide to release as it's, but it's at your own risks ;-) + +== Description == +Have you been looking for a Forum Plugin for WordPress that *just works*? Then look no further! Mingle Forum has been modified to be lightweight, solid, secure, quick to setup, easy to use, and best of all it now integrates seamlessly with or without the Mingle social networking plugin (by Blair Williams). The mission of Mingle Forum is, to **KEEP IT SIMPLE** There are a handful of Forum Plugins for WordPress available but they are either super buggy, difficult to install, or so bloated with features and settings that its a nightmare setting them up. Dont do that to yourself!!! You can be up and running with Mingle Forum fully installed and configured in as little as 5 minutes -- pretty cool eh? + += Donate = +[GET A FREE PLUGIN WHEN DONATING](http://cartpauj.com/projects/cartpauj-post-hits-plugin/) + += See Mingle Forum In Action = +You can try Mingle Forum out on my site: +[cartpauj.com](http://cartpauj.com "cartpauj.com Wordpress Plugins") + += Get More Forum Skins = +[Get More Mingle Forum Skins](http://cartpauj.icomnow.com/forum/?mingleforumaction=viewforum&f=5.0 "cartpauj.com Mingle Forum Skins") + += Features = +* **NEW!** Limit SPAM by setting a time interval users must wait between posts +* Create a corresponding Forum post when you create a WordPress post +* User Signatures (instead of Bio) +* Lock entire forums +* Image uploads on New Posts and Replies +* SEO Friendly forum URLs +* Forum Sitemap (../wp-content/plugins/mingle-forum/sitemap.php) +* Integrated HTML areas for adsense or affiliate links +* Media embedding into forum posts (like Youtube, Flickr, Photobucket...) +* Private Messages - Mingle Forum now integrates seamlessly with Mingle or my [Cartpauj PM Plugin](http://cartpauj.com/projects/cartpauj-pm-plugin) (Requires Cartpauj PM vs 1.0.09 or greater) +* RSS Feeds +* Quick Reply +* Wordpress 3.x ready! +* Categories with sub-forums +* User Groups +* User Levels (EX: Newbie, Beginner, Advanced, Pro) +* Moderators +* Skins +* Captcha +* BB Code +* Smilies +* Custom Forum Search +* Guest posts (See Mingle Forum Guest Info add-on by wpweaver) +* Hot/Very Hot topics +* Sticky (Pinned) Topics +* Move, Edit, Remove and Close topics +* Email notifications on Replies to Topics +* Email notifications on new Topics in Forums +* Recent posts widget (or PHP shortcode for your theme) +* Integrates nicely with most themes (Its tough to make it work for all themes so some skin modifications may be required for your site) +* Allow/Dis-allow other users to view your profile from the Forum +* Supports internationalization/localization +* Integrates with the Mingle plugin (by Blair Williams) NOTE: The Mingle plugin is NOT required for the forum to work + += Notes = +* Mingle forum 1.0.32 uses a new email subscription system. All old subscriptions will be lost after upgrading. This will allow much better email support for the future. +* If you use Wordpress 2.9.2 or older you will need to download Mingle Forum vs. 1.0.27 as of 1.0.28+ only Wordpress 3.0+ is supported +* As of Mingle Forum Vs 1.0.03 the skins directory has been changed to /wp-content/mingle-forum-skins/ [Tell Me More...](http://cartpauj.icomnow.com/forum/?mingleforumaction=viewtopic&t=64.0) +* If youre switching from WP Forum or Forum Server you will lose your skin and settings but you will NOT lose your categories, forums, groups, or topics which makes it very easy to make the transition :) + += Translations = +* NOTE: If you want to help with translations click [HERE](http://cartpauj.icomnow.com/forum/cartpauj-general-group2/translating-my-plugins-forum15/how-to-translate-my-plugins-to-your-language-thread25/) +* Arabic +* Brazilian Portuguese +* Bulgarian +* Croatian +* Czech +* Danish +* Dutch +* Estonian +* Finnish +* French +* Georgian +* German +* Hebrew +* Hungarian +* Indonesian +* Italian +* Japanese +* Latvian +* Persian +* Polish +* Romanian +* Russian +* Simplified Chinese +* Slovak +* Slovanian +* Spanish +* Swedish +* Thai +* Traditional Chinese +* Turkish + +== Installation == +* Great [setup videos here](http://cartpauj.com/projects/mingle-forum-plugin/tutorials/) by cartpauj or use Roberts [text guide here](http://minglecommunities.com/mingle-forum-install-guide/). +* Download Mingle Forum +* Create a new page for your forum to display on +* Head to the page you just created for the forum, paste [mingleforum] and save, (NOTE: Its best to paste that under the HTML tab of your page editor) +* Head to Dashboard -> Plugins -> Add New -> Upload +* Browse to the .zip file you downloaded and click open +* Click Install +* Click Activate +* Youll now see a new admin menu called Mingle Forum +* Configure your Mingle Forum options, Set a Skin [HOW TO](http://cartpauj.icomnow.com/forum/?mingleforumaction=viewtopic&t=36.00), create your Categories and Forums +* DONE! Its that easy + +Need help?: +[Cartpauj Support Forums](http://cartpauj.icomnow.com/forum "Cartpauj Support Forums") + +== Frequently Asked Questions == +n/a + +== Upgrade Notice == + + MAKE A BACKUP OF YOUR DATABASE BEFORE INSTALL THIS VERSION !!! + +== Upgrade Note for you theme == +To make your theme compatible with this copy of Mingle Forum, in your style.css, you have to : +* Replace all #trail by .trail +* Replace all #forummenu by .forummenu +* Replace all #topicmenu by .topicmenu + +== Changelog == += 1.0.4 = +* Show all dates in localized language +* Date format setting is now part of the Wordpress core +* Get login/register page dynamically (compatibility with Theme My Login) +* Generate smilies dynamically +* HUGE code cleanup +* !!! Sub-forums feature !!! +* !!! Using TinyMCE Wordpress editor !!! +* !!! Remove Mingle and PM integration !!! +* User Group access and post can be assigned to forum +* Two methods to restict access : access and post +* Spoiler BBCode +* Center BBCode +* HTML validation +* Add bottom pagination +* Fix display glitches +* Fix -1 threads after delete the last post +* Fix Quick Reply on IE += 1.0.34 = +* Added ability to limit SPAM by setting a time interval users must wait between posts +* Added option to allow users to post replies in locked categories +* Added hide branding option +* Added a Permalink option for every reply +* Removed some reduntant links +* Brought back forum action links at the bottom of the thread +* Fixed wrong smilie images +* Fixed moderators unable to edit posts issue +* Fixed duplicate forums issue (Thanks to Steve, WordBooker Plugin author, for spotting this one) +* Fixed google ads not working (for now) +* Security enhancements +* Handful of other minor bug fixes +* Updated German Translation (Big thanks to Michael) +* Updated Bulgarian Translation (Big thanks to DDArt) += 1.0.33.3 = +* Compatibility release for WordPress 3.5 += 1.0.33.2 = +* Fixed bug in admin += 1.0.33.1 = +* A few more non-critical security patches +* Removed whitespace between BBCode buttons += 1.0.33 = +* Security patches += 1.0.32.1 = +* Fixed bug with email subscriptions throwing implode error += 1.0.32 = +* Subscribe to whole forum by email now available (old subscriptions will be lost, sorry) +* Fixed Header already sent errors caused by failing SEO redirects +* Fixed issue with wp posts->forum returning blank or no topic +* Fixed bug with Mark All Read feature throwing errors +* Updated German Translation (Big thanks to Michael) += 1.0.31.4 = +* Fixed broken inbox link introduced in 1.0.31.1 +* Removed advanced search (it didn't work anyways) +* Fixed search from returning MASS amounts of results += 1.0.31.3 = +* Small bug-fixes += 1.0.31.2 = +* Another security fix preventing hackers from editing all posts in the forum += 1.0.31.1 = +* Added ability to lock entire categories +* Fixed problems with SSL (https) +* Fixed Output Buffer issues - should solve SFC Like plugin incompatibilities +* Fixed major security risk when using CAPTCHA +* Fixed bug with moderators +* Fixed wpdb->prepare issues in wpf.insert.php file - inserts should be sanitized properly now +* Updated German Translation (Big thanks to Michael) += 1.0.31 = +* Added ability to link WordPress posts with corresponding forum post +* Added real forum signatures for users instead of Bio +* Added 4 more hooks for 3rd party plugin developers to use +* Fixed Quote link showing up on locked topics +* Fixed topic title vanishing if a single quote was used +* Fixed protected posts showing up in the New Posts feed +* Fixed potential XSS security threat +* Fixed path disclosure risk in /fs-admin/ files +* Added Croatian Translation (Big thanks to Sinisa) +* Updated Hungarian Translation (Big thanks to webmester) +* Updated German Translation (Big thanks to Michael) += 1.0.30 = +* Added image uploads feature +* Updated Czech Translation (Big thanks to sborez) +* Updated Swedish Translation(Big thanks to Fredrik Johansson Nord) +* Updated Italian Translation (Big thanks to Tamara) +* Updated Arabic Translation (Big thanks to Alhoashim) +* Updated Estonian Translation (Big thanks to Illimar Tambek) +* Updated Russian Translation (Big thanks to Pavel Shukhman) +* Updated Slovenian Translation (Big thanks to Saso Novak) +* Added Norwegian Translation (Big thanks to Sigmund) += 1.0.29 = +* Fixed critical posting bug with the latest PHP version +* Updated Italian Translation (Big thanks to Carlos and Nomed) +* Updated Finnish Translation (Big thanks to Eleanor) += 1.0.28.2 = +* Fixed critical formatting conflict caused by WP 3.0.5 += 1.0.28.1 = +* Fixed super-admin issue +* Fixed image compatibility issue with WP 3.0.5 +* Added a few more CSS classes for skin developers +* Updated Bulgarian Translation (Big thanks to DDArt) += 1.0.28 = +* Dropped all legacy support for Wordpress versions older than 3.0 +* Added Google Maps BBCode button +* Added a few code optimization fixes +* Added link to last page of thread to the date in the right column of forum view +* Updated all Modified Forum skins to support new maps BBCode image +* DDArt has also updated all his skins as well (Big thanks to him for his awesome work!) +* Fixed moderators saving bug when moderator not set to global +* Fixed LOTS of debug errors +* Fixed Subscribe/Unsubscribe email link +* Fixed RSS Feed not to show threads from group protected forums +* Fixed RSS Feeds to truley be disabled when disabling the admin option +* Fixed a translatable string +* Fixed forum sitemap.php issue when not using SEO URLs +* Fixed issue with Slovenian Translation +* Added Romainian Translation (Big thanks to Andrei) +* Added Finish Translation (Big thanks to Sammy) +* Updated German Translastion (Big thanks to Michael) += 1.0.27 = +* 4 Critical security fixes -- everyone should update immediately! (Big thanks to Charles) +* Added 7 Adsense areas and new admin menu for managing them +* Fixed SEO code from being executed when option is disabled +* Fixed Replies count to not include first post +* Fixed Thread views not to count administrator/moderator views +* Cleaned up plugin activation code -- should activate MUCH faster after this update +* Added Latvian Translation (Big thanks to LapuVieta.lv) +* Added Czech Translation (Big thanks to Jan) += 1.0.26 = +* Added link to original image when using BBCode to embed pictures +* Fixed dashboard admin menu +* Fixed BBCode surround text js issue with IE +* Fixed notify_topics bug in user options area +* Cleaned up more un-needed code in fs-admin +* Added Slovanian Translation (Big thanks to Tadej) +* Updated Bulgarian Translation (Big thanks to DDArt) +* Updated German Translation (Big thanks to Michael) +* Update Brazilian Portuguese Translation (Big thanks to Gabriel) += 1.0.25 = +* Added a link on forum home to mark all posts as read +* Fixed critical SQL error in edit forum options area +* Fixed minor avatar issue +* Fixed register/logout +* Fixed error when deleting forums +* Re-did forum/thread paging - much more condensed now +* Made small change to thread breadcrumbs +* Cleaned up some un-needed code += 1.0.24 = +* Added a Notify Admin of all new posts feature +* Added a few security enhancements +* Fixed plugin conflict causing forum to show 2+ times on same page +* Fixed critical error causing some static front pages not to show +* Fixed syntax error +* Updated German translation to the correct files (Big thanks to Michael) += 1.0.23.2 = +* Fixed SEO Links when using /index.php in permalinks +* Fixed SEO Links to work better with international languages +* Fixed critical broken widget links +* Fixed some login/logout links & form actions +* Updated latest_activity shortcode +* Added Estonian translation (Big thanks to Leo) +* Updated French translation (Big thanks to Maxime) +* Updated Russian translation (Big thanks to Pavel) +* Updated German translation (Big thanks to Michael) += 1.0.23.1 = +* Redid unread/new topics since last visit feature - works MUCH better now += 1.0.23 = +* ADDED SEO FRIENDLY URLs setting +* Added a dynamic forum sitemap (../wp-content/plugins/mingle-forum/sitemap.php) +* Added a confirmation pop-up before deleting a thread +* Improved unread/new topics +* Fixed widget to show only the latest post per thread +* Fixed a BBCode class error +* Fixed a few linking errors +* Fixed a few untranslatable strings +* Updated Danish Translation (Big thanks to Martin S) +* Added Indonesian Translastion (Big thanks to qzoners) += 1.0.22 = +* Fixed widget controls error when plugin is translated += 1.0.21.1 = +* Fixed another small javascript error += 1.0.21 = +* Fixed CSS error in the default skin +* Fixed database issue for some users - the posts table was not being created properly in some cases +* Fixed small javascript error += 1.0.20 = +* Fixed paging redirect bug +* Added some API filters for 3rd party devs -- check out the Mingle Forum Guest Info plugin by [Bruce](http://wpweaver.info) +* Updated German translation (Big thanks to [Michael Fitzen](http://be-infected.de/)) += 1.0.19 = +* Fixed critical bug with paging introduced in vs 1.0.17 +* Fixed thread paging bug when sticky topics are used +* Fixed critical error if users were running old versions of Mingle / Cartpauj PM +* Added feature to disable Bios (signatures) +* Added a few style fixes and another CSS button element for login +* Changed admin display name texbox into a drop-down to make it easier for people to figure out +* Added Turkish translation (Big thanks to [Selim Eski](http://selimeski.info)) +* Added Slovak translation (Big thanks to [Vladimir Procka](http://www.tastymedia.sk)) +* Added Polish translation (Big thanks to [JDstar](http://jdstar.pl)) += 1.0.18 = +* Fixed critical bug with Quick Reply allowing guests to post if guest posting was disabled. +* Added another CSS element += 1.0.17 = +* Fixed forum linking to redirect to the proper thread and post after creating, replying, or editing +* Integrated the Private Messaging portion of Mingle +* Added a Quick Reply form to the thread view +* Added a few CSS elements +* Added Hebrew translation (Big thanks to [bainternet](http://www.bainternet.info)) +* Updated German translation (Big thanks to [Michael Fitzen](http://be-infected.de/)) += 1.0.16 = +* Added an admin option to Disable forum RSS +* Fixed quotes not returning the proper user display name +* Fixed emails not sending the proper user display name +* Fixed fatal email bug +* Fixed a plugin conflict with Proplayer +* Fixed a bunch of Guest-Posting related bugs +* Fixed a few more translatable strings +* Fixed widget privacy bug - it was showing private posts to non-users of Forum Groups +* Cleaned up a bunch of code and syntax issues (Big thanks to [Bruce Wampler](http://wpweaver.info) for searching some of these out) +* Fixed a few other trivial issues +* Updated Spanish translation (Big thanks to [Notimundo](http://uca.migueldearriba.net/foro-de-debate/)) +* Updated Simplified Chinese translation (Big thanks to Yan Wei) +* Updated Bulgarian translation (Big thanks to [DD Art](http://ddart-bg.com/)) += 1.0.15 = +* Removed Feature - Private Messaging, please use [Cartpauj PM](http://cartpauj.com/projects/cartpauj-pm-plugin) instead +* Added Feature - Cartpauj PM now fully integrates with the Forum for Private Messaging (Requires Cartpauj PM vs 1.0.09 or greater) +* Changed Mingle Forum to only allow Moderators or Admins to "Remove" posts += 1.0.14 = +* Fixed a syntax error causing a fatal error when trying to Post a new topic += 1.0.13 = +* Fixed another registration link bug +* Fixed userrole redundancy +* New CAPTCHA system that doesn't use PHP Sessions so it should work for everyone :) +* Added Persian translation (Big thanks to [Mostafa Soufi](http://iran98.org/)) +* Updated Danish translations (Big thanks to [GeorgWP](http://wordpress.blogos.dk)) += 1.0.12 = +* Fixed a number of translatable strings +* Fixed some other profile related bugs +* Fixed Show/Hide header bug +* Security Fix - email address being sent out in notification emails +* Modified Profile linking and simplified some of the code for it +* Updated Japanese tranlsation (Big thanks to [Kayoko Furukawa](http://www.design-cupola.com)) +* Updated Bulgarian translation (Big thanks to [DD Art](http://ddart-bg.com/)) +* Added Hungarian translation (Big thanks to [Laszlo Szamosi](http://www.sutesfozes.blogspot.com)) +* Added Danish translation (Big thanks to [Thomas Sindberg](http://dagpengeregler.dk)) += 1.0.11 = +* Fixed bug causing logged in users name to show on all topic replies (Thanks to Gene for spotting this before I left for vacation!) += 1.0.10 = +* Added admin option to select the forum's public Display Name += 1.0.09 = +* Fixed bug preventing pre 2.9 users from using the forum, these users can now use the forum but will not have access to media embedding +* Fixed bug preventing Moderators from being able to make topics sticky/closed +* Fixed some CSS in the default theme +* Fixed bugs preventing users with PHP 4 from using the forum +* Updated forum time to work with the users Wordpress settings instead of using GMT, this change doens't effect existing posts but all new posts will have the corrected time. +* Updated the way emails are sent out, now much more info is sent in HTML format instead of plain text +* Added spacing around smilie inserts to prevent them from not showing up properly +* Added Traditional Chinese translation (Big thanks to [Jackie Yeh](http://givelove.tellustek.com)) +* Added Thai translation (Big thanks to [Sutee](http://woodloverclub.com)) +* Added Bulgarian translation (Big thanks to [DD Art](http://ddart-bg.com/)) +* Added Georgian translation (Big thanks to [Mirian Koridze](http://koridze.com/)) += 1.0.08 = +* Added some CSS Fixes to all the skins to help make the forum more compatible with various themes += 1.0.07 = +* Added admin setting to allow hiding/showing the login form +* Fixed and re-published the admin setting to allow changing the time format the forum uses +* Added French translation (Big thanks to [Gobiel](http://gobiel.info/)) +* Updated Italian translation (Big thanks to [Clay](http://clayworld.altervista.org)) += 1.0.06 = +* Fixed bug in video embed system causing the [url] & [img] BBCodes to break += 1.0.05 = +* UPDATE TO 1.0.05 NOW - Fixed Embed bug that could bring down your entire forum! +* Fixed small bug in database creation += 1.0.04 = +* Updated Swedish Translation (Big thanks to [Stefan Ljungwall](http://minablandadeinfall.se/)) +* Updated Dutch Translation (Big thanks to @Jensr) +* Fixed Embedding Videos, now supports more than YouTube (see [THIS](http://codex.wordpress.org/Embeds) for more info on supported embeds and [THIS](http://cartpauj.icomnow.com/forum/?mingleforumaction=viewtopic&t=43.0) for a How To?) +* Fixed registration link bug +* Fixed bug related to Forum Database columns not being added properly += 1.0.03 = +* As of Mingle Forum Vs 1.0.03 the skins directory has been changed to /wp-content/mingle-forum-skins/ [Tell Me More...](http://cartpauj.icomnow.com/forum/?mingleforumaction=viewtopic&t=64.0) +* Added smilies to the editor. (You'll need to re-download the themes to get the smilies) +* Updated German translation (Big thanks to [adiumac](http://cad.hieke.at/)) += 1.0.02 = +* Fixed a critical DB bug affecting international users and foriegn characters (Be sure to de-activate before updating) += 1.0.01 = +* Added YouTube video embedding (to get this to work you must use the URL from the src= in the embed code) +* Updated Russian translation (Big thanks to [Verbena](http://xozyayka.ru/)) +* Modified code to be more compatible with PHP 4 (have not tested with PHP 4 yet though) += 1.0.00 = +* Heres all the changes Ive made since taking over from WP Forum (Big thanks to Eric Hamby for his previous contributions to this plugin as well!) +* Added Feature(s): Full integration with Mingle +* Avatars work with Mingle avatars +* Profile links take you to Mingle profiles +* Forum posts get posted as user activity in Mingle +* Forum replies get posted as replies in Mingle +* Forum posts deleted also deletes corresponding Mingle post +* Added Feature: 4 configurable User Levels (Ex: Newbie, Beginner, Advanced Pro...) +* Added Feature: Private Messages +* Fixed bug: Problem with saving user options not allowing Email Subscriptions +* Fixed bug: Move Topic not working with default permalinks +* Fixed bug: BBCode now works (complete BBCode re-write) +* Fixed bug: Nested quotes in BBCode +* Fixed bug: .po, .mo files now work for translating plugin +* Fixed bug: Forum search sometimes not working +* Fixed bug: Entering code in the forum now works properly +* Fixed bug: Time now works properly (Switched forum to GMT) +* Fixed bug: Hot/Very Hot topics now show up properly +* Fixed bug: Email Notifications sending wrong link back to topic +* Fixed bug: Ampersand errors in forum links +* Fixed bug: Editing first post of topic now updates the title of the topic properly +* Fixed bug: Editing posts with single quotes in title now works (quotes are stripped out of title) +* Fixed bug: Forum showing nicename/nickname instead of username +* Fixed bug: Threads per page not working when set to a value different from posts per page +* Fixed bug: Pagination now works properly on second(+) page(s) +* Fixed bug: Creating topic returns blank page now fixed +* Fixed bug: Topic links incorrect on second(+) page(s) +* Fixed bug: Closed topic not working (Fixed database entry for this) +* Fixed bug: Sticky Topics not working +* Fixed bug: Topic status images show up properly +* Fixed bug: <, % and $ no longer kill the forum posts (Thanks to @Gene53 for spotting this) +* Fixed CSS: Smilies not showing properly +* Fixed CSS: Large images no longer break the theme +* Fixed CSS: Code block no longer breaks theme +* Fixed CSS: Tables now align properly +* Fixed CSS: Quote, Remove, Edit tools no longer break theme +* Fixed CSS: (Move Topic | Delete Topic) now shows up properly +* Fixed CSS: Long topic titles do not break theme +* Removed: All old skins +* Added Skin: Modified Forum (Black) 1.0 +* Added Skin: Modified Forum (Blue) 1.0 +* Added Skin: Modified Forum (Green) 1.0 +* Added Skin: Modified Forum (Red) 1.0 +* Added Skin: Modified Forum (Orange) 1.0 +* Added Skin: Modified Forum (Royal Blue) 1.0 (By Gene53) +* Added Translation: Spanish +* Added Translation: German +* Added Translation: Russian +* Added Translation: Arabic +* Added Translation: Simplified Chinese +* Added Translation: Portuguese +* Added Translation: Italian +* Added Translation: Japanese +* Added Translation: Swedish +* Added Translation: Dutch +* Added Translation: Finnish + +== Screenshots == +[Mingle Forum Screenshots](http://cartpauj.com/projects/mingle-forum-plugin "Mingle Forum Screenshots") \ No newline at end of file diff --git a/sitemap.php b/sitemap.php new file mode 100644 index 0000000..69c0b7b --- /dev/null +++ b/sitemap.php @@ -0,0 +1,9 @@ +setup_links(); +$mingleforum->get_forum_admin_ops(); +header('Content-type: application/xml; charset="utf-8"', true); +$mingleforum->do_sitemap(); diff --git a/skins/Default/images/bar.gif b/skins/Default/images/bar.gif new file mode 100644 index 0000000..c1020a0 Binary files /dev/null and b/skins/Default/images/bar.gif differ diff --git a/skins/Default/images/bbc/b.png b/skins/Default/images/bbc/b.png new file mode 100644 index 0000000..2b642d8 Binary files /dev/null and b/skins/Default/images/bbc/b.png differ diff --git a/skins/Default/images/bbc/code.png b/skins/Default/images/bbc/code.png new file mode 100644 index 0000000..8e0c4e3 Binary files /dev/null and b/skins/Default/images/bbc/code.png differ diff --git a/skins/Default/images/bbc/color.png b/skins/Default/images/bbc/color.png new file mode 100644 index 0000000..310aee1 Binary files /dev/null and b/skins/Default/images/bbc/color.png differ diff --git a/skins/Default/images/bbc/email.png b/skins/Default/images/bbc/email.png new file mode 100644 index 0000000..13f9c55 Binary files /dev/null and b/skins/Default/images/bbc/email.png differ diff --git a/skins/Default/images/bbc/gm.png b/skins/Default/images/bbc/gm.png new file mode 100644 index 0000000..4c04b71 Binary files /dev/null and b/skins/Default/images/bbc/gm.png differ diff --git a/skins/Default/images/bbc/i.png b/skins/Default/images/bbc/i.png new file mode 100644 index 0000000..6b41816 Binary files /dev/null and b/skins/Default/images/bbc/i.png differ diff --git a/skins/Default/images/bbc/img.png b/skins/Default/images/bbc/img.png new file mode 100644 index 0000000..5755be4 Binary files /dev/null and b/skins/Default/images/bbc/img.png differ diff --git a/skins/Default/images/bbc/li.png b/skins/Default/images/bbc/li.png new file mode 100644 index 0000000..3d99449 Binary files /dev/null and b/skins/Default/images/bbc/li.png differ diff --git a/skins/Default/images/bbc/list.png b/skins/Default/images/bbc/list.png new file mode 100644 index 0000000..3dda1b8 Binary files /dev/null and b/skins/Default/images/bbc/list.png differ diff --git a/skins/Default/images/bbc/quote.png b/skins/Default/images/bbc/quote.png new file mode 100644 index 0000000..3d8ed5f Binary files /dev/null and b/skins/Default/images/bbc/quote.png differ diff --git a/skins/Default/images/bbc/s.png b/skins/Default/images/bbc/s.png new file mode 100644 index 0000000..ec5d6f0 Binary files /dev/null and b/skins/Default/images/bbc/s.png differ diff --git a/skins/Default/images/bbc/spoil.png b/skins/Default/images/bbc/spoil.png new file mode 100644 index 0000000..7ed636d Binary files /dev/null and b/skins/Default/images/bbc/spoil.png differ diff --git a/skins/Default/images/bbc/u.png b/skins/Default/images/bbc/u.png new file mode 100644 index 0000000..fcf1fa7 Binary files /dev/null and b/skins/Default/images/bbc/u.png differ diff --git a/skins/Default/images/bbc/url.png b/skins/Default/images/bbc/url.png new file mode 100644 index 0000000..10dfaba Binary files /dev/null and b/skins/Default/images/bbc/url.png differ diff --git a/skins/Default/images/bbc/yt.png b/skins/Default/images/bbc/yt.png new file mode 100644 index 0000000..592dcc6 Binary files /dev/null and b/skins/Default/images/bbc/yt.png differ diff --git a/skins/Default/images/buttons/delete.gif b/skins/Default/images/buttons/delete.gif new file mode 100644 index 0000000..0f5c892 Binary files /dev/null and b/skins/Default/images/buttons/delete.gif differ diff --git a/skins/Default/images/buttons/modify.gif b/skins/Default/images/buttons/modify.gif new file mode 100644 index 0000000..b4b3156 Binary files /dev/null and b/skins/Default/images/buttons/modify.gif differ diff --git a/skins/Default/images/buttons/quote.gif b/skins/Default/images/buttons/quote.gif new file mode 100644 index 0000000..91a7c69 Binary files /dev/null and b/skins/Default/images/buttons/quote.gif differ diff --git a/skins/Default/images/catbg.jpg b/skins/Default/images/catbg.jpg new file mode 100644 index 0000000..cd3139c Binary files /dev/null and b/skins/Default/images/catbg.jpg differ diff --git a/skins/Default/images/icons/info.gif b/skins/Default/images/icons/info.gif new file mode 100644 index 0000000..bfac008 Binary files /dev/null and b/skins/Default/images/icons/info.gif differ diff --git a/skins/Default/images/maintab_back.gif b/skins/Default/images/maintab_back.gif new file mode 100644 index 0000000..d51bba8 Binary files /dev/null and b/skins/Default/images/maintab_back.gif differ diff --git a/skins/Default/images/maintab_first.gif b/skins/Default/images/maintab_first.gif new file mode 100644 index 0000000..cdc98e2 Binary files /dev/null and b/skins/Default/images/maintab_first.gif differ diff --git a/skins/Default/images/maintab_last.gif b/skins/Default/images/maintab_last.gif new file mode 100644 index 0000000..670bf09 Binary files /dev/null and b/skins/Default/images/maintab_last.gif differ diff --git a/skins/Default/images/menubg.gif b/skins/Default/images/menubg.gif new file mode 100644 index 0000000..887aafe Binary files /dev/null and b/skins/Default/images/menubg.gif differ diff --git a/skins/Default/images/mirrortab_back.gif b/skins/Default/images/mirrortab_back.gif new file mode 100644 index 0000000..b3d6756 Binary files /dev/null and b/skins/Default/images/mirrortab_back.gif differ diff --git a/skins/Default/images/mirrortab_first.gif b/skins/Default/images/mirrortab_first.gif new file mode 100644 index 0000000..1c225ff Binary files /dev/null and b/skins/Default/images/mirrortab_first.gif differ diff --git a/skins/Default/images/mirrortab_last.gif b/skins/Default/images/mirrortab_last.gif new file mode 100644 index 0000000..ee896a9 Binary files /dev/null and b/skins/Default/images/mirrortab_last.gif differ diff --git a/skins/Default/images/new.gif b/skins/Default/images/new.gif new file mode 100644 index 0000000..e77d0df Binary files /dev/null and b/skins/Default/images/new.gif differ diff --git a/skins/Default/images/new_bar.gif b/skins/Default/images/new_bar.gif new file mode 100644 index 0000000..11a2a72 Binary files /dev/null and b/skins/Default/images/new_bar.gif differ diff --git a/skins/Default/images/new_none.gif b/skins/Default/images/new_none.gif new file mode 100644 index 0000000..e092f65 Binary files /dev/null and b/skins/Default/images/new_none.gif differ diff --git a/skins/Default/images/new_some.gif b/skins/Default/images/new_some.gif new file mode 100644 index 0000000..d27e4f3 Binary files /dev/null and b/skins/Default/images/new_some.gif differ diff --git a/skins/Default/images/off.gif b/skins/Default/images/off.gif new file mode 100644 index 0000000..237c92b Binary files /dev/null and b/skins/Default/images/off.gif differ diff --git a/skins/Default/images/on.gif b/skins/Default/images/on.gif new file mode 100644 index 0000000..51fb1dc Binary files /dev/null and b/skins/Default/images/on.gif differ diff --git a/skins/Default/images/post/angry.gif b/skins/Default/images/post/angry.gif new file mode 100644 index 0000000..a654fc0 Binary files /dev/null and b/skins/Default/images/post/angry.gif differ diff --git a/skins/Default/images/post/cheesy.gif b/skins/Default/images/post/cheesy.gif new file mode 100644 index 0000000..1c7893f Binary files /dev/null and b/skins/Default/images/post/cheesy.gif differ diff --git a/skins/Default/images/post/exclamation.gif b/skins/Default/images/post/exclamation.gif new file mode 100644 index 0000000..e77cfed Binary files /dev/null and b/skins/Default/images/post/exclamation.gif differ diff --git a/skins/Default/images/post/grin.gif b/skins/Default/images/post/grin.gif new file mode 100644 index 0000000..91a16c4 Binary files /dev/null and b/skins/Default/images/post/grin.gif differ diff --git a/skins/Default/images/post/lamp.gif b/skins/Default/images/post/lamp.gif new file mode 100644 index 0000000..d894edd Binary files /dev/null and b/skins/Default/images/post/lamp.gif differ diff --git a/skins/Default/images/post/last_post.gif b/skins/Default/images/post/last_post.gif new file mode 100644 index 0000000..c2d3526 Binary files /dev/null and b/skins/Default/images/post/last_post.gif differ diff --git a/skins/Default/images/post/moved.gif b/skins/Default/images/post/moved.gif new file mode 100644 index 0000000..aad605b Binary files /dev/null and b/skins/Default/images/post/moved.gif differ diff --git a/skins/Default/images/post/question.gif b/skins/Default/images/post/question.gif new file mode 100644 index 0000000..75b69d5 Binary files /dev/null and b/skins/Default/images/post/question.gif differ diff --git a/skins/Default/images/post/recycled.gif b/skins/Default/images/post/recycled.gif new file mode 100644 index 0000000..91e5c67 Binary files /dev/null and b/skins/Default/images/post/recycled.gif differ diff --git a/skins/Default/images/post/sad.gif b/skins/Default/images/post/sad.gif new file mode 100644 index 0000000..bed07ca Binary files /dev/null and b/skins/Default/images/post/sad.gif differ diff --git a/skins/Default/images/post/smiley.gif b/skins/Default/images/post/smiley.gif new file mode 100644 index 0000000..0b0ea19 Binary files /dev/null and b/skins/Default/images/post/smiley.gif differ diff --git a/skins/Default/images/post/thumbdown.gif b/skins/Default/images/post/thumbdown.gif new file mode 100644 index 0000000..ab7e040 Binary files /dev/null and b/skins/Default/images/post/thumbdown.gif differ diff --git a/skins/Default/images/post/thumbup.gif b/skins/Default/images/post/thumbup.gif new file mode 100644 index 0000000..62e0d02 Binary files /dev/null and b/skins/Default/images/post/thumbup.gif differ diff --git a/skins/Default/images/post/wink.gif b/skins/Default/images/post/wink.gif new file mode 100644 index 0000000..c7b79ff Binary files /dev/null and b/skins/Default/images/post/wink.gif differ diff --git a/skins/Default/images/post/wireless.gif b/skins/Default/images/post/wireless.gif new file mode 100644 index 0000000..9b66c37 Binary files /dev/null and b/skins/Default/images/post/wireless.gif differ diff --git a/skins/Default/images/post/xx.gif b/skins/Default/images/post/xx.gif new file mode 100644 index 0000000..3b4ac3f Binary files /dev/null and b/skins/Default/images/post/xx.gif differ diff --git a/skins/Default/images/titlebg.jpg b/skins/Default/images/titlebg.jpg new file mode 100644 index 0000000..a233891 Binary files /dev/null and b/skins/Default/images/titlebg.jpg differ diff --git a/skins/Default/images/topic/closed.gif b/skins/Default/images/topic/closed.gif new file mode 100644 index 0000000..37b8a38 Binary files /dev/null and b/skins/Default/images/topic/closed.gif differ diff --git a/skins/Default/images/topic/hot_post.gif b/skins/Default/images/topic/hot_post.gif new file mode 100644 index 0000000..cd9f3b0 Binary files /dev/null and b/skins/Default/images/topic/hot_post.gif differ diff --git a/skins/Default/images/topic/my_hot_post.gif b/skins/Default/images/topic/my_hot_post.gif new file mode 100644 index 0000000..b42f159 Binary files /dev/null and b/skins/Default/images/topic/my_hot_post.gif differ diff --git a/skins/Default/images/topic/normal_post.gif b/skins/Default/images/topic/normal_post.gif new file mode 100644 index 0000000..edc458b Binary files /dev/null and b/skins/Default/images/topic/normal_post.gif differ diff --git a/skins/Default/images/topic/normal_post_sticky.gif b/skins/Default/images/topic/normal_post_sticky.gif new file mode 100644 index 0000000..f4f9f92 Binary files /dev/null and b/skins/Default/images/topic/normal_post_sticky.gif differ diff --git a/skins/Default/images/topic/veryhot_post.gif b/skins/Default/images/topic/veryhot_post.gif new file mode 100644 index 0000000..5ab0f99 Binary files /dev/null and b/skins/Default/images/topic/veryhot_post.gif differ diff --git a/skins/Default/images/upshrink.gif b/skins/Default/images/upshrink.gif new file mode 100644 index 0000000..45bae74 Binary files /dev/null and b/skins/Default/images/upshrink.gif differ diff --git a/skins/Default/images/upshrink2.gif b/skins/Default/images/upshrink2.gif new file mode 100644 index 0000000..dcc02d2 Binary files /dev/null and b/skins/Default/images/upshrink2.gif differ diff --git a/skins/Default/screenshot.jpg b/skins/Default/screenshot.jpg new file mode 100644 index 0000000..52979bd Binary files /dev/null and b/skins/Default/screenshot.jpg differ diff --git a/skins/Default/style.css b/skins/Default/style.css new file mode 100644 index 0000000..c558bfc --- /dev/null +++ b/skins/Default/style.css @@ -0,0 +1,332 @@ +/* + Skin name: Default + Description: A sleek Royal Blue theme + Author: Gene53 + Author url: http://cartpauj.com + Mingle Forum url: http://cartpauj.com/projects/mingle-forum-plugin + Version: 1.3 +*/ +#wpf-wrapper{ + line-height: normal; + color: #000; + /*background-color: white; ENABLE THIS IF YOU'RE HAVING TROUBLE SEEING MENU FONTS*/ +} +#wpf-wrapper th h4{ + font-weight: bold; + color: #FFF; +} + +#wpf-wrapper table, #wpf-wrapper div, #wpf-wrapper h2, #wpf-wrapper h3, #wpf-wrapper h4, #wpf-wrapper form{ + margin: 0; + padding: 0; +} +#wpf-wrapper small{ + color: #333; +} + +.wpf-table a, .wpf-post-table a, #wpf-wrapper p a, #wpf-wrapper span a, #wpf-wrapper a{ + color: #084d8f; + text-decoration: none; +} + +#wp-mainmenu a{ + color: #333; + font-weight: bold; + text-decoration: underline; +} + +.wpf-table a:hover, .wpf-post-table a:hover, #wpf-wrapper a:hover { + text-decoration: underline; +} + +#wpf-wrapper th a { + color: #fff; +} + +#wpf-wrapper th { + color: #fff; +} +#wpf-wrapper th.wpf-bright { + color: #000; +} +table.search td{ + border: none; +} +table.search{ + background: #ecedf3; +} + +.topic_text p img { /*Edit This Value To Fit Your Theme*/ + max-width: 475px; +} + +img.avatar { + float: none; + margin: 0px; +} + +ul#wpf-menu, ul.wpf-postmeta { + margin: 0; + padding: 0; + padding-top: 5px; + padding-bottom: 5px; +} +ul#wpf-menu li, .wpf-postmeta li{ + list-style: none; + padding-right: 10px; + display: inline; +} +.wpf-table{ + border-collapse: collapse; + padding: 5px; + border: 1px solid #696969; + background: #f6f6f6; + font-size: 95%; /*If your fonts are too small try increasing this number*/ +} +.wpf-post-table{ + border-collapse: collapse; + padding: 15px; + border-left: 1px solid #adadad; + border-right: 1px solid #adadad; + border-bottom: 1px solid #adadad; + background: #f6f6f6; +} +.wpf-table th, .wpf-post-table th{ + text-align:left; + background: url('images/catbg.jpg') !important; + border: 1px solid #adadad; + padding: 5px; + color: #fff; + /*white-space: nowrap;*/ + overflow: auto; +} +.wpf-post-table td{ + padding: 5px; +} + +.wpf-table td{ + border: 1px solid #adadad; + padding-left: 5px; + padding-right: 5px; + padding: 5px; +} +.wpf-table textarea { + width: 98%; +} +#wpf-wrapper .wpf{ + padding: 1px; + border: 1px solid #696969; +} +.wpf-alt{ + background: #ecedf3; +} +#wpf-wrapper .sticky{ + background:#e0e1e8; +} +#wpf-wrapper .sticky a{ + font-weight: bold; +} +td.wpf-meta{ + border-bottom: 1px solid #adadad; + padding: 0; + margin: 0; +} +td.wpf-meta a{ + font-weight: bold; +} +.wpf-small{ + margin-bottom: 10px; +} + +.wpf-table h2{ + margin: 0; + padding: 0; + margin-top: 3px; + margin-bottom: 3px; + color: #fff; +} + +th.wpf-bright{ + background: url('images/titlebg.jpg') !important; + color: #000; + border-top: 1px solid #375576; +} +th.wpf-bright h3{ + margin: 0; + padding: 0; + margin-top: 3px; + margin-bottom: 3px; +} +.wpf-avatar{ + padding: 5px; +} + +#wpf-wrapper a img, #wpf-wrapper img { + border: none; + padding: 0; + margin: 0; + background: transparent; +} +.updated{ + background: #fffbcc; + border: 1px solid #e6db55; + padding: 5px; + margin-bottom: 1em; +} + +#wpf-wrapper blockquote{ + background: #d7daec; + border: 1px solid #6081a0; + padding-left: 5px; + margin: 0; +} + + +/* definitions for the main tab, active means the tab reflects which page is displayed */ +.maintab_first, .maintab_back, .maintab_last, .maintab_active_first, .maintab_active_back, .maintab_active_last +{ + color: white; + _text-transform: uppercase; + vertical-align: top; +} +.maintab_back, .maintab_active_back +{ + color: white; + text-decoration: none; + vertical-align: top; + padding: 2px 6px 6px 6px; + font-family: tahoma, sans-serif; +} +.maintab_first +{ + background: url(images/maintab_first.gif) left bottom no-repeat !important; + width: 5px; +} +.maintab_back +{ + background: url(images/maintab_back.gif) left bottom repeat-x !important; +} +.maintab_last +{ + background: url(images/maintab_last.gif) left bottom no-repeat !important; + width: 8px; +} + +.maintab_active_first +{ + background: url(images/maintab_active_first.gif) left bottom no-repeat !important; + width: 6px; +} +.maintab_active_back +{ + background: url(images/maintab_active_back.gif) left bottom repeat-x !important; +} +.maintab_active_last +{ + background: url(images/maintab_active_last.gif) left bottom no-repeat !important; + width: 8px; +} + +/* how links behave in main tab. */ +#wpf-wrapper .maintab_back a:link , #wpf-wrapper .maintab_back a:visited, #wpf-wrapper .maintab_active_back a:link , #wpf-wrapper .maintab_active_back a:visited +{ + color: white; + text-decoration: none; +} + +.maintab_back a:hover, .maintab_active_back a:hover +{ + color: #e0e0ff; + text-decoration: none; + +} + +/* definitions for the mirror tab */ +#wpf-wrapper .mirrortab_first, #wpf-wrapper .mirrortab_back, #wpf-wrapper .mirrortab_last, #wpf-wrapper .mirrortab_active_first, #wpf-wrapper .mirrortab_active_back, #wpf-wrapper .mirrortab_active_last +{ + color: white; + vertical-align: top; +} +#wpf-wrapper .mirrortab_back, #wpf-wrapper .mirrortab_active_back +{ + color: white; + text-decoration: none; + vertical-align: bottom; + padding: 6px 6px 2px 6px; + font-family: tahoma, sans-serif; +} + +.mirrortab_first +{ + background: url(images/mirrortab_first.gif) no-repeat !important; + width: 5px; +} +.mirrortab_back +{ + background: url(images/mirrortab_back.gif) repeat-x !important; +} +.mirrortab_last +{ + background: url(images/mirrortab_last.gif) no-repeat !important; + width: 6px; +} +/* how links behave in mirror tab. */ +#wpf-wrapper .mirrortab_back a:link ,#wpf-wrapper .mirrortab_back a:visited,#wpf-wrapper .mirrortab_active_back a:link , #wpf-wrapper .mirrortab_active_back a:visited +{ + color: white; + text-decoration: none; +} + +.mirrortab_back a:hover, .mirrortab_active_back a:hover +{ + color: #e0e0ff; + text-decoration: none; +} + +pre.code{ + width: 90%; + background: #eee; + border: solid 1px #ccc; + padding: 5px; + overflow: auto; + white-space: pre-wrap; + font-size: 95%; /*If font is too small try increasing this*/ +} + +.trail{ + margin-top: 20px; +} + +#wpf-info{ + text-align:center; + padding:5px; + border:1px solid #adadad; + margin-top:15px; + background: #f6f6f6; +} +#wpf-wrapper{ + font-size: 95%; /*If fonts are too small try increasing this*/ + +} +#wpf-wrapper td, #wpf-wrapper th{ + vertical-align: top; +} +#wpf-wrapper th{ + vertical-align: middle; +} + +/*Attempt to make the forum look better with more themes*/ +.forummenu td, .topicmenu td { + padding:1px; + padding-left:3px; + margin:0; + height:25px; + vertical-align:middle !important; +} +.maintab_first, .mirrortab_first { + font-size:5px !important; +} +.pop_menus td{ + padding:0 !important; + margin:0 !important; +} diff --git a/wpf-edit-profile.php b/wpf-edit-profile.php new file mode 100644 index 0000000..c1cd099 --- /dev/null +++ b/wpf-edit-profile.php @@ -0,0 +1,65 @@ + $_POST['allow_profile'], + "signature" => $this->sig_input_filter(stripslashes($_POST['message']))); + update_user_meta($user_ID, "wpf_useroptions", $ops); +} +$user_id = $_GET['user_id']; +if(!is_numeric($user_id)) + wp_die(__("No such user", "mingleforum")); +if($user_ID == $user_id or $user_level > 8){ + $this->header(); + $options = get_user_meta($user_ID, "wpf_useroptions", true); + $allow_profile_v = ($options['allow_profile'] == true) ? "checked" : ""; + $topics = $this->get_subscribed_threads(); + $forums = $this->get_subscribed_forums(); + $parser = new cartpaujBBCodeParser(); + if(is_array($topics) && !empty($topics)) + { + $tops = ""; + } + else + $tops = "
      • ".__("You have no Topic subscriptions at this time", "mingleforum")."
      "; + if(is_array($forums) && !empty($forums)) + { + $fors = ""; + } + else + $fors = "
      • ".__("You have no Forum subscriptions at this time", "mingleforum")."
      "; + $out = "
      + + + + + + + + + + + + + + + +
      ".__("Edit forum options", "mingleforum")."
      +

      + ".__("Allow others to view my profile?", "mingleforum")."
      +

      "; + if($this->options['forum_show_bio']) + $out .= __('Edit Signature:', 'mingleforum').$parser->get_editor($options['signature']); + $out .= "
      ".__("You have email notifications for these Forums:", "mingleforum")."

      $fors

      ".__("You have email notifications for these Topics:", "mingleforum")."

      $tops

      +
      "; + $this->o .= $out; +} +else + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); diff --git a/wpf-insert.php b/wpf-insert.php new file mode 100644 index 0000000..120c59f --- /dev/null +++ b/wpf-insert.php @@ -0,0 +1,303 @@ +setup_linksdk($add_topic_plink); +$options = get_option("mingleforum_options"); + +//Checking if current categories have been disabled to admin posting only +$the_forum_id = false; +if(isset($_POST['add_topic_forumid']) && !empty($_POST['add_topic_forumid'])) + $the_forum_id = $mingleforum->check_parms($_POST['add_topic_forumid']); +if(isset($_POST['add_post_forumid']) && !empty($_POST['add_post_forumid'])) { + $the_thread_id = $mingleforum->check_parms($_POST['add_post_forumid']); + $the_forum_id = $wpdb->get_var($wpdb->prepare("SELECT `parent_id` FROM {$mingleforum->t_threads} WHERE `id` = %d", $the_thread_id)); +} +if(isset($_POST['thread_id']) && !empty($_POST['thread_id']) && isset($_POST['edit_post_submit'])) { + $the_thread_id = $mingleforum->check_parms($_POST['thread_id']); + $the_forum_id = $wpdb->get_var($wpdb->prepare("SELECT `parent_id` FROM {$mingleforum->t_threads} WHERE `id` = %d", $the_thread_id)); +} +if(is_numeric($the_forum_id)) +{ + $the_cat_id = $wpdb->get_var("SELECT `parent_id` FROM {$mingleforum->t_forums} WHERE `id` = {$the_forum_id}"); + + if(in_array($the_cat_id, $options['forum_disabled_cats']) && !is_super_admin($user_ID) && !$mingleforum->is_moderator($user_ID, $the_forum_id) && !$mingleforum->options['allow_user_replies_locked_cats']) + wp_die(__("Oops only Administrators can post in this Forum!", "mingleforum")); +} +//End Check + +//Spam time interval check +if(!is_super_admin() && !$mingleforum->is_moderator($user_ID, $the_forum_id)) +{ + $last_post_time = get_user_meta((int)$user_ID, 'mingle_forum_last_post_time_'.ip_to_string(), true); + if((time() - (int)$last_post_time) < stripslashes($mingleforum->options['forum_posting_time_limit'])) + wp_die(__('To help prevent spam, we require that you wait', 'mingleforum').' '.ceil(((int)(stripslashes($mingleforum->options['forum_posting_time_limit']))/60)).' '.__('minutes before posting again. Please use your browsers back button to return.', 'mingleforum')); + else + update_user_meta((int)$user_ID, 'mingle_forum_last_post_time_'.ip_to_string(), time()); +} + +function ip_to_string() +{ + return preg_replace("/[^0-9]/", "_", $_SERVER["REMOTE_ADDR"]); +} +//End Spam time interval check + + function mf_u_key() + { + $pref = ""; + for ($i = 0; $i < 5; $i++) + { + $d = rand(0,1); + $pref .= $d ? chr(rand(97, 122)) : chr(rand(48, 57)); + } + return $pref."-"; + } + + function MFAttachImage($temp, $name) + { + //GET USERS UPLOAD PATH + $upload_dir = wp_upload_dir(); + $path = $upload_dir['path']."/"; + $url = $upload_dir['url']."/"; + $u = mf_u_key(); + $name = sanitize_file_name($name); + if(!empty($name)) + move_uploaded_file($temp, $path.$u.$name); + return "\n[img]".$url.$u.$name."[/img]"; + } + + function MFGetExt($str) + { + //GETS THE FILE EXTENSION BELONGING TO THE UPLOADED FILE + $i = strrpos($str,"."); + if (!$i) { return ""; } + $l = strlen($str) - $i; + $ext = substr($str,$i+1,$l); + return $ext; + } + + function mf_check_uploaded_images() + { + $valid = array('im1' => true, 'im2' => true, 'im3' => true); + if(!empty($_FILES)) { + if($_FILES["mfimage1"]["error"] > 0 && !empty($_FILES["mfimage1"]["name"])) + $valid['im1'] = false; + if($_FILES["mfimage2"]["error"] > 0 && !empty($_FILES["mfimage2"]["name"])) + $valid['im2'] = false; + if($_FILES["mfimage3"]["error"] > 0 && !empty($_FILES["mfimage3"]["name"])) + $valid['im3'] = false; + } + if(!empty($_FILES["mfimage1"]["name"])) + { + $ext = strtolower(MFGetExt(stripslashes($_FILES["mfimage1"]["name"]))); + if($ext != "jpg" && $ext != "jpeg" && $ext != "bmp" && $ext != "png" && $ext != "gif") + $valid['im1'] = false; + } + else + $valid['im1'] = false; + if(!empty($_FILES["mfimage2"]["name"])) + { + $ext = strtolower(MFGetExt(stripslashes($_FILES["mfimage2"]["name"]))); + if($ext != "jpg" && $ext != "jpeg" && $ext != "bmp" && $ext != "png" && $ext != "gif") + $valid['im2'] = false; + } + else + $valid['im2'] = false; + if(!empty($_FILES["mfimage3"]["name"])) + { + $ext = strtolower(MFGetExt(stripslashes($_FILES["mfimage3"]["name"]))); + if($ext != "jpg" && $ext != "jpeg" && $ext != "bmp" && $ext != "png" && $ext != "gif") + $valid['im2'] = false; + } + else + $valid['im3'] = false; + return $valid; + } + + //--weaver-- check if guest filled in form + if(!isset($_POST['edit_post_submit'])) { + $errormsg = apply_filters('wpwf_check_guestinfo',""); + if($errormsg != "") { + $error = true; + wp_die($errormsg); //plugin failed + } + } + //--weaver-- end guest form check + + if($options['forum_captcha'] == true && !$user_ID){ + include_once(WPFPATH."captcha/shared.php"); + $wpf_code = wpf_str_decrypt($_POST['wpf_security_check']); + if(($wpf_code == $_POST['wpf_security_code']) && (!empty($wpf_code))) { + //It passed + } + else { + $error = true; + $msg = __("Security code does not match", "mingleforum"); + wp_die($msg); + } + } + + $cur_user_ID = apply_filters('wpwf_change_userid', $user_ID); // --weaver-- use real id or generated guest ID + + //ADDING A NEW TOPIC? + if(isset($_POST['add_topic_submit'])) { + $myReplaceSub = array("\\"); + $subject = str_replace($myReplaceSub, "", $mingleforum->input_filter($_POST['add_topic_subject'])); + $content = $mingleforum->input_filter($_POST['message']); + $forum_id = $mingleforum->check_parms($_POST['add_topic_forumid']); + $group_id = $mingleforum->forum_get_group_id($forum_id); + $msg = ''; + + if($subject == "") { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a subject", "mingleforum")."

      "); + $error = true; + } + else if($content == "") { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a message", "mingleforum")."

      "); + $error = true; + } + else if(!$mingleforum->have_access($forum_id) || !$mingleforum->have_access($forum_id, 'post') || !$mingleforum->have_access($group_id) || !$mingleforum->have_access($group_id, 'post')) { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $error = true; + } + else{ + $date = $mingleforum->wpf_current_time_fixed('mysql', 0); + + $sql_thread = "INSERT INTO {$mingleforum->t_threads} + (last_post, subject, parent_id, `date`, status, starter) + VALUES + (%s, %s, %d, %s, 'open', %d)"; + $wpdb->query($wpdb->prepare($sql_thread, $date, $subject, $forum_id, $date, $cur_user_ID)); + + $id = $wpdb->insert_id; + + //MAYBE ATTACH IMAGES + $images = mf_check_uploaded_images(); + if($images['im1'] || $images['im2'] || $images['im3']) + { + if($images['im1']) + $content .= MFAttachImage($_FILES["mfimage1"]["tmp_name"], stripslashes($_FILES["mfimage1"]["name"])); + if($images['im2']) + $content .= MFAttachImage($_FILES["mfimage2"]["tmp_name"], stripslashes($_FILES["mfimage2"]["name"])); + if($images['im3']) + $content .= MFAttachImage($_FILES["mfimage3"]["tmp_name"], stripslashes($_FILES["mfimage3"]["name"])); + } + + $sql_post = "INSERT INTO {$mingleforum->t_posts} + (text, parent_id, `date`, author_id, subject) + VALUES + (%s, %d, %s, %d, %s)"; + $wpdb->query($wpdb->prepare($sql_post, $content, $id, $date, $cur_user_ID, $subject)); + $new_post_id = $wpdb->insert_id; + } + if(!$error){ + $mingleforum->notify_forum_subscribers($id, $subject, $content, $date, $forum_id); + $mingleforum->notify_admins($id, $subject, $content, $date); + $unused = apply_filters('wpwf_add_guest_sub', $id); //--weaver-- Maybe add a subscription + header("Location: ".html_entity_decode($mingleforum->get_threadlink($id)."#postid-".$new_post_id)); exit; + } + else + wp_die($msg); + } + + //ADDING A POST REPLY? + if(isset($_POST['add_post_submit'])){ + $myReplaceSub = array("\\"); + $subject = str_replace($myReplaceSub, "", $mingleforum->input_filter($_POST['add_post_subject'])); + $content = $mingleforum->input_filter($_POST['message']); + $thread = $mingleforum->check_parms($_POST['add_post_forumid']); + $forum_id = $mingleforum->forum_get_forum_from_post($thread); + $group_id = $mingleforum->forum_get_group_from_post($thread); + $msg = ''; + + if($subject == ""){ + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a subject", "mingleforum")."

      "); + $error = true; + } + else if($content == ""){ + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a message", "mingleforum")."

      "); + $error = true; + } + else if(!$mingleforum->have_access($forum_id) || !$mingleforum->have_access($forum_id, 'post') || !$mingleforum->have_access($group_id) || !$mingleforum->have_access($group_id, 'post')) { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $error = true; + } + else{ + $date = $mingleforum->wpf_current_time_fixed('mysql', 0); + + //MAYBE ATTACH IMAGES + $images = mf_check_uploaded_images(); + if($images['im1'] || $images['im2'] || $images['im3']) + { + if($images['im1']) + $content .= MFAttachImage($_FILES["mfimage1"]["tmp_name"], stripslashes($_FILES["mfimage1"]["name"])); + if($images['im2']) + $content .= MFAttachImage($_FILES["mfimage2"]["tmp_name"], stripslashes($_FILES["mfimage2"]["name"])); + if($images['im3']) + $content .= MFAttachImage($_FILES["mfimage3"]["tmp_name"], stripslashes($_FILES["mfimage3"]["name"])); + } + + $sql_post = "INSERT INTO {$mingleforum->t_posts} + (text, parent_id, `date`, author_id, subject) + VALUES(%s, %d, %s, %d, %s)"; + $wpdb->query($wpdb->prepare($sql_post, $content, $thread, $date, $cur_user_ID, $subject)); + $new_id = $wpdb->insert_id; + $wpdb->query($wpdb->prepare("UPDATE {$mingleforum->t_threads} SET last_post = %s WHERE id = %d", $date, $thread)); + } + + if(!$error){ + $mingleforum->notify_thread_subscribers($thread, $subject, $content, $date); + $mingleforum->notify_admins($thread, $subject, $content, $date); + $unused = apply_filters('wpwf_add_guest_sub', $thread); //--weaver-- Maybe add a subscription + header("Location: ".html_entity_decode($mingleforum->get_paged_threadlink($thread)."#postid-".$new_id)); exit; + } + else + wp_die($msg); + } + + //EDITING A POST? + if(isset($_POST['edit_post_submit'])) { + $myReplaceSub = array("\\"); + $subject = str_replace($myReplaceSub, "", $mingleforum->input_filter($_POST['edit_post_subject'])); + $content = $mingleforum->input_filter($_POST['message']); + $thread = $mingleforum->check_parms($_POST['thread_id']); + $edit_post_id = $_POST['edit_post_id']; + $msg = ''; + + if($subject == "") { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a subject", "mingleforum")."

      "); + $error = true; + } + if($content == "") { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You must enter a message", "mingleforum")."

      "); + $error = true; + } + //Major security check here, prevents hackers from editing the entire forums posts + if(!is_super_admin($user_ID) && $user_ID != $mingleforum->get_post_owner($edit_post_id) && !$mingleforum->is_moderator($user_ID, $the_forum_id)) { + $msg .= "

      ".__("An error occured", "mingleforum")."

      "; + $msg .= ("

      ".__("You do not have permission to edit this post!", "mingleforum")."

      "); + $error = true; + } + + if($error) + wp_die($msg); + + $sql = ("UPDATE {$mingleforum->t_posts} SET text = %s, subject = %s WHERE id = %d"); + $wpdb->query($wpdb->prepare($sql, $content, $subject, $edit_post_id)); + + $ret = $wpdb->get_results($wpdb->prepare("select id from {$mingleforum->t_posts} where parent_id = %d order by date asc limit 1", $thread)); + if($ret[0]->id == $edit_post_id) { + $sql = ("UPDATE {$mingleforum->t_threads} set subject = %s where id = %d"); + $wpdb->query($wpdb->prepare($sql, $subject, $thread)); + } + + header("Location: ".html_entity_decode($mingleforum->get_paged_threadlink($thread)."#postid-".$edit_post_id)); exit; + } diff --git a/wpf-main.php b/wpf-main.php new file mode 100644 index 0000000..aafafef --- /dev/null +++ b/wpf-main.php @@ -0,0 +1,50 @@ + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ + +//Textdomain Hook +$plugin_dir = basename(dirname(__FILE__)); +load_plugin_textdomain('mingleforum', false, $plugin_dir.'/i18n/'); + +//Load class file and create instance +include_once("wpf.class.php"); +$mingleforum = new mingleforum(); + +//Activation Hook +register_activation_hook(__FILE__ ,array(&$mingleforum,'wp_forum_install')); +//Shortcode Hook +add_shortcode('mingleforum', array(&$mingleforum, "go")); +//Action Hooks +add_action('init', array(&$mingleforum, "set_cookie")); +add_action('wp', array(&$mingleforum, "before_go")); //Redirects Old URL's to SEO URL's +//Filter Hooks +add_filter("wp_title", array(&$mingleforum, "set_pagetitle")); + +//Functions +function latest_activity($num = 5){ + global $mingleforum; + return $mingleforum->latest_activity($num); +} diff --git a/wpf-post.php b/wpf-post.php new file mode 100644 index 0000000..ccdb9e7 --- /dev/null +++ b/wpf-post.php @@ -0,0 +1,101 @@ +allow_unreg()){ +if(isset($_GET['quote'])){ + $quote_id = $this->check_parms($_GET['quote']); + $text = $wpdb->get_row($wpdb->prepare("SELECT text, author_id, `date` FROM {$this->t_posts} WHERE id = %d", $quote_id)); + $user = get_userdata($text->author_id); + $display_name = $this->options['forum_display_name']; + $q = "[quote][b]".__("Quote from", "mingleforum")." ".$user->$display_name." ".__("on", "mingleforum")." ".$mingleforum->format_date($text->date)."[/b]\n".$text->text."[/quote]"; +} +if($_GET['mingleforumaction'] == "postreply"){ + $parser = new cartpaujBBCodeParser(); + $this->current_view = POSTREPLY; + $thread = $this->check_parms($_GET['thread']); + $out = $this->header(); + $out .= "
      "; + $out .= " + + + + + + + + + + + "; + $out .= apply_filters('wpwf_form_guestinfo',''); //--weaver-- + $out .= $this->get_captcha(); + if($this->options['forum_allow_image_uploads']) + { + $out .= " + + + + "; + } + $out .= " + + + + + + +
      ".__("Post Reply", "mingleforum")."
      ".__("Subject:", "mingleforum")."get_subject($thread)."'/>
      ".__("Message:", "mingleforum").""; + $out .= $parser->get_editor(stripslashes($q)); + $out .= " +
      ".__("Images:", "mingleforum")." +
      +
      +
      +
      "; + $this->o .= $out; + } + +if($_GET['mingleforumaction'] == "editpost"){ + $parser = new cartpaujBBCodeParser(); + $this->current_view = EDITPOST; + if(is_numeric($_GET['id'])) //is_numeric prevents SQL injections here + $id = $_GET['id']; + else + $id = 0; + $thread = $this->check_parms($_GET['t']); + $out = $this->header(); + $post = $wpdb->get_row($wpdb->prepare("SELECT * FROM $mingleforum->t_posts WHERE id = %d", $id)); + if(($user_ID == $post->author_id && $user_ID) || $mingleforum->is_moderator($user_ID, $mingleforum->forum_get_forum_from_post($thread))) //Make sure only admins/mods/post authors can edit posts + { + $out .= "
      "; + $out .= " + + + + + + + + + + + + + + + + + + +
      ".__("Edit Post", "mingleforum")."
      ".__("Subject:", "mingleforum")."
      ".__("Message:", "mingleforum").""; + $out .= $parser->get_editor(stripslashes($post->text)); + + $out .= "
      "; + $this->o .= $out; + } + else + wp_die("Haha, nice try!"); +} +} +else + wp_die("Thanks, but no thanks"); diff --git a/wpf-thread.php b/wpf-thread.php new file mode 100644 index 0000000..3a66441 --- /dev/null +++ b/wpf-thread.php @@ -0,0 +1,48 @@ +allow_unreg()) && $this->have_access($this->check_parms($_GET['forum'])) && $this->have_access($this->check_parms($_GET['forum']), 'post')) + { + $parser = new cartpaujBBCodeParser(); + $this->current_view = NEWTOPIC; + $out = $this->header(); + $out .= "
      "; + $out .= " + + + + + + + + + + + "; + $out .= apply_filters('wpwf_form_guestinfo',''); //--weaver-- + $out .= $this->get_captcha(); + if($this->options['forum_allow_image_uploads']) + { + $out .= " + + + + "; + } + $out .= " + + + + + + +
      ".__("Post new Topic", "mingleforum")."
      ".__("Subject:", "mingleforum")."
      ".__("Message:", "mingleforum")." + ".$parser->get_editor()." +
      ".__("Images:", "mingleforum")." +
      +
      +
      +
      "; + $this->o .= $out; + } + else + wp_die(__("Sorry. you don't have permission to post.", "mingleforum")); diff --git a/wpf.class.php b/wpf.class.php new file mode 100644 index 0000000..d4f02b5 --- /dev/null +++ b/wpf.class.php @@ -0,0 +1,2919 @@ +options = $this->get_forum_admin_ops(); + $this->get_set_ads_options(); + if($this->options['forum_use_seo_friendly_urls']) + { + add_filter("init", array(&$this, "flush_wp_rewrite_rules")); + add_filter("rewrite_rules_array", array(&$this, "set_seo_friendly_rules")); + } + add_action("admin_menu", array(&$this,"add_admin_pages")); + add_action("admin_head", array(&$this, "admin_header")); + add_action("wp_head", array(&$this, "setup_header")); + add_action("plugins_loaded", array(&$this, "wpf_load_widget")); + add_action("wp_footer", array(&$this, "wpf_footer")); + if($this->options['wp_posts_to_forum']) + { + add_action("add_meta_boxes", array(&$this, "send_wp_posts_to_forum")); + add_action("publish_post", array(&$this, "saving_posts")); + } + //Ads filter hooks + add_filter('mf_ad_above_forum', array(&$this, 'mf_ad_above_forum')); + add_filter('mf_ad_below_forum', array(&$this, 'mf_ad_below_forum')); + add_filter('mf_ad_above_branding', array(&$this, 'mf_ad_above_branding')); + add_filter('mf_ad_above_info_center', array(&$this, 'mf_ad_above_info_center')); + add_filter('mf_ad_above_quick_reply', array(&$this, 'mf_ad_above_quick_reply')); + add_filter('mf_ad_above_breadcrumbs', array(&$this, 'mf_ad_above_breadcrumbs')); + add_filter('mf_ad_below_first_post', array(&$this, 'mf_ad_below_first_post')); + $this->init(); + } + + // !Member variables + var $showing = false; + + var $page_id = ""; + var $reg_link = ""; + var $profile_link = ""; + var $logout_link = ""; + var $home_url = ""; + var $forum_link = ""; + var $group_link = ""; + var $thread_link = ""; + var $add_topic_link = ""; + + // DB tables + var $t_forums = ""; + var $t_threads = ""; + var $t_posts = ""; + var $t_usergroups = ""; + var $t_usergroup2user = ""; + var $o = ""; + + var $current_group = ""; + var $current_forum = ""; + var $current_thread = ""; + var $notify_msg = ""; + var $current_view = ""; + var $opt = array(); + var $base_url = ""; + var $skin_url = ""; + var $curr_page = ""; + var $last_visit = ""; + var $user_options = array(); + var $options = array(); + var $ads_options = array(); + + // Initialize varables + function init(){ + global $table_prefix; + + $this->page_id = $this->get_pageid(); + $this->profile_link = site_url()."/wp-admin/profile.php"; + + $this->t_forums = $table_prefix."forum_forums"; + $this->t_threads = $table_prefix."forum_threads"; + $this->t_posts = $table_prefix."forum_posts"; + $this->t_usergroups = $table_prefix."forum_usergroups";//! check this later + $this->t_usergroup2user = $table_prefix."forum_usergroup2user"; //x testing + + $this->current_forum = false; + $this->current_group = false; + $this->current_thread = false; + + $this->curr_page = 0; + + $this->user_options = array('allow_profile' => true, + 'signature' => "" + ); + // Get the options + $this->opt = get_option('mingleforum_options'); + $this->skin_url = SKINURL.$this->opt['forum_skin']; + } + + function get_set_ads_options() { + $this->ads_options = array( 'mf_ad_above_forum_on' => false, + 'mf_ad_above_forum' => '', + 'mf_ad_below_forum_on' => false, + 'mf_ad_below_forum' => '', + 'mf_ad_above_branding_on' => false, + 'mf_ad_above_branding' => '', + 'mf_ad_above_info_center_on' => false, + 'mf_ad_above_info_center' => '', + 'mf_ad_above_quick_reply_on' => false, + 'mf_ad_above_quick_reply' => '', + 'mf_ad_above_breadcrumbs_on' => false, + 'mf_ad_above_breadcrumbs' => '', + 'mf_ad_below_first_post_on' => false, + 'mf_ad_below_first_post' => '', + 'mf_ad_custom_css' => '' + ); + $initOps = get_option('mingleforum_ads_options'); + if (!empty($initOps)){ + foreach ($initOps as $key => $option) + $this->ads_options[$key] = $option; + } + update_option('mingleforum_ads_options', $this->ads_options); + } + + function get_forum_admin_ops() { + $this->options = array( 'wp_posts_to_forum' => false, + 'forum_posts_per_page' => 10, + 'forum_threads_per_page' => 20, + 'forum_require_registration' => true, + 'forum_show_login_form' => true, + 'forum_date_format' => get_option('date_format'), + 'forum_use_gravatar' => true, + 'forum_show_bio' => true, + 'forum_skin' => "Default", + 'forum_use_rss' => true, + 'forum_use_seo_friendly_urls' => false, + 'forum_allow_image_uploads' => false, + 'notify_admin_on_new_posts' => false, + 'set_sort' => "DESC", + 'forum_use_spam' => false, + 'forum_use_bbcode' => true, + 'forum_captcha' => true, + 'hot_topic' => 15, + 'veryhot_topic' => 25, + 'forum_display_name' => 'user_login', + 'level_one' => 25, + 'level_two' => 50, + 'level_three' => 100, + 'level_newb_name' => __("Newbie", "mingleforum"), + 'level_one_name' => __("Beginner", "mingleforum"), + 'level_two_name' => __("Advanced", "mingleforum"), + 'level_three_name' => __("Pro", "mingleforum"), + 'forum_db_version' => 0, + 'forum_disabled_cats' => array(), + 'allow_user_replies_locked_cats' => false, + 'forum_posting_time_limit' => 300, + 'forum_hide_branding' => false, + 'forum_last_posts' => 0 + ); + $initOps = get_option('mingleforum_options'); + //Don't overwrite current opitions but allow the flexibility to add more options + if (!empty($initOps)){ + foreach ($initOps as $key => $option) + $this->options[$key] = $option; + } + update_option('mingleforum_options', $this->options); + return $this->options; + } + + // Add admin pages + function add_admin_pages(){ + include_once("fs-admin/fs-admin.php"); + $wpfa = new mingleforumadmin(); + + add_menu_page(__("Mingle Forum - Options", "mingleforum"), "Mingle Forum", "administrator", "mingle-forum", array(&$wpfa, "options"), WPFURL."images/logo.png"); + add_submenu_page("mingle-forum", __("Mingle Forum - Options", "mingleforum"), __("Options", "mingleforum"), "administrator", 'mingle-forum', array(&$wpfa, "options")); + add_submenu_page('mingle-forum', __('Ads', 'mingleforum'), __('Ads', 'mingleforum'), "administrator", 'mfads', array(&$wpfa, "ads")); + add_submenu_page("mingle-forum", __("Skins", "mingleforum"), __("Skins", "mingleforum"), "administrator", 'mfskins', array(&$wpfa, "skins")); + add_submenu_page("mingle-forum", __("Forum Structure - Categories & Forums", "mingleforum"), __("Forum Structure", "mingleforum"), "administrator", 'mfstructure', array(&$wpfa, "structure")); + add_submenu_page("mingle-forum", __("Moderators", "mingleforum"), __("Moderators", "mingleforum"), "administrator", 'mfmods', array(&$wpfa, "moderators")); + add_submenu_page("mingle-forum", __("User Groups", "mingleforum"), __("User Groups", "mingleforum"), "administrator", 'mfgroups', array(&$wpfa, "usergroups")); + add_submenu_page("mingle-forum", __("About", "mingleforum"), __("About", "mingleforum"), "administrator", 'mfabout', array(&$wpfa, "about")); + } + + function admin_header(){ + wp_enqueue_style('mingle-forum', plugins_url('wpf_admin.css', __FILE__)); + wp_enqueue_script('mingle-forum', plugins_url('js/script.js', __FILE__), array('jquery')); + } + + function wpf_load_widget() { + wp_register_sidebar_widget("MFWidget", __("Forums Latest Activity", "mingleforum"), array(&$this, "widget")); + wp_register_widget_control("MFWidget", __("Forums Latest Activity", "mingleforum"), array(&$this, "widget_wpf_control")); + } + + function widget($args) { + global $wpdb; + $toShow = 0; + $unique = array(); + $this->setup_links(); + $this->get_forum_admin_ops(); + $widget_option = get_option("wpf_widget"); + $posts = $wpdb->get_results("SELECT * FROM $this->t_posts ORDER BY `date` DESC LIMIT 50"); + echo $args['before_widget']; + echo $args['before_title'] . $widget_option["wpf_title"] . $args['after_title']; + echo "
        "; + foreach($posts as $post) { + if(!in_array($post->parent_id, $unique) && $toShow < $widget_option["wpf_num"]) + { + //$user = get_userdata($post->author_id); + if($this->have_access($this->forum_get_group_from_post($post->parent_id)) && $this->have_access($this->forum_get_forum_from_post($post->parent_id))) + echo "
      • id)."'>".$this->output_filter($post->subject)."
        ".__("by:", "mingleforum")." ".$this->profile_link($post->author_id)."
        ".$this->format_date($post->date)."
      • "; + $unique[] = $post->parent_id; + $toShow += 1; + } + } + echo "
      "; + echo $args['after_widget']; + } + + function latest_activity($num = 5, $ul = true){ + global $wpdb; + $toShow = 0; + $unique = array(); + $posts = $wpdb->get_results("SELECT * FROM $this->t_posts ORDER BY `date` DESC LIMIT 50"); + if($ul) echo "
        "; + foreach($posts as $post){ + if(!in_array($post->parent_id, $unique) && $toShow < $num) + { + //$user = get_userdata($post->author_id); + if($this->have_access($this->forum_get_group_from_post($post->parent_id)) && $this->have_access($this->forum_get_forum_from_post($post->parent_id))) + echo "
      • id)."'>".$this->output_filter($post->subject)."
        ".__("by:", "mingleforum")." ".$this->profile_link($post->author_id)."
        ".$this->format_date($post->date)."
      • "; + $unique[] = $post->parent_id; + $toShow += 1; + } + } + if($ul)echo "
      "; + } + + function widget_wpf_control(){ + if (isset($_POST["wpf_submit"])) { + $name = strip_tags(stripslashes($_POST["wpf_title"])); + $num = strip_tags(stripslashes($_POST["wpf_num"])); + $widget_option["wpf_title"] = $name; + $widget_option["wpf_num"] = $num; + update_option("wpf_widget", $widget_option); + } + $widget_option = get_option("wpf_widget"); + echo "

      "; + echo "

      + "; + } + + function wpf_footer(){ + if(is_page($this->get_pageid())) + { + ?> + + using_permalinks()) + $delim = "?"; + else + $delim = "&"; + $perm = get_permalink($this->page_id); + $this->forum_link = $perm.$delim."mingleforumaction=viewforum&f="; + $this->group_link = $perm.$delim."mingleforumaction=vforum&g="; + $this->thread_link = $perm.$delim."mingleforumaction=viewtopic&t="; + $this->add_topic_link = $perm.$delim."mingleforumaction=addtopic&forum=$this->current_forum"; + $this->post_reply_link = $perm.$delim."mingleforumaction=postreply&thread=$this->current_thread"; + $this->base_url = $perm.$delim."mingleforumaction="; + $this->reg_link = wp_login_url()."?action=register"; + + //END MINGLE REG LINK + $this->topic_feed_url = WPFURL."feed.php?topic="; + $this->global_feed_url = WPFURL."feed.php?topic=all"; + $this->home_url = $perm; + $this->logout_link = wp_logout_url(get_permalink($this->get_pageid())); + } + + function setup_linksdk($perm){ + global $wp_rewrite; + if($wp_rewrite->using_permalinks()) + $delim = "?"; + else + $delim = "&"; + $this->forum_link = $perm.$delim."mingleforumaction=viewforum&f="; + $this->group_link = $perm.$delim."mingleforumaction=vforum&g="; + $this->thread_link = $perm.$delim."mingleforumaction=viewtopic&t="; + $this->add_topic_link = $perm.$delim."mingleforumaction=addtopic&forum=$this->current_forum"; + $this->post_reply_link = $perm.$delim."mingleforumaction=postreply&thread=$this->current_thread"; + $this->base_url = $perm.$delim."mingleforumaction="; + $this->reg_link = wp_login_url()."?action=register"; + + //END MINGLE REG LINK + $this->topic_feed_url = WPFURL."feed.php?topic="; + $this->global_feed_url = WPFURL."feed.php?topic=all"; + $this->home_url = $perm; + $this->logout_link = wp_logout_url(get_permalink($this->get_pageid())); + } + + function get_addtopic_link(){ + return $this->add_topic_link.".$this->curr_page"; + } + + function get_post_reply_link(){ + return $this->post_reply_link.".$this->curr_page"; + } + + function get_forumlink($id, $page = ''){ + if($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($id))."-group".$this->forum_get_parent($id)); + $forum = $this->get_seo_friendly_title($this->get_forumname($id)."-forum".$id).$page; + return rtrim($this->home_url, '/').'/'.$group.'/'.$forum; + } + else + if($page == '') + return $this->forum_link.$id.".$this->curr_page"; + else + return $this->forum_link.$id.$page; + } + + function get_grouplink($id){ + if($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($id)."-group".$id); + return rtrim($this->home_url, '/').'/'.$group; + } + else + return $this->group_link.$id.".$this->curr_page"; + } + + function get_threadlink($id, $page = ''){ + if($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($this->forum_get_forum_from_post($id)))."-group".$this->forum_get_parent($this->forum_get_forum_from_post($id))); + $forum = $this->get_seo_friendly_title($this->get_forumname($this->forum_get_forum_from_post($id))."-forum".$this->forum_get_forum_from_post($id)); + $thread = $this->get_seo_friendly_title($this->get_subject($id)."-thread".$id); + return rtrim($this->home_url, '/').'/'.$group.'/'.$forum.'/'.$thread.$page; + } + else + return $this->thread_link.$id.$page; + } + + function get_paged_threadlink($id, $postid = ''){ + global $wpdb; + $wpdb->query("SELECT * FROM {$this->t_posts} WHERE parent_id = {$id}"); + $num = ceil($wpdb->num_rows / $this->options['forum_posts_per_page']) - 1; + if($num < 0) + $num = 0; + if($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($this->forum_get_forum_from_post($id)))."-group".$this->forum_get_parent($this->forum_get_forum_from_post($id))); + $forum = $this->get_seo_friendly_title($this->get_forumname($this->forum_get_forum_from_post($id))."-forum".$this->forum_get_forum_from_post($id)); + $thread = $this->get_seo_friendly_title($this->get_subject($id)."-thread".$id); + return rtrim($this->home_url, '/').'/'.$group.'/'.$forum.'/'.$thread.".".$num.$postid; + } + else + return $this->thread_link.$id.".".$num.$postid; + } + + function get_pageid(){ + global $wpdb; + return $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_content LIKE '%[mingleforum]%' AND post_status = 'publish' AND post_type = 'page'"); + } + + function get_forums($id = 0){ + global $wpdb; + $forums = $wpdb->get_results("SELECT * FROM $this->t_forums WHERE parent_id = $id ORDER BY SORT ".SORT_ORDER); + return $forums; + } + + function get_threads($id = ''){ + global $wpdb; + $start = $this->curr_page*$this->opt['forum_threads_per_page']; + $end = $this->opt['forum_threads_per_page']; + $limit = "$start, $end"; + if($id){ + $threads = $wpdb->get_results("SELECT * FROM $this->t_threads WHERE parent_id = $id AND status='open' ORDER BY last_post ".SORT_ORDER." LIMIT $limit"); + return $threads; + } + else + return $wpdb->get_results("SELECT * FROM $this->t_threads ORDER BY `date` ".SORT_ORDER); + } + + function get_sticky_threads($id){ + global $wpdb; + if($id){ + $threads = $wpdb->get_results("SELECT * FROM $this->t_threads WHERE parent_id = $id AND status='sticky' ORDER BY last_post ".SORT_ORDER); + return $threads; + } + } + + function get_posts($thread_id){ + global $wpdb; + $start = $this->curr_page*$this->opt['forum_posts_per_page']; + $end = $this->opt['forum_posts_per_page']; + $limit = "$start, $end"; + if($thread_id){ + $posts = $wpdb->get_results("SELECT * FROM $this->t_posts WHERE parent_id = $thread_id ORDER BY `date` ASC LIMIT $limit"); + return $posts; + }else{ + return false; + } + } + + function get_groupname($id){ + global $wpdb; + return $this->output_filter($wpdb->get_var("SELECT name FROM $this->t_forums WHERE id = $id")); + } + + function get_forumname($id){ + global $wpdb; + return $this->output_filter($wpdb->get_var("SELECT name FROM $this->t_forums WHERE id = $id")); + } + + function get_threadname($id){ + global $wpdb; + return $this->output_filter($wpdb->get_var("SELECT subject FROM $this->t_threads WHERE id = $id")); + } + + function get_postname($id){ + global $wpdb; + return $this->output_filter($wpdb->get_var("SELECT subject FROM $this->t_posts WHERE id = $id")); + } + + function get_group_description($id){ + global $wpdb; + return $wpdb->get_var("SELECT description FROM $this->t_forums WHERE id = $id"); + } + + function get_forum_description($id){ + global $wpdb; + return $wpdb->get_var("SELECT description FROM $this->t_forums WHERE id = $id"); + } + + function current_group(){ + return $this->current_group; + } + + function current_forum(){ + return $this->current_forum; + } + + function current_thread(){ + return $this->current_thread; + } + + function check_parms($parm){ + $regexp = "/^([+-]?((([0-9]+(\.)?)|([0-9]*\.[0-9]+))([eE][+-]?[0-9]+)?))$/"; + if (!preg_match($regexp, $parm)){ + wp_die("Bad request, please re-enter."); + } + $p = explode(".", $parm); + if(count($p) > 1) + $this->curr_page = $p[1]; + else + $this->curr_page = 0; + return $p[0]; + } + + function before_go() + { + $this->setup_links(); + + if(isset($_GET['markallread']) && $_GET['markallread'] == "true") + $this->markallread(); + + if(isset($_GET['mingleforumaction'])) + $action = $_GET['mingleforumaction']; + else + $action = false; + if (!isset($_GET['getNewForumID']) && !isset($_GET['delete_topic']) && !isset($_GET['remove_post']) && !isset($_GET['forumsubs']) && !isset($_GET['threadsubs']) && !isset($_GET['sticky']) && !isset($_GET['closed'])) + { + if ($action != false) + { + if ($this->options['forum_use_seo_friendly_urls']) + { + switch($action) + { + case 'vforum': + $whereto = $this->get_grouplink($this->check_parms($_GET['g'])); + break; + case 'viewforum': + $whereto = $this->get_forumlink($this->check_parms($_GET['f'])); + break; + case 'viewtopic': + $whereto = $this->get_threadlink($this->check_parms($_GET['t'])); + break; + } + if (!empty($whereto)) + { + header("HTTP/1.1 301 Moved Permanently"); + if($this->curr_page > 0) + header("Location: ".$whereto.".".$this->curr_page); + else + header("Location: ".$whereto); + } + } + } + } + } + + function go() { + global $user_ID; + get_currentuserinfo(); + + $this->o = ""; + + if($user_ID){ + if(get_user_meta($user_ID, 'wpf_useroptions', true) == ''){ + update_user_meta($user_ID, 'wpf_useroptions', $this->user_options); + } + } + + if(isset($_GET['mingleforumaction'])) + $action = $_GET['mingleforumaction']; + else + $action = false; + if ($action == false) + { + if ($this->options['forum_use_seo_friendly_urls']) + { + $uri = $this->get_seo_friendly_query(); + if (!empty($uri) && $uri['action'] && $uri['id']) + { + switch($uri['action']) + { + case 'group': + $action = 'vforum'; + $_GET['g'] = $uri['id']; + break; + case 'forum': + $action = 'viewforum'; + $_GET['f'] = $uri['id']; + break; + case 'thread': + $action = 'viewtopic'; + $_GET['t'] = $uri['id']; + break; + } + } + } + } + + if($action){ + switch($action){ + case 'viewforum': + $this->current_view = FORUM; + $this->showforum($this->check_parms($_GET['f'])); + break; + case 'viewtopic': + $this->current_view = THREAD; + $this->showthread($this->check_parms($_GET['t'])); + break; + case 'addtopic': + include(WPFPATH.'wpf-thread.php'); + break; + case 'postreply': + if($this->is_closed($_GET['thread'])){ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + }else{ + $this->current_thread = $this->check_parms($_GET['thread']); + include(WPFPATH.'wpf-post.php'); + } + break; + case 'shownew': + $this->show_new(); + break; + case 'editpost': + include(WPFPATH.'wpf-post.php'); + break; + case 'profile': + $this->view_profile(); + break; + case 'search': + $this->search_results(); + break; + case 'editprofile': + include(WPFPATH.'wpf-edit-profile.php'); + break; + case 'vforum': + $this->vforum($this->check_parms($_GET['g'])); + break; + } + } + else{ + $this->current_view = MAIN; + $this->mydefault(); + } + if(!$this->options['forum_hide_branding']) + { + $this->o .= apply_filters('mf_ad_above_branding', ''); //Adsense Area -- Above Branding + } + $above_forum_ad = apply_filters('mf_ad_above_forum', ''); //Adsense Area -- Above Forum + $below_forum_ad = apply_filters('mf_ad_below_forum', ''); //Adsense Area -- Below Forum + return $above_forum_ad."
      ".$this->o."
      ".$below_forum_ad; + } + + function get_version(){ + $plugin_data = implode('', file(ABSPATH."wp-content/plugins/".WPFPLUGIN."/wpf-main.php")); + $version = ''; + if (preg_match("|Version:(.*)|i", $plugin_data, $version)) + $version = $version[1]; + return $version; + } + + function get_userdata($user_id, $data){ + $user = get_userdata($user_id); + if(!$user) + return __("Guest", "mingleforum"); + return $user->$data; + } + + function get_lastpost($thread_id){ + global $wpdb; + $post = $wpdb->get_row("select `date`, author_id, id from $this->t_posts where parent_id = $thread_id order by `date` DESC limit 1"); + if (!empty($post)) { + $link = $this->get_paged_threadlink($thread_id); + return __("by", "mingleforum")." ".$this->profile_link($post->author_id)."
      ".__("on", "mingleforum")." ".date_i18n($this->opt['forum_date_format'], strtotime($post->date)).""; + } + else + return false; + } + + function get_lastpost_all(){ + global $wpdb; + $post = $wpdb->get_row("select `date`, author_id, id from $this->t_posts order by `date` DESC limit 1"); + return __("Latest Post by", "mingleforum")." ".$this->profile_link($post->author_id)."
      ".__("on", "mingleforum")." ".date_i18n($this->opt['forum_date_format'], strtotime($post->date)); + } + + function showsubforum($forum_id) { + global $user_ID; + $out = $alt = ''; + $frs = $this->get_forums($forum_id); + foreach($frs as $f){ + if ($this->have_access($f->id)){ + $alt = ($alt=="alt even")?"odd":"alt even"; + $out .= ""; + $image = "off.gif"; + if($user_ID){ + $lpif = $this->last_poster_in_forum($f->id, true); + $last_posterid = $this->last_posterid($f->id); + if($last_posterid != $user_ID){ + $lp = strtotime($lpif); // date + $lv = strtotime($this->last_visit()); + if($lv < $lp) + $image = "on.gif"; + } + } + $out .= " + + " + .$this->output_filter($f->name)."
      " + .$this->output_filter($f->description); + if($f->description != "") $out .= "
      "; + $out .= $this->get_sub_forums($f->id); + $out .= $this->get_forum_moderators($f->id) + .""; + $out .= "".__("Topics: ", "mingleforum").$this->num_threads($f->id)."
      ".__("Posts: ", "mingleforum").$this->num_posts_forum($f->id)."
      "; + $out .= "".$this->last_poster_in_forum($f->id).""; + $out .= ""; + } + } + return $out; + } + + function showforum($forum_id){ + global $user_ID; + if(isset($_GET['delete_topic'])) + $this->remove_topic(); + if(isset($_GET['move_topic'])) + $this->move_topic(); + if(!empty($forum_id)){ + $out = ""; + $del = ""; + $threads = $this->get_threads($forum_id); + $sticky_threads = $this->get_sticky_threads($forum_id); + $this->current_group = $this->forum_get_group_id($forum_id); + $this->current_forum = $forum_id; + $this->forum_subscribe(); + if($this->is_forum_subscribed()) + $this->notify_msg = __("Remove this Forum from your email notifications?", "mingleforum"); + else + $this->notify_msg = __("This will notify you of all new Topics created in this Forum. Are you sure that is what you want to do?", "mingleforum"); + $this->header(); + if(isset($_GET['getNewForumID'])){ + $out .= $this->getNewForumID(); + }else{ + if(!$this->have_access($this->current_group) || !$this->have_access($this->current_forum)){ + wp_die(__("Sorry, but you don't have access to this forum", "mingleforum")); + } + + $subforums = $this->showsubforum($this->current_forum); + if (!empty($subforums)) { + $out .= "
      + "; + $out .= $subforums; + $out .= "
      ".__("Subforums", "mingleforum")."

      "; + } + + $out .= " + + + + +
      ".$this->thread_pageing($forum_id)."".$this->forum_menu()."
      "; + $out .= "
      + + + + + + + + "; + /***************************************************************************************/ + if($sticky_threads){ + $out .= ""; + foreach($sticky_threads as $thread){ + if($this->is_moderator($user_ID, $this->current_forum)){ + if($this->options['forum_use_seo_friendly_urls']) + $strCommands = "".__("Move Topic", "mingleforum")." | ".__("Delete Topic", "mingleforum").""; + else + $strCommands = "".__("Move Topic", "mingleforum")." | ".__("Delete Topic", "mingleforum").""; + $del = "
      ($strCommands)
      "; + } + $image = ""; + if($user_ID){ + $poster_id = $this->last_posterid_thread($thread->id); // date and author_id + if($user_ID != $poster_id){ + $lp = strtotime($this->last_poster_in_thread($thread->id)); // date + $lv = strtotime($this->last_visit()); + if($lp > $lv) + $image = "".__("New posts since last visit", "mingleforum").""; + } + } + $sticky_img = ""; + $out .= " + + + + + + + "; + } + /********************************************************************************************************/ + $out .= ""; + } + $alt = "alt even"; + foreach($threads as $thread){ + $alt = ($alt=="alt even")?"odd":"alt even"; + if($user_ID){ + $image = ""; + $poster_id = $this->last_posterid_thread($thread->id); // date and author_id + if($user_ID != $poster_id){ + $lp = strtotime($this->last_poster_in_thread($thread->id)); // date + $lv = strtotime($this->last_visit()); + if($lp > $lv) + $image = "".__("New posts since last visit", "mingleforum").""; + } + } + if($this->is_moderator($user_ID, $this->current_forum)){ + if($this->options['forum_use_seo_friendly_urls']) + $strCommands = "".__("Move Topic", "mingleforum")." | ".__("Delete Topic", "mingleforum").""; + else + $strCommands = "".__("Move Topic", "mingleforum")." | ".__("Delete Topic", "mingleforum").""; + $del = "
      ($strCommands)
      "; + } + $out .= " + + + + + + + "; + } + $out .= "
      ".__("Status", "mingleforum")."".__("Topic Title", "mingleforum")."".__("Started by", "mingleforum")."".__("Replies", "mingleforum")."".__("Views", "mingleforum")."".__("Last post", "mingleforum")."
      ".__("Sticky Topics", "mingleforum")."
      $sticky_img" + .$this->output_filter($thread->subject)."  $image $del + ".$this->profile_link($thread->starter)."".( $this->num_posts($thread->id) - 1 )."".$thread->views."".$this->get_lastpost($thread->id)."
      ".__("Forum Topics", "mingleforum")."
      ".$this->get_topic_image($thread->id)."" + .$this->output_filter($thread->subject)."  $image $del + ".$this->profile_link($thread->starter)."".( $this->num_posts($thread->id) - 1 )."".$thread->views."".$this->get_lastpost($thread->id)."
      "; + $out .= " + + + + +
      ".$this->thread_pageing($forum_id)."".$this->forum_menu("bottom")."
      "; + } + $out .= $this->trail("bottom"); + $this->o .= $out; + $this->footer(); + } + } + + function get_subject($id){ + global $wpdb; + return stripslashes($wpdb->get_var("SELECT subject FROM $this->t_threads WHERE id = $id")); + } + + function showthread($thread_id){ + global $wpdb, $user_ID; + $this->current_group = $this->forum_get_group_from_post($thread_id); + $this->current_forum = $this->forum_get_forum_from_post($thread_id); + $this->current_thread = $thread_id; + if(isset($_GET['remove_post'])) + $this->remove_post(); + if(isset($_GET['sticky'])) + $this->sticky_post(); + $this->thread_subscribe(); + $posts = $this->get_posts($thread_id); + if($posts){ + if($this->is_thread_subscribed()) + $this->notify_msg = __("Remove this Topic from your email notifications?", "mingleforum"); + else + $this->notify_msg = __("This will notify you of all responses to this Topic. Are you sure that is what you want to do?", "mingleforum"); + if(!current_user_can('administrator') && !is_super_admin($user_ID) && !$this->is_moderator($user_ID, $this->current_forum)) + $wpdb->query("UPDATE {$this->t_threads} SET views = views+1 WHERE id = {$thread_id}"); + if($this->is_sticky($thread_id)) + $image = "normal_post_sticky.gif"; + else + $image = $this->get_topic_image_two($thread_id); + if(!$this->have_access($this->current_group) || !$this->have_access($this->current_forum)){ + wp_die(__("Sorry, but you don't have access to this forum", "mingleforum")); + } + $this->header(); + $out = " + + + + +
      ".$this->post_pageing($thread_id)."".$this->topic_menu()." +
      "; + if ($this->is_closed()) + $meClosed = " ".__("TOPIC CLOSED", "mingleforum")." "; + else + $meClosed = ""; + $out .= "
      + + + + + +
      ".__("Author", "mingleforum")."".$this->get_subject($thread_id).$meClosed."
      "; + $out .= "
      "; + $class = ""; + $c = 0; + foreach($posts as $post){ + $class = ($class == "wpf-alt")?"":"wpf-alt"; + $user = get_user_meta($post->author_id, "wpf_useroptions", true); + $out .= " + + + + "; + if(!$c) + $out .= apply_filters('mf_ad_below_first_post', ''); //Adsense Area -- Below First Post + $out .= "
      ". + $this->profile_link($post->author_id); + $out .= "
      "; + $out .= $this->get_userrole($post->author_id)."
      "; + $out .= __("Posts:", "mingleforum")." ".$this->get_userposts_num($post->author_id)."
      "; + $out .= 'Permalink
      '; + if($this->opt["forum_use_gravatar"]) + $out .= $this->get_avatar($post->author_id); + $out .= "
      ".apply_filters('mf_below_post_avatar', '', $post->author_id, $post->id)."
      + + + + + + + "; + if($user && $user['signature'] && $this->options['forum_show_bio']){ + $out .= ""; + } + $out .= "
      ".$this->get_postmeta($post->id, $post->author_id)."
      "; + if(!$c) + $out .= apply_filters('mf_thread_start', '', $this->current_thread, $this->get_threadlink($post->parent_id)); + $out .= apply_filters('mf_before_reply', '', $post->id).make_clickable(convert_smilies(wpautop($this->autoembed($this->output_filter($post->text))))).apply_filters('mf_after_reply', '', $post->id)."
      ".$this->output_filter(make_clickable(convert_smilies(wpautop($user['signature'], true))))."
      +
      "; + $c += 1; + } + $quick_thread = $this->check_parms($_GET['t']); + //QUICK REPLY AREA + if(!in_array($this->current_group, $this->options['forum_disabled_cats']) || is_super_admin() || $this->is_moderator($user_ID, $this->current_forum) || $this->options['allow_user_replies_locked_cats']) + { + if(!$this->is_closed() && ($user_ID || !$this->options['forum_require_registration']) && $this->have_access($this->current_forum, 'post') && $this->have_access($this->current_group, 'post')) { + $parser = new cartpaujBBCodeParser(); + $out .= "
      + + + + "; + $out .= $this->get_quick_reply_captcha(); + $out .= " + + +
      "; + $out .= apply_filters('mf_ad_above_quick_reply', ''); //Adsense Area -- Above Quick Reply Form + $out .= "".__("Quick Reply", "mingleforum").": + get_subject(floor($quick_thread))."'/> + ".$parser->get_editor()." +
      + + + +
      +
      "; + } + } + $out .= " + + + + +
      ".$this->post_pageing($thread_id)."".$this->topic_menu("bottom")." +
      "; + $out .= $this->trail("bottom"); + $this->o .= $out; + $this->footer(); + } + } + + function get_postmeta($post_id, $author_id){ + global $user_ID; + $image = "".__("Post", "mingleforum").""; + $o = " + + "; + if(!in_array($this->current_group, $this->options['forum_disabled_cats']) || is_super_admin() || $this->is_moderator($user_ID, $this->current_forum) || $this->options['allow_user_replies_locked_cats']) + { + if($this->options['forum_use_seo_friendly_urls']) + { + if($user_ID && !$this->is_closed() && $this->have_access($this->current_forum, 'post') && $this->have_access($this->current_group, 'post')) + $o .= ""; + if($this->is_moderator($user_ID, $this->current_forum)) + $o .= ""; + if(($this->is_moderator($user_ID, $this->current_forum)) || ($user_ID == $author_id && $user_ID)) + $o .= ""; + } + else + { + if($user_ID && !$this->is_closed() && $this->have_access($this->current_forum, 'post') && $this->have_access($this->current_group, 'post')) + $o .= ""; + if($this->is_moderator($user_ID, $this->current_forum)) + $o .= ""; + if(($this->is_moderator($user_ID, $this->current_forum)) || ($user_ID == $author_id && $user_ID)) + $o .= ""; + } + } + $o .= " +
      $image ".$this->get_postname($post_id)."
      ".__("on:", "mingleforum")." ".$this->get_postdate($post_id)."
      ".__("Quote", "mingleforum")." ".__("Remove", "mingleforum")."" .__("Edit", "mingleforum")." ".__("Quote", "mingleforum")." ".__("Remove", "mingleforum")."" .__("Edit", "mingleforum")."
      "; + return $o; + } + + function get_postdate($post){ + global $wpdb; + return $this->format_date($wpdb->get_var("select `date` from $this->t_posts where id = $post")); + } + + function format_date($date){ + if($date) + return date_i18n($this->opt['forum_date_format'], strtotime($date)); + else + return false; + } + + function wpf_current_time_fixed( $type, $gmt = 0 ) { + $t = ( $gmt ) ? gmdate( 'Y-m-d H:i:s' ) : gmdate( 'Y-m-d H:i:s', ( time() + ( get_option( 'gmt_offset' ) * 3600 ) ) ); + switch ( $type ) { + case 'mysql': + return $t; + break; + case 'timestamp': + return strtotime($t); + break; + } + } + + function get_userposts_num($id){ + global $wpdb; + return $wpdb->get_var("select count(*) from $this->t_posts where author_id = $id"); + } + + function get_post_owner($id) { + global $wpdb; + return $wpdb->get_var($wpdb->prepare("SELECT `author_id` FROM {$this->t_posts} WHERE `id` = %d", $id)); + } + + function show_last_posts() { + global $wpdb, $user_ID; + if ($this->opt['forum_last_posts']) { + $alt = ($alt == "alt even") ? "odd" : "alt even"; + $posts = $wpdb->get_results("SELECT * FROM `$this->t_threads` ORDER BY `last_post` DESC LIMIT " . $this->opt['forum_last_posts']); + + $nb_valid = 0; + foreach ($posts as $thread) { + if ($this->have_access($thread->parent_id)) { + $nb_valid++; + } + } + + if ($nb_valid) { + $this->o .= "
      "; + $this->o .= ""; + + foreach ($posts as $thread) { + if ($this->have_access($thread->parent_id)) { + if ($user_ID) { + $image = ""; + $poster_id = $this->last_posterid_thread($thread->id); // date and author_id + if ($user_ID != $poster_id) { + $lp = strtotime($this->last_poster_in_thread($thread->id)); // date + $lv = strtotime($this->last_visit()); + if ($lp > $lv) + $image = "" . __("New posts since last visit", "mingleforum") . ""; + } + } + + $this->o .= " + + + + + "; + } + } + + $this->o .= "
      " . __("Latest posts", "mingleforum") . "
      " . $this->get_topic_image($thread->id) . "" + . $this->output_filter($thread->subject) . "  $image + " . __("Replies", "mingleforum") . ": " . ( $this->num_posts($thread->id) - 1 ) . "
      " . __("Views", "mingleforum") . ": " . $thread->views . "
      " . $this->get_lastpost($thread->id) . "

      "; + } + } + } + + function mydefault(){ + global $wp_rewrite; + if($wp_rewrite->using_permalinks()) + $delim = "?"; + else + $delim = "&"; + $grs = $this->get_forums(); + $this->header(); + $this->show_last_posts(); + foreach($grs as $g){ + if($this->have_access($g->id)){ + $this->o .= "
      "; + $this->o .= ""; + $this->o .= $this->showsubforum($g->id); + $this->o .= "
      ".$this->output_filter($g->name)."

      "; + } + } + $this->o .= apply_filters('wpwf_new_posts'," + + + +
      ".__("New posts", "mingleforum")." ".__("No new posts", "mingleforum")." - ".__("Mark All Read", "mingleforum")."

      "); + $this->footer(); + } + + function vforum($groupid){ + global $user_ID; + $alt = ""; + $grs = $this->get_forums($groupid); + $this->current_group = $groupid; + $this->header(); + foreach($grs as $g){ + if($this->have_access($g->id)){ + $this->o .= "
      "; + $this->o .= ""; + $frs = $this->get_forums($g->id); + foreach($frs as $f){ + if ($this->have_access($f->id)) { + $alt = ($alt=="alt even")?"odd":"alt even"; + $this->o .= ""; + $image = "off.gif"; + if($user_ID){ + $lpif = $this->last_poster_in_forum($f->id, true); + $last_posterid = $this->last_posterid($f->id); + if($last_posterid != $user_ID){ + $lp = strtotime($lpif); // date + $lv = strtotime($this->last_visit()); + if($lv < $lp) + $image = "on.gif"; + else + $image = "off.gif"; + } + } + $this->o .= " + + "; + $this->o .= ""; + $this->o .= ""; + $this->o .= ""; + } + } + $this->o .= "
      ".$this->output_filter($g->name)."
      " + .$this->output_filter($f->name)."
      " + .$this->output_filter($f->description); + if($f->description != "")$this->o .= "
      "; + $this->o .= $this->get_forum_moderators($f->id) + ."
      ".__("Topics: ", "mingleforum").$this->num_threads($f->id)."
      ".__("Posts: ", "mingleforum").$this->num_posts_forum($f->id)."
      ".$this->last_poster_in_forum($f->id)."
      +

      "; + } + } + $this->o .= apply_filters('wpwf_new_posts'," + + + +
      ".__("New posts", "mingleforum")." ".__("No new posts", "mingleforum")."

      "); + $this->footer(); + } + + function output_filter($string){ + $parser = new cartpaujBBCodeParser(); + return stripslashes($parser->bbc2html($string)); + } + + function input_filter($string){ + $Find = array("<", "%", "$"); + $Replace = array("<", "%", "$"); + $newStr = str_replace($Find, $Replace, $string); + return $newStr; + } + + function sig_input_filter($string){ + $Find = array("<", "%", "$"); + $Replace = array("<", "%", "$"); + $newStr = str_replace($Find, $Replace, $string); + return $newStr; + } + + function last_posterid($forum){ + global $wpdb; + return $wpdb->get_var("SELECT $this->t_posts.author_id FROM $this->t_posts INNER JOIN $this->t_threads ON $this->t_posts.parent_id=$this->t_threads.id WHERE $this->t_threads.parent_id = $forum ORDER BY $this->t_posts.date DESC"); + } + + function last_posterid_thread($thread_id){ + global $wpdb; + return $wpdb->get_var("SELECT $this->t_posts.author_id FROM $this->t_posts INNER JOIN $this->t_threads ON $this->t_posts.parent_id=$this->t_threads.id WHERE $this->t_posts.parent_id = $thread_id ORDER BY $this->t_posts.date DESC"); + } + + function num_threads($forum){ + global $wpdb; + return $wpdb->get_var("select count(id) from $this->t_threads where parent_id = $forum "); + } + + function num_posts_forum($forum){ + global $wpdb; + return $wpdb->get_var("SELECT count($this->t_posts.id) FROM $this->t_posts INNER JOIN $this->t_threads ON $this->t_posts.parent_id=$this->t_threads.id WHERE $this->t_threads.parent_id = $forum ORDER BY $this->t_posts.date DESC"); + } + + function num_posts_total(){ + global $wpdb; + return $wpdb->get_var("select count(id) from $this->t_posts"); + } + + function num_posts($thread_id){ + global $wpdb; + return $wpdb->get_var("select count(id) from $this->t_posts where parent_id = $thread_id "); + } + + function num_threads_total(){ + global $wpdb; + return $wpdb->get_var("select count(id) from $this->t_threads"); + } + + function last_poster_in_forum($forum, $post_date = false){ + global $wpdb; + $date = $wpdb->get_row("SELECT $this->t_posts.date, $this->t_posts.id, $this->t_posts.parent_id, $this->t_posts.author_id FROM $this->t_posts INNER JOIN $this->t_threads ON $this->t_posts.parent_id=$this->t_threads.id WHERE $this->t_threads.parent_id = $forum ORDER BY $this->t_posts.date DESC"); + if($post_date && is_object($date)) + return $date->date; + if(!$date) + return __("No topics yet", "mingleforum"); + $d = date_i18n($this->opt['forum_date_format'], strtotime($date->date)); + return "".__("Last post", "mingleforum")." ".__("by", "mingleforum")." ".$this->profile_link($date->author_id) + ."
      ".__("in", "mingleforum")." ".$this->get_threadname($date->parent_id)."
      ".__("on", "mingleforum")." $d"; + } + + function last_poster_in_thread($thread_id) { + global $wpdb; + return $wpdb->get_var("select `date` from $this->t_posts where parent_id = $thread_id order by `date` DESC"); + } + + function have_access($groupid, $type='access') { + global $wpdb, $user_ID; + + if(current_user_can("administrator") || is_super_admin($user_ID)) + return true; + + switch ($type) { + case 'access': + $type = 'usergroups'; + break; + case 'post': + $type = 'usercanpost'; + break; + } + + $user_groups = maybe_unserialize($wpdb->get_var("select $type from {$this->t_forums} where id = {$groupid}")); + if(!$user_groups) + return true; + + foreach($user_groups as $user_group) { + if($this->is_user_ingroup($user_ID, $user_group)) + return true; + } + return false; + } + + function get_usergroups(){ + global $wpdb; + return $wpdb->get_results("SELECT * FROM $this->t_usergroups"); + } + + function get_members($usergroup){ + global $wpdb; + return $wpdb->get_results("SELECT user_id FROM $this->t_usergroup2user WHERE `group` = $usergroup"); + } + + function is_user_ingroup($user_id = "0", $user_group_id=''){ + global $wpdb; + if(!$user_id) + return false; + $id = $wpdb->get_var("select user_id from $this->t_usergroup2user where user_id = $user_id and `group` = $user_group_id"); + if($id != "") + return true; + return false; + } + + // TODO + function setup_header(){ + $this->setup_links(); + if($this->options['forum_use_rss']) { ?> + " href="global_feed_url;?>" /> get_pageid())) + { + if($this->ads_options['mf_ad_custom_css'] != "") { + ?> + + + skin_url/style.css";?>" /> + + + options['forum_use_seo_friendly_urls']) + { + $uri = $this->get_seo_friendly_query(); + if (!empty($uri) && $uri['action'] && $uri['id']) + { + switch($uri['action']) + { + case 'group': + $action = 'vforum'; + $_GET['g'] = $uri['id']; + break; + case 'forum': + $action = 'viewforum'; + $_GET['f'] = $uri['id']; + break; + case 'thread': + $action = 'viewtopic'; + $_GET['t'] = $uri['id']; + break; + } + } + } + switch($action){ + case "vforum": + $title = $default_title.$this->get_groupname($this->check_parms($_GET['g'])); + break; + case "viewforum": + $title = $default_title.$this->get_groupname($this->forum_get_parent($this->check_parms($_GET['f'])))." » ".$this->get_forumname($this->check_parms($_GET['f'])); + break; + case "viewtopic": + $group = $this->get_groupname($this->forum_get_parent($this->forum_get_forum_from_post($this->check_parms($_GET['t'])))); + $title = $default_title.$group." » ".$this->get_forumname($this->forum_get_forum_from_post($this->check_parms($_GET['t'])))." » ".$this->get_threadname($this->check_parms($_GET['t'])); + break; + case "search": + $terms = htmlentities($wpdb->escape($_POST['search_words']), ENT_QUOTES); + $title = $default_title.__("Search Results", "mingleforum"). " » {$terms} | "; + break; + case "profile": + $title = $default_title.__("Profile", "mingleforum").""; + break; + case "editpost": + $title = $default_title.__("Edit Post", "mingleforum").""; + break; + case "postreply": + $title = $default_title.__("Post Reply", "mingleforum").""; + break; + case "addtopic": + $title = $default_title.__("New Topic", "mingleforum").""; + break; + } + return $bef_title.$title." "; + } + + function set_pagetitle($title){ + if(is_page($this->get_pageid())) { + return $this->get_pagetitle($title); + } else { + return $title; + } + } + function array_search( $needle, $haystack, $strict = FALSE ){ + if( !is_array($haystack) )return false; + foreach($haystack as $val){ + if( ( ( $strict ) && ( $needle === $val ) ) || ( ( !$strict ) && ( $needle == $val ) ) )return $val; + } + return false; + } + + function get_usergroup_name($usergroup_id){ + global $wpdb; + return $wpdb->get_var("SELECT name FROM $this->t_usergroups WHERE id = $usergroup_id"); + } + + function get_usergroup_description($usergroup_id){ + global $wpdb; + return $wpdb->get_var("SELECT description FROM $this->t_usergroups WHERE id = $usergroup_id"); + } + + function is_moderator($user_id, $forum_id = ''){ + $user = get_userdata($user_id); + if($user && $user->user_level >= 9) + return true; + $forums = get_user_meta($user_id, 'wpf_moderator', true); + if(!$forum_id) + return $forums; + if($forums == "mod_global") + return true; + return $this->array_search( $forum_id, $forums ); + } + + function get_users(){ + global $wpdb; + return $wpdb->get_results("SELECT user_login, ID FROM {$wpdb->users} ORDER BY user_login ASC"); + } + + function get_moderators(){ + global $wpdb; + + return $wpdb->get_results(" + select $wpdb->usermeta.user_id, $wpdb->users.user_login + from + $wpdb->usermeta + inner join + $wpdb->users on $wpdb->usermeta.user_id = $wpdb->users.ID + where + $wpdb->usermeta.meta_key = 'wpf_moderator' ORDER BY $wpdb->users.user_login ASC"); + } + + function get_forum_moderators($forum_id){ + global $wpdb; + $out = ""; + $mods = $wpdb->get_results("SELECT user_id, meta_value FROM $wpdb->usermeta WHERE meta_key = 'wpf_moderator'"); + foreach($mods as $mod){ + if($this->is_moderator($mod->user_id, $forum_id)){ + $out .= $this->profile_link($mod->user_id).", "; + } + } + $out = substr($out, 0, strlen($out)-2); + return (empty($out)) ? '' : "".__("Moderators:", "mingleforum")." $out"; + } + + function get_sub_forums($forum_id){ + global $wpdb; + $out = ""; + $fs = $wpdb->get_results("SELECT id, name FROM $this->t_forums WHERE parent_id = $forum_id"); + foreach($fs as $f){ + $out .= "".$this->output_filter($f->name).""; + } + return (empty($out)) ? '' : "".__("Subforums", "mingleforum").": $out
      "; + } + + function wp_forum_install() + { + global $table_prefix, $wpdb; + $table_threads = $table_prefix."forum_threads"; + $table_posts = $table_prefix."forum_posts"; + $table_forums = $table_prefix."forum_forums"; + $table_usergroup2user = $table_prefix."forum_usergroup2user"; + $table_usergroups = $table_prefix."forum_usergroups"; + $oldops = get_option('mingleforum_options'); + + if($oldops['forum_db_version'] < $this->db_version) //Don't run all the friggin queries if db is already at latest version + { + $charset_collate = ''; + if( $wpdb->has_cap('collation')) + { + if(!empty($wpdb->charset)) + $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset"; + if(!empty($wpdb->collate)) + $charset_collate .= " COLLATE $wpdb->collate"; + } + + $sql1 = " + CREATE TABLE ". $table_forums." ( + id int(11) NOT NULL auto_increment, + `name` varchar(255) NOT NULL default '', + parent_id int(11) NOT NULL default '0', + `description` varchar(255) NOT NULL default '', + views int(11) NOT NULL default '0', + `sort` int( 11 ) NOT NULL default '0', + PRIMARY KEY (id) + ){$charset_collate};"; + + $sql3 = " + CREATE TABLE ". $table_posts." ( + id int(11) NOT NULL auto_increment, + `text` longtext, + parent_id int(11) NOT NULL default '0', + `date` datetime NOT NULL default '0000-00-00 00:00:00', + author_id int(11) NOT NULL default '0', + `subject` varchar(255) NOT NULL default '', + views int(11) NOT NULL default '0', + PRIMARY KEY (id) + ){$charset_collate};"; + + $sql4 = " + CREATE TABLE ". $table_threads." ( + id int(11) NOT NULL auto_increment, + parent_id int(11) NOT NULL default '0', + views int(11) NOT NULL default '0', + `subject` varchar(255) NOT NULL default '', + `date` datetime NOT NULL default '0000-00-00 00:00:00', + `status` varchar(20) NOT NULL default 'open', + closed int(11) NOT NULL default '0', + mngl_id int(11) NOT NULL default '-1', + starter int(11) NOT NULL, + `last_post` datetime NOT NULL default '0000-00-00 00:00:00', + PRIMARY KEY (id) + ){$charset_collate};"; + + $sql5 = " + CREATE TABLE ". $table_usergroup2user." ( + `id` int(11) NOT NULL auto_increment, + `user_id` int(11) NOT NULL, + `group` varchar(255) NOT NULL, + PRIMARY KEY (`id`) + ){$charset_collate};"; + + $sql6 = + "CREATE TABLE ". $table_usergroups." ( + `id` int(11) NOT NULL auto_increment, + `name` varchar(255) NOT NULL, + `description` varchar(255) default NULL, + `leaders` varchar(255) default NULL, + PRIMARY KEY (`id`) + ){$charset_collate};"; + + require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); + + dbDelta($sql1); + dbDelta($sql3); + dbDelta($sql4); + dbDelta($sql5); + dbDelta($sql6); + + $xyquery2="ALTER TABLE ".$table_forums." ADD sort int( 11 ) NOT NULL;"; + $xyquery3="ALTER TABLE ".$table_threads." ADD last_post datetime NOT NULL;"; + $xyquery7="ALTER TABLE ".$table_posts." CHANGE thread_id parent_id int(11);"; + $xyquery8="ALTER TABLE `".$table_posts."` ADD FULLTEXT ( `text` );"; + $xyquery9="ALTER TABLE ".$table_threads." ADD closed int(11) NOT NULL default '0';"; + $xyquery10="ALTER TABLE ".$table_threads." ADD mngl_id int(11) NOT NULL default '-1';"; + $xyquery11="ALTER TABLE ".$table_forums." ADD usergroups VARCHAR( 255 ) NULL DEFAULT ''"; + $xyquery12="ALTER TABLE ".$table_forums." ADD usercanpost VARCHAR( 255 ) NULL DEFAULT ''"; + + // 1.7.3 + maybe_add_column($table_forums, 'sort', $xyquery2); + + // 1.7.5 + maybe_add_column($table_threads, 'last_post', $xyquery3); + + // 2.0 + maybe_add_column($table_posts, 'parent_id', $xyquery7); + $wpdb->query($xyquery8); + + // 3.0 + maybe_add_column($table_forums, 'usergroups', $xyquery11); + maybe_add_column($table_forums, 'usercanpost', $xyquery12); + + // Mingle Forum 1.0 + maybe_add_column($table_threads, 'closed', $xyquery9); + maybe_add_column($table_threads, 'mngl_id', $xyquery10); + + $this->convert_moderators(); + $this->upgrade_forums_groups(); + + //Setup the Skin Folder outside of the plugin + $target_path = ABSPATH.'wp-content/mingle-forum-skins'; + if(!file_exists($target_path)) + @mkdir($target_path."/"); + + $oldops['forum_db_version'] = 2; + update_option('mingleforum_options', $oldops); + } + } + + function forum_menu($pos = "top"){ + global $user_ID; + $menu = ""; + if($user_ID || $this->allow_unreg()){ + if($pos == "top") + $class = "mirrortab"; + else + $class= "maintab"; + + $menu = ""; + $menu .= " + "; + if ($this->have_access($this->current_forum, 'post') && $this->have_access($this->current_group, 'post')) { + $menu .= ""; + } + if($user_ID) + { + if($this->is_forum_subscribed()) //Check if user has already subscribed to topic + $menu .= ""; + else + $menu .= ""; + } + $menu .= " + +
       ".__("New Topic", "mingleforum")."".__("Unsubscribe", "mingleforum")."".__("Subscribe", "mingleforum")."  
      "; + } + return $menu; + } + + function topic_menu($pos = "top"){ + global $user_ID; + $menu = ""; + $stick = ""; + $closed = ""; + if($user_ID || $this->allow_unreg()){ + if($pos == "top"){ + $class = "mirrortab"; + }else{ + $class = "maintab"; + } + if($this->is_moderator($user_ID, $this->current_forum)){ + if($this->options['forum_use_seo_friendly_urls']) + { + if($this->is_sticky()){ + $stick = "".__("Undo Sticky", "mingleforum").""; + }else{ + $stick = "".__("Sticky", "mingleforum").""; + } + if($this->is_closed()){ + $closed = "".__("Re-open", "mingleforum").""; + }else{ + $closed = "".__("Close", "mingleforum").""; + } + } + else + { + if($this->is_sticky()){ + $stick = "".__("Undo Sticky", "mingleforum").""; + }else{ + $stick = "".__("Sticky", "mingleforum").""; + } + if($this->is_closed()){ + $closed = "".__("Re-open", "mingleforum").""; + }else{ + $closed = "".__("Close", "mingleforum").""; + } + } + } + $menu .= ""; + $menu .= ""; + if(!in_array($this->current_group, $this->options['forum_disabled_cats']) || is_super_admin() || $this->is_moderator($user_ID, $this->current_forum) || $this->options['allow_user_replies_locked_cats']) + { + if(!$this->is_closed() && $this->have_access($this->current_forum, 'post') && $this->have_access($this->current_group, 'post')) + $menu .= ""; + } + if($user_ID) + { + if($this->is_thread_subscribed()) //Check if user has already subscribed to topic + $menu .= ""; + else + $menu .= ""; + } + if($this->options['forum_use_rss']) + $menu .= ""; + $menu .= $stick.$closed." + +
       ".__("Reply", "mingleforum")."".__("Unsubscribe", "mingleforum")."".__("Subscribe", "mingleforum")."".__("RSS feed", "mingleforum")."  
      "; + } + return $menu; + } + + function setup_menu(){ + global $user_ID; + $this->setup_links(); + + if(isset($_GET['closed'])) + $this->closed_post(); + $link = "".__("My Profile", "mingleforum").""; + + if($this->options['forum_use_seo_friendly_urls']) + { + $menuitems = array( + "home" => "".__("Forum Home", "mingleforum")."", + "profile" => $link, + "move" => "".__("Move Topic", "mingleforum")."" + ); + } + else + { + $menuitems = array( + "home" => "".__("Forum Home", "mingleforum")."", + "profile" => $link, + "move" => "".__("Move Topic", "mingleforum").""); + } + + $menu = ""; + if($user_ID || $this->allow_unreg()){ + $menu .= ""; + $menu .= ""; + if($user_ID) + $menu .= ""; + + switch($this->current_view){ + case THREAD: + if($this->is_moderator($user_ID, $this->current_forum)){ + $menu .= ""; + } + } + $menu .= "
      "; + } + return $menu; + } + + function convert_moderators(){ + global $wpdb; + if(!get_option('wpf_mod_option_vers')){ + $mods = $wpdb->get_results("SELECT user_id, user_login, meta_value FROM $wpdb->usermeta + INNER JOIN $wpdb->users ON $wpdb->usermeta.user_id=$wpdb->users.ID WHERE meta_key = 'moderator' AND meta_value <> ''"); + + foreach($mods as $mod){ + $string = explode(",", substr_replace($mod->meta_value, "", 0, 1)); + + update_user_meta($mod->user_id, 'wpf_moderator', maybe_serialize($string)); + } + update_option('wpf_mod_option_vers', '2'); + } + } + + function upgrade_forums_groups() { + global $wpdb, $table_prefix; + $wpdb->get_var("SHOW TABLES LIKE '%forum_groups%'"); + if ($wpdb->num_rows) { + $groups = $wpdb->get_results("SELECT * FROM {$table_prefix}forum_groups"); + foreach ($groups as $group) { + $wpdb->query($wpdb->prepare( + "INSERT INTO $this->t_forums (name, description, sort, usergroups) VALUES (%s, %s, %d, %s)", + $group->name, + $group->description, + $group->sort, + $group->usergroups + )); + $wpdb->query($wpdb->prepare( + "UPDATE $this->t_forums SET parent_id = %d WHERE parent_id = %d", + $wpdb->insert_id, + $group->id + )); + } + $wpdb->query("DROP TABLE {$table_prefix}forum_groups"); + } + } + + function login_form(){ + global $user_ID; + if($user_ID) + $user = get_userdata($user_ID); + $login_msg = ""; + if ($user_ID) + $login_msg = "

      ".__("You are logged in as:", "mingleforum")." ".$user->user_login."

      "; + else + $login_msg = ""; + + if(!is_user_logged_in() && $this->options['forum_show_login_form']){ + return "
      +

      +
      +
      + + + +
      "; + } + else + return $login_msg; + } + + function print_curr(){ + $this->o .= "

      Group: $this->current_group
      + Forum: $this->current_forum
      + Thread: $this->current_thread

      "; + } + + // TODO + function get_userrole($user_id){ + $user = get_userdata($user_id); + if($user && $user->user_level >= 9) + return __("Administrator", "mingleforum"); + if(!$user_id) + return ""; //User is a guest + if($this->is_moderator($user_id, $this->current_forum)) + return __("Moderator", "mingleforum"); + else + { + $mePosts = $this->get_userposts_num($user_id); + if ($mePosts < $this->opt['level_one']) + return __($this->opt['level_newb_name'], "mingleforum"); + if ($mePosts < $this->opt['level_two']) + return __($this->opt['level_one_name'], "mingleforum"); + if ($mePosts < $this->opt['level_three']) + return __($this->opt['level_two_name'], "mingleforum"); + else + return __($this->opt['level_three_name'], "mingleforum"); + } + } + +/**************************************************/ + function forum_get_group_id($group){ + $group = ($group) ? $group : 0; + while (true) { + $parent = $this->forum_get_parent($group); + if (!$parent) return $group; + $group = $parent; + } + } + function forum_get_parent($forum){ + $forum = ($forum) ? $forum : 0; + global $wpdb; + return $wpdb->get_var("SELECT parent_id FROM $this->t_forums WHERE id = $forum"); + } + function forum_get_forum_from_post($thread){ + $thread = ($thread) ? $thread : 0; + global $wpdb; + return $wpdb->get_var("SELECT parent_id FROM $this->t_threads WHERE id = $thread"); + } + function forum_get_group_from_post($thread_id){ + return $this->forum_get_group_id($this->forum_get_parent($this->forum_get_forum_from_post($thread_id))); + } +/****************************************************/ + + function trail($pos = "top"){ + global $wpdb; + $this->setup_links(); + + $class= "maintab"; + if($pos == "top") + $class = "mirrortab"; + + $trail = "".__("Forum", "mingleforum").""; + + if($this->current_group) + if($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->current_group))."-group".$this->current_group; + $trail .= " » ".$this->get_groupname($this->current_group).""; + } + else + $trail .= " » ".$this->get_groupname($this->current_group).""; + + $parents = array(); + $current = $this->forum_get_parent($this->current_forum); + while ($current) { + $parents[] = $current; + $current = $this->forum_get_parent($current); + } + $parents = array_reverse($parents); + unset($parents[0]); + + foreach ($parents as $parent) { + if ($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($parent))."-group".$this->forum_get_parent($parent)); + $forum = $this->get_seo_friendly_title($this->get_forumname($parent)."-forum".$parent); + $trail .= " » ".$this->get_forumname($parent).""; + } + else + $trail .= " » ".$this->get_forumname($parent).""; + } + + if($this->current_forum) + if ($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($this->current_forum))."-group".$this->forum_get_parent($this->current_forum)); + $forum = $this->get_seo_friendly_title($this->get_forumname($this->current_forum)."-forum".$this->current_forum); + $trail .= " » ".$this->get_forumname($this->current_forum).""; + } + else + $trail .= " » ".$this->get_forumname($this->current_forum).""; + + if($this->current_thread) + if ($this->options['forum_use_seo_friendly_urls']) + { + $group = $this->get_seo_friendly_title($this->get_groupname($this->forum_get_parent($this->forum_get_forum_from_post($this->current_thread)))."-group".$this->forum_get_parent($this->forum_get_forum_from_post($this->current_thread))); + $forum = $this->get_seo_friendly_title($this->get_forumname($this->forum_get_forum_from_post($this->current_thread))."-forum".$this->forum_get_forum_from_post($this->current_thread)); + $thread = $this->get_seo_friendly_title($this->get_threadname($this->current_thread)."-thread".$this->current_thread); + $trail .= " » ".$this->get_threadname($this->current_thread).""; + } + else + $trail .= " » ".$this->get_threadname($this->current_thread).""; + + if($this->current_view == NEWTOPICS) + $trail .= " » ".__("New Topics since last visit", "mingleforum"); + + if($this->current_view == SEARCH){ + $terms = ""; + if(isset($_POST['search_words'])) + $terms = htmlentities($wpdb->escape($_POST['search_words']), ENT_QUOTES); + $trail .= " » ".__("Search Results", "mingleforum")." » $terms"; + } + + if($this->current_view == PROFILE) + $trail .= " » ".__("Profile Info", "mingleforum"); + + if($this->current_view == POSTREPLY) + $trail .= " » ".__("Post Reply", "mingleforum"); + + if($this->current_view == EDITPOST) + $trail .= " » ".__("Edit Post", "mingleforum"); + + if($this->current_view == NEWTOPIC) + $trail .= " » ".__("New Topic", "mingleforum"); + + return apply_filters('mf_ad_above_breadcrumbs', '').""; //Adsense Area -- Above Breadcrumbs + } + + function last_visit(){ + global $user_ID; + if($user_ID) + return $_COOKIE['wpmfcookie']; + else + return "0000-00-00 00:00:00"; + } + + function set_cookie() + { + global $user_ID; + if($user_ID && !isset($_COOKIE['wpmfcookie'])) + { + $last = get_user_meta($user_ID, 'lastvisit', true); + setcookie("wpmfcookie", $last, 0, "/"); + update_user_meta($user_ID, 'lastvisit', $this->wpf_current_time_fixed('mysql', 0)); + } + } + + function markallread() + { + global $user_ID; + if($user_ID) + { + update_user_meta($user_ID, 'lastvisit', $this->wpf_current_time_fixed('mysql', 0)); + $last = get_user_meta($user_ID, 'lastvisit', true); + setcookie("wpmfcookie", $last, 0, "/"); + } + } + + function get_avatar($user_id, $size = 60){ + + if($this->opt['forum_use_gravatar'] == 'true') + return get_avatar($user_id, $size); + else + return ""; + } + + function header(){ + global $user_ID; + $avatar = ""; + $this->setup_links(); + $ProfLinky = "".__("Edit Profile", "mingleforum")."
      "; + + if($user_ID){ + $welcome = __("Welcome", "mingleforum")." ".$this->get_userdata($user_ID, $this->options['forum_display_name']); + $meta = "
      ".__("Your last visit was:", "mingleforum")." ".$this->format_date($this->last_visit())."
      "; + $meta .= "".__("Show new topics since your last visit", "mingleforum")."
      "; + $meta .= "".__("Edit your forum options", "mingleforum")."
      "; + $meta .= $ProfLinky; + $meta .= "".__("Log out", "mingleforum")."
      "; + $avatar = "".$this->get_avatar($user_ID, 60).""; + $colspan = "colspan = '2'"; + } + else{ + $meta = apply_filters('wpwf_guest_welcome_msg', "

      ".__("Welcome Guest, please login or", "mingleforum")." "."".__("register.", "mingleforum")."

      ".$this->login_form()); //--weaver-- + $welcome = __("Welcome", "mingleforum"). " ".$this->get_userdata($user_ID, $this->options['forum_display_name']).""; + $colspan = ""; + } + if(!$user_ID && !$this->allow_unreg()){ + $meta = "

      ".__("Welcome Guest, posting in this forum requires", "mingleforum")." ".__("registration.", "mingleforum")."

      ".$this->login_form(); + $colspan = ""; + } + $o = "
      + + + + + + + + $avatar + + + + + + +

      $welcome 

      + ".__("Show/Hide Header", "mingleforum")." +
      $meta
      +
      +
      + + +
      +
      +
      +
      "; + $o .= $this->setup_menu(); + $o .= $this->trail(); + $this->o .= $o; + } + + function post_pageing($thread_id){ + global $wpdb; + $out = __("Pages:", "mingleforum"); + $count = $wpdb->get_var("SELECT count(*) FROM $this->t_posts WHERE parent_id = $thread_id"); + $num_pages = ceil($count/$this->opt['forum_posts_per_page']); + if($num_pages <= 6) { + for($i = 0; $i < $num_pages; ++$i){ + if($i == $this->curr_page) + $out .= " [".($i+1)."]"; + else + $out .= " ".($i+1).""; + } + } + else { + if($this->curr_page >= 4) + $out .= " ".__("First", "mingleforum")." << "; + for($i = 3; $i > 0; $i--) { + if((($this->curr_page + 1) - $i) > 0) + $out .= " ".(($this->curr_page + 1) - $i).""; + } + $out .= " [".($this->curr_page + 1)."]"; + for($i = 1; $i <= 3; $i++) { + if((($this->curr_page + 1) + $i) <= $num_pages) + $out .= " ".(($this->curr_page + 1) + $i).""; + } + if($num_pages - $this->curr_page >= 5) + $out .= " >> ".__("Last", "mingleforum").""; + } + return "".$out.""; + } + + function thread_pageing($forum_id){ + global $wpdb; + $out = __("Pages:", "mingleforum"); + $count = $wpdb->get_var("SELECT count(*) FROM $this->t_threads WHERE parent_id = $forum_id AND `status` <> 'sticky'"); + $num_pages = ceil($count/$this->opt['forum_threads_per_page']); + if($num_pages <= 6) { + for($i = 0; $i < $num_pages; ++$i){ + if($i == $this->curr_page) + $out .= " [".($i+1)."]"; + else + $out .= " ".($i+1).""; + } + } + else { + if($this->curr_page >= 4) + $out .= " ".__("First", "mingleforum")." << "; + for($i = 3; $i > 0; $i--) { + if((($this->curr_page + 1) - $i) > 0) + $out .= " ".(($this->curr_page + 1) - $i).""; + } + $out .= " [".($this->curr_page + 1)."]"; + for($i = 1; $i <= 3; $i++) { + if((($this->curr_page + 1) + $i) <= $num_pages) + $out .= " ".(($this->curr_page + 1) + $i).""; + } + if($num_pages - $this->curr_page >= 5) + $out .= " >> ".__("Last", "mingleforum").""; + } + return "".$out.""; + } + + function remove_topic(){ + global $user_ID, $wpdb; + $topic = $_GET['topic']; + if($this->is_moderator($user_ID, $this->current_forum)){ + $wpdb->query($wpdb->prepare("DELETE FROM {$this->t_posts} WHERE `parent_id` = %d", $topic)); + $wpdb->query($wpdb->prepare("DELETE FROM {$this->t_threads} WHERE `id` = %d", $topic)); + }else{ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + + function getNewForumID(){ + global $user_ID; + $topic = !empty($_GET['topic']) ? (int)$_GET['topic'] : 0; + $topic = !empty($_GET['t']) ? (int)$_GET['t'] : $topic; + if($this->is_moderator($user_ID, $this->current_forum)){ + $currentForumID = $this->check_parms($_GET['f']); + $strOUT = ' +
      + '.__("Move", "mingleforum").' "'.$this->get_subject($topic).'" '.__("to new forum:", "mingleforum").' + +
      '; + + return $strOUT; + }else{ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + + function move_getSubForums($frs, $cfid, $i=0) { + $out = ''; + foreach ($frs as $f) { + $lvl = ''; + for ($l=0;$l<$i;$l++) + $lvl.='-'; + $out .= ''; + $subfrs = $this->get_forums($f->id); + if (!empty($subfrs)) { + $out .= $this->move_getSubForums($subfrs, $cfid, ++$i); + $i--; + } + } + return $out; + } + + function move_topic(){ + global $user_ID, $wpdb; + $topic = $_GET['topic']; + $newForumID = !empty($_GET['newForumID']) ? (int)$_GET['newForumID'] : 0; + $newForumID = !empty($_POST['newForumID']) ? (int)$_POST['newForumID'] : $newForumID; + if($this->is_moderator($user_ID, $this->current_forum)){ + $strSQL = $wpdb->prepare("UPDATE {$this->t_threads} SET `parent_id` = {$newForumID} WHERE id = %d", $topic); + $wpdb->query($strSQL); + @header("location: ".$this->base_url."viewforum&f=".$newForumID); + @exit; + }else{ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + + function remove_post(){ + global $user_ID, $wpdb; + $id = (isset($_GET['id']) && is_numeric($_GET['id']))?$_GET['id']:0; + $author = $wpdb->get_var($wpdb->prepare("SELECT author_id, parent_id from {$this->t_posts} where id = %d"), $id); + + $del = "fail"; + if(current_user_can("administrator") || is_super_admin($user_ID)) + $del = "ok"; + if($this->is_moderator($user_ID, $this->current_forum)) + $del = "ok"; + if($user_ID == $author->author_id) + $del = "ok"; + + if($del == "ok"){ + $wpdb->query($wpdb->prepare("DELETE FROM {$this->t_posts} WHERE id = %d", $id)); + $nbmsg = $wpdb->get_var("SELECT COUNT(*) FROM {$this->t_posts} WHERE parent_id = {$author->parent_id}"); + if (!$nbmsg) + $wpdb->query("DELETE FROM {$this->t_threads} WHERE id = {$author->parent_id}"); + $this->o .= "
      ".__("Post deleted", "mingleforum")."
      "; + }else{ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + + function sticky_post(){ + global $user_ID, $wpdb; + if(current_user_can("administrator") || is_super_admin($user_ID)){ + if(!$this->is_moderator($user_ID, $this->current_forum)){ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + $id = (isset($_GET['id']) && is_numeric($_GET['id']))?$_GET['id']:0; + $status = $wpdb->get_var($wpdb->prepare("SELECT status FROM {$this->t_threads} WHERE id = %d", $id)); + + switch($status){ + case 'sticky': + $wpdb->query($wpdb->prepare("UPDATE {$this->t_threads} SET status = 'open' WHERE id = %d", $id)); + break; + case 'open': + $wpdb->query($wpdb->prepare("UPDATE {$this->t_threads} SET status = 'sticky' WHERE id = %d", $id)); + break; + } + } + + function forum_subscribe() + { + global $user_ID; + if(isset($_GET['forumsubs']) && $user_ID) + { + $useremail = $this->get_userdata($user_ID, 'user_email'); + if(!empty($useremail)) + { + $list = get_option("mf_forum_subscribers_".$this->current_forum, array()); + if($this->is_forum_subscribed()) //remove user if already exists (user clicked unsubscribe) + { + $key = array_search($useremail, $list); + unset($list[$key]); + } + else + $list[] = $useremail; + update_option("mf_forum_subscribers_".$this->current_forum, $list); + } + } + } + + function is_forum_subscribed() + { + global $user_ID; + if($user_ID) + { + $useremail = $this->get_userdata($user_ID, 'user_email'); + $list = get_option("mf_forum_subscribers_".$this->current_forum, array()); + if(in_array($useremail, $list)) + return true; + } + return false; + } + + function get_subscribed_forums() + { + global $user_ID, $wpdb; + $results = array(); + $email = $this->get_userdata($user_ID, 'user_email'); + $forums = $wpdb->get_results("SELECT id FROM {$this->t_forums}"); + if(!empty($forums)) + foreach($forums as $f) + { + $list = get_option("mf_forum_subscribers_".$f->id, array()); + if(in_array($email, $list)) + $results[] = $f->id; + } + return $results; + } + + function thread_subscribe() + { + global $user_ID; + if(isset($_GET['threadsubs']) && $user_ID) + { + $useremail = $this->get_userdata($user_ID, 'user_email'); + if(!empty($useremail)) + { + $list = get_option("mf_thread_subscribers_".$this->current_thread, array()); + if($this->is_thread_subscribed()) //remove user if already exists (user clicked unsubscribe) + { + $key = array_search($useremail, $list); + unset($list[$key]); + } + else + $list[] = $useremail; + update_option("mf_thread_subscribers_".$this->current_thread, $list); + } + } + } + + function is_thread_subscribed() + { + global $user_ID; + if($user_ID) + { + $useremail = $this->get_userdata($user_ID, 'user_email'); + $list = get_option("mf_thread_subscribers_".$this->current_thread, array()); + if(in_array($useremail, $list)) + return true; + } + return false; + } + + function get_subscribed_threads() + { + global $user_ID, $wpdb; + $results = array(); + $email = $this->get_userdata($user_ID, 'user_email'); + $threads = $wpdb->get_results("SELECT id FROM {$this->t_threads}"); + if(!empty($threads)) + foreach($threads as $t) + { + $list = get_option("mf_thread_subscribers_".$t->id, array()); + if(in_array($email, $list)) + $results[] = $t->id; + } + return $results; + } + + function is_sticky($thread_id = ''){ + global $wpdb; + if($thread_id){ + $id = $thread_id; + }else{ + $id = $this->current_thread; + } + $status = $wpdb->get_var("select status from $this->t_threads where id = $id"); + if($status == "sticky") + return true; + else + return false; + } + + function closed_post(){ + global $user_ID, $wpdb; + if(current_user_can("administrator") || is_super_admin($user_ID)){ + if(!$this->is_moderator($user_ID, $this->current_forum)){ + wp_die(__("An unknown error has occured. Please try again.", "mingleforum")); + } + } + $strSQL = "UPDATE {$this->t_threads} SET closed = %d WHERE id = %d"; + $wpdb->query($wpdb->prepare($strSQL, (int)$_GET['closed'], (int)$_GET['id'])); + } + + function is_closed($thread_id = ''){ + global $wpdb; + if($thread_id){ + $id = $thread_id; + }else{ + $id = $this->current_thread; + } + $strSQL = $wpdb->prepare("SELECT closed FROM {$this->t_threads} WHERE id = %d", $id); + $closed = $wpdb->get_var($strSQL); + if($closed){ + return true; + }else{ + return false; + } + } + + function allow_unreg(){ + if($this->opt['forum_require_registration'] == false) + return true; + return false; + } + + function profile_link($user_id, $toWrap = false){ + if($toWrap) + $user = wordwrap($this->get_userdata($user_id, $this->options['forum_display_name']), 10, "-
      ", 1); + else + $user = $this->get_userdata($user_id, $this->options['forum_display_name']); + $link = "$user"; + if($user == __("Guest", "mingleforum")) + return $user; + $user_op = get_user_meta($user_id, "wpf_useroptions", true); + if($user_op) + if($user_op['allow_profile'] == false) + return $user; + return $link; + } + + function footer(){ + $o = ""; + switch($this->current_view){ + case MAIN: + $o = apply_filters('mf_ad_above_info_center', ''); //Adsense Area -- Above Info Center + $o .= "
      "; + $o .= ""; + $o .= " + + + + + + + + +
      ".__("Info Center", "mingleforum")."
      + ".$this->num_posts_total()." ".__("Posts in", "mingleforum")." ".$this->num_threads_total()." ".__("Topics Made by", "mingleforum")." ".count($this->get_users())." ".__("Members", "mingleforum").". ".__("Latest Member:", "mingleforum")." ".$this->profile_link($this->latest_member())." +
      ".$this->get_lastpost_all()." +
      "; + $o .= "
      "; + break; + case FORUM: break; + case THREAD: break; + } + $this->o .= $o; + } + + function latest_member(){ + global $wpdb; + return $wpdb->get_var("select ID from $wpdb->users order by user_registered DESC limit 1"); + } + + function show_new(){ + $this->current_view = NEWTOPICS; + global $wpdb; + $this->header(); + $lastvisit = $this->last_visit(); + $threads = $wpdb->get_results("select distinct($this->t_threads.id) from $this->t_posts inner join $this->t_threads on $this->t_posts.parent_id = $this->t_threads.id where $this->t_posts.date > '$lastvisit' order by $this->t_posts.date desc"); + $o = "
      + + + + + + + + + + "; + foreach($threads as $thread){ + if($this->have_access($this->forum_get_group_from_post($thread->id))) + { + $starter_id = $wpdb->get_var("SELECT starter FROM $this->t_threads WHERE id = $thread->id"); + $o .= " + + + + + + "; + } + } + $o .= "
      ".__("New topics since your last visit", "mingleforum")."
      ".__("Status", "mingleforum")."".__("Topic Title", "mingleforum")."".__("Started by", "mingleforum")."".__("Replies", "mingleforum")."".__("Last post", "mingleforum")."
      ".$this->get_topic_image($thread->id)."" + .$this->output_filter($this->get_threadname($thread->id))." + ".$this->profile_link($starter_id)."".( $this->num_posts($thread->id) - 1 )."".$this->get_lastpost($thread->id)."
      "; + $this->o .= $o; + $this->footer(); + } + + function num_post_user($user){ + global $wpdb; + return $wpdb->get_var("SELECT count(author_id) FROM $this->t_posts WHERE author_id = $user"); + } + + function view_profile(){ + $this->current_view = PROFILE; + if(is_numeric($_GET['id'])) //Security fix to prevent SQL injections + $user_id = $_GET['id']; + else + $user_id = 0; + $user = get_userdata($user_id); + $this->header(); + $o = "
      + + + + + + + +
      ".__("Summary", "mingleforum")." - ".$this->get_userdata($user_id, $this->options['forum_display_name'])."
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      ".__("Name:", "mingleforum")."$user->first_name $user->last_name".$this->get_avatar($user_id, 60)."
      ".__("Registered:", "mingleforum")."".$this->format_date($user->user_registered)."
      ".__("Posts:", "mingleforum")."".$this->num_post_user($user_id)."
      ".__("Position:", "mingleforum")."".$this->get_userrole($user_id)."
      ".__("Website:", "mingleforum")."$user->user_url
      ".__("AIM:", "mingleforum")."$user->aim
      ".__("Yahoo:", "mingleforum")."$user->yim
      ".__("Jabber/google Talk:", "mingleforum")."$user->jabber
      ".__("Biographical Info:", "mingleforum")."".$this->output_filter(make_clickable(convert_smilies(wpautop($user->description))))."
      +
      "; + $this->o .= $o; + $this->footer(); + } + + function search_results(){ + global $wpdb; + $o = ""; + $this->current_view = SEARCH; + $this->header(); + $search_string = $wpdb->escape($_POST['search_words']); + $sql = "SELECT $this->t_posts.id, `text`, $this->t_posts.subject, $this->t_posts.parent_id, $this->t_posts.`date`, MATCH (`text`) AGAINST (' {$search_string}') AS score + FROM $this->t_posts JOIN $this->t_threads on $this->t_posts.parent_id = $this->t_threads.id + AND MATCH (`text`) AGAINST ('{$search_string}') + ORDER BY score DESC + LIMIT 30"; + $results = $wpdb->get_results($sql); + $max = 0; + foreach($results as $result) + if($result->score > $max) + $max = $result->score; + if($results) + $const = 100/$max; + $o .= " + + + + + + + "; + foreach($results as $result){ + if($this->have_access($this->forum_get_group_from_post($result->parent_id))){ + $starter = $wpdb->get_var("select starter from {$this->t_threads} where id = {$result->parent_id}"); + $o .= " + + + + + + "; + } + } + $o .= "
      Status".__("Subject", "mingleforum")."".__("Relevance", "mingleforum")."".__("Started by", "mingleforum")."".__("Posted", "mingleforum")."
      ".$this->get_topic_image($result->parent_id)."".stripslashes($result->subject)." + ".round($result->score*$const, 1)."%".$this->profile_link($starter)."".$this->format_date($result->date)."
      "; + $this->o .= $o; + $this->footer(); + } + + function ext_str_ireplace($findme, $replacewith, $subject){ + return substr($subject, 0, stripos($subject, $findme)). + str_replace('$1', substr($subject, stripos($subject, $findme), strlen($findme)), $replacewith). + substr($subject, stripos($subject, $findme)+strlen($findme)); + } + + function cuttext($value, $length){ + if(is_array($value)) list($string, $match_to) = $value; + else { $string = $value; $match_to = $value{0}; } + $match_start = stristr($string, $match_to); + $match_compute = strlen($string) - strlen($match_start); + if (strlen($string) > $length) + { + if ($match_compute < ($length - strlen($match_to))) + { + $pre_string = substr($string, 0, $length); + $pos_end = strrpos($pre_string, " "); + if($pos_end === false) $string = $pre_string."..."; + else $string = substr($pre_string, 0, $pos_end)."..."; + } + else if ($match_compute > (strlen($string) - ($length - strlen($match_to)))) + { + $pre_string = substr($string, (strlen($string) - ($length - strlen($match_to)))); + $pos_start = strpos($pre_string, " "); + $string = "...".substr($pre_string, $pos_start); + if($pos_start === false) $string = "...".$pre_string; + else $string = "...".substr($pre_string, $pos_start); + } + else + { + $pre_string = substr($string, ($match_compute - round(($length / 3))), $length); + $pos_start = strpos($pre_string, " "); $pos_end = strrpos($pre_string, " "); + $string = "...".substr($pre_string, $pos_start, $pos_end)."..."; + if($pos_start === false && $pos_end === false) $string = "...".$pre_string."..."; + else $string = "...".substr($pre_string, $pos_start, $pos_end)."..."; + } + $match_start = stristr($string, $match_to); + $match_compute = strlen($string) - strlen($match_start); + } + return $string; + } + + function get_topic_image($thread){ + $post_count = $this->num_posts($thread); + if($this->is_closed($thread)){ + return "".__("Closed topic", "mingleforum").""; + } + if($post_count < $this->opt['hot_topic']){ + return "".__("Normal topic", "mingleforum").""; + } + if($post_count >= $this->opt['hot_topic'] && $post_count < $this->opt['veryhot_topic']){ + return "".__("Hot topic", "mingleforum").""; + } + if($post_count >= $this->opt['veryhot_topic']){ + return "".__("Very Hot topic", "mingleforum").""; + } + } + + function get_topic_image_two($thread){ + $post_count = $this->num_posts($thread); + if($this->is_closed($thread)){ + return "closed.gif"; + } + if($post_count < $this->opt['hot_topic']){ + return "normal_post.gif"; + } + if($post_count >= $this->opt['hot_topic'] && $post_count < $this->opt['veryhot_topic']){ + return "hot_post.gif"; + } + if($post_count >= $this->opt['veryhot_topic']){ + return "my_hot_post.gif"; + } + } + + function get_captcha(){ + global $user_ID; + $out = ""; + if(!$user_ID && $this->opt['forum_captcha']) + { + include_once(WPFPATH."captcha/shared.php"); + include_once(WPFPATH."captcha/captcha_code.php"); + $wpf_captcha = new CaptchaCode(); + $wpf_code = wpf_str_encrypt($wpf_captcha->generateCode(6)); + $out .= " + + + ".__("Security Code:", "mingleforum")." + "; + } + return $out; + } + + function get_quick_reply_captcha(){ + global $user_ID; + $out = ""; + $out .= apply_filters('wpwf_quick_form_guestinfo',"");//--weaver-- show the guest info form + if(!$user_ID && $this->opt['forum_captcha']) + { + include_once(WPFPATH."captcha/shared.php"); + include_once(WPFPATH."captcha/captcha_code.php"); + $wpf_captcha = new CaptchaCode(); + $wpf_code = wpf_str_encrypt($wpf_captcha->generateCode(6)); + $out .= " + + +
      + ".__("Enter Security Code: (required)", "mingleforum") + ." + "; + } + return $out; + } + + function notify_thread_subscribers($thread_id, $subject, $content, $date) + { + global $user_ID; + $submitter_name = (!$user_ID)?"Guest":$this->get_userdata($user_ID, $this->options['forum_display_name']); + $submitter_email = (!$user_ID)?"guest@nosite.com":$this->get_userdata($user_ID, 'user_email'); + $sender = get_bloginfo("name"); + $to = get_option("mf_thread_subscribers_".$thread_id, array()); + $subject = __("Forum post - ", "mingleforum").$subject; + $message = __("DETAILS:", "mingleforum")."

      ". + __("Name:", "mingleforum")." ".$submitter_name."
      ". + __("Email:", "mingleforum")." ".$submitter_email."
      ". + __("Date:", "mingleforum")." ".$this->format_date($date)."
      ". + __("Reply Content:", "mingleforum")."
      ".$content."

      ". + __("View Post Here:", "mingleforum")." ".$this->get_threadlink($thread_id); + $headers = "MIME-Version: 1.0\r\n". + "From: ".$sender." "."<".get_bloginfo("admin_email").">\r\n". + "Content-Type: text/HTML; charset=\"".get_option('blog_charset')."\"\r\n". + "BCC: ".implode(",", $to)."\r\n"; + if(!empty($to)) + wp_mail("", $subject, make_clickable(convert_smilies(wpautop($this->output_filter(stripslashes($message))))), $headers); + } + + function notify_forum_subscribers($thread_id, $subject, $content, $date, $forum_id) + { + global $user_ID; + $submitter_name = (!$user_ID)?"Guest":$this->get_userdata($user_ID, $this->options['forum_display_name']); + $submitter_email = (!$user_ID)?"guest@nosite.com":$this->get_userdata($user_ID, 'user_email'); + $sender = get_bloginfo("name"); + $to = get_option("mf_forum_subscribers_".$forum_id, array()); + $subject = __("Forum post - ", "mingleforum").$subject; + $message = __("DETAILS:", "mingleforum")."

      ". + __("Name:", "mingleforum")." ".$submitter_name."
      ". + __("Email:", "mingleforum")." ".$submitter_email."
      ". + __("Date:", "mingleforum")." ".$this->format_date($date)."
      ". + __("Reply Content:", "mingleforum")."
      ".$content."

      ". + __("View Post Here:", "mingleforum")." ".$this->get_threadlink($thread_id); + $headers = "MIME-Version: 1.0\r\n". + "From: ".$sender." "."<".get_bloginfo("admin_email").">\r\n". + "Content-Type: text/HTML; charset=\"".get_option('blog_charset')."\"\r\n". + "BCC: ".implode(",", $to)."\r\n"; + if(!empty($to)) + wp_mail("", $subject, make_clickable(convert_smilies(wpautop($this->output_filter(stripslashes($message))))), $headers); + } + + function notify_admins($thread_id, $subject, $content, $date) + { + global $user_ID; + $submitter_name = (!$user_ID)?"Guest":$this->get_userdata($user_ID, $this->options['forum_display_name']); + $submitter_email = (!$user_ID)?"guest@nosite.com":$this->get_userdata($user_ID, 'user_email'); + $sender = get_bloginfo("name"); + $to = get_bloginfo("admin_email"); + $subject = __("New Forum content - ", "mingleforum").$subject; + $message = __("DETAILS:", "mingleforum")."

      ". + __("Name:", "mingleforum")." ".$submitter_name."
      ". + __("Email:", "mingleforum")." ".$submitter_email."
      ". + __("Date:", "mingleforum")." ".$this->format_date($date)."
      ". + __("Reply Content:", "mingleforum")."
      ".$content."

      ". + __("View Post Here:", "mingleforum")." ".$this->get_threadlink($thread_id); + $headers = "MIME-Version: 1.0\r\n". + "From: ".$sender." "."<".$to.">\n". + "Content-Type: text/HTML; charset=\"".get_option('blog_charset')."\"\r\n"; + if($this->options['notify_admin_on_new_posts']) + if(!empty($to)) + wp_mail($to, $subject, make_clickable(convert_smilies(wpautop($this->output_filter(stripslashes($message))))), $headers); + } + + function autoembed($string) + { + global $wp_embed; + if (is_object($wp_embed)) + return $wp_embed->autoembed($string); + else + return $string; + } + + function rewriting_on() + { + $permalink_structure = get_option('permalink_structure'); + return ($permalink_structure and !empty($permalink_structure)); + } + + function get_mingle_version() + { + $plugin_data = implode('', file(ABSPATH."wp-content/plugins/mingle/mingle.php")); + $version = ''; + if (preg_match("|Version:(.*)|i", $plugin_data, $version)) + $version = $version[1]; + return (string)$version; + } + function convert_version_to_int($version) + { + $result = str_replace(".", "", $version); + return (int)$result; + } + + function admin_get_pages() + { + global $wpdb; + + $query = "SELECT * FROM {$wpdb->posts} WHERE post_status = 'publish' AND post_type = 'page'"; + + $results = $wpdb->get_results( $query ); + + if($results) + return $results; + else + return array(); + } + + //SEO Friendly URL stuff -- Pain in the @$$! -- But I am the bomb.com + function get_seo_friendly_query() + { + $end = array(); + $request_uri = $_SERVER['REQUEST_URI']; + $link = str_replace(site_url(), '', get_permalink($this->get_pageid())); + $uri = explode('/', trim(str_replace($link, '', $request_uri), '/')); + if (array_count_values($uri)) + { + $m = end($uri); + $found = ''; + preg_match("/.*-(group|forum|thread)(\d*(\.?\d+)?)$/", $m, $found); + } + if (!empty($found)) + { + $end = array('action' => $found[1], 'id' => $found[2]); + } + return $end; + } + + function get_seo_friendly_title($str, $replace=array()) + { + if(!empty($replace)) //Currently not used + { + $str = str_replace((array)$replace, ' ', $str); + } + if(function_exists('ctl_sanitize_title')) //perfect for crillic languages + return ctl_sanitize_title($str); + + return sanitize_title_with_dashes($str); //Seems to work for most other languages + } + + function flush_wp_rewrite_rules() + { + global $wp_rewrite; + $wp_rewrite->flush_rules(); + } + + function set_seo_friendly_rules($args) + { + $new = array(); + $link = trim(str_replace(array(site_url(), 'index.php/'), '', get_permalink($this->get_pageid())), '/'); + $new['('.$link.')(/[-/0-9a-zA-Z]+)?/(.*)$'] = 'index.php?pagename=$matches[1]&page=$matches[2]'; + return $new + $args; + } + + //Add a dynamic sitemap for the forum posts + function do_sitemap() + { + $priority = "0.8"; + $freq = "daily"; + $threads = $this->get_threads(false); + $ind = " "; + $nl = "\n"; + + if(!empty($threads)) + { + $out = "".$nl."".$nl; + foreach($threads as $t) + { + $time = explode(' ', $t->last_post, 2); + $time = explode('-', $time[0], 3); + $out .= $ind."".$nl.$ind.$ind."".$this->clean_link($this->get_threadlink($t->id))."".$nl.$ind.$ind."".date_i18n('Y-m-d', mktime(0, 0, 0, $time[1], $time[2], $time[0]))."".$nl.$ind.$ind."".$freq."".$nl.$ind.$ind."".$priority."".$nl.$ind."".$nl; + } + $out .= ""; + } + echo $out; + } + + function clean_link($l) + { + $l = str_replace('&', '&', $l); + return $l; + } + + //Filter function for ads + function mf_ad_above_forum() + { + if($this->ads_options['mf_ad_above_forum_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_above_forum'])."

      "; + else + $str = ''; + return $str; + } + + function mf_ad_below_forum() + { + if($this->ads_options['mf_ad_below_forum_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_below_forum'])."
      "; + else + $str = ''; + return $str; + } + + function mf_ad_above_branding() + { + if($this->ads_options['mf_ad_above_branding_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_above_branding'])."

      "; + else + $str = ''; + return $str; + } + + function mf_ad_above_info_center() + { + if($this->ads_options['mf_ad_above_info_center_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_above_info_center'])."

      "; + else + $str = ''; + return $str; + } + + function mf_ad_above_quick_reply() + { + if($this->ads_options['mf_ad_above_quick_reply_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_above_quick_reply'])."
      "; + else + $str = ''; + return $str; + } + + function mf_ad_above_breadcrumbs() + { + if($this->ads_options['mf_ad_above_breadcrumbs_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_above_breadcrumbs'])."
      "; + else + $str = ''; + return $str; + } + + function mf_ad_below_first_post() + { + if($this->ads_options['mf_ad_below_first_post_on']) + $str = "
      ".stripslashes($this->ads_options['mf_ad_below_first_post'])."
      "; + else + $str = ''; + return $str; + } + + //Integrate WP Posts with the Forum + function send_wp_posts_to_forum() + { + add_meta_box('mf_posts_to_forum', __('Mingle Forum Post Options', 'mingleforum'), array(&$this, 'show_meta_box_options'), 'post'); + } + + function show_meta_box_options() + { + $forums = $this->get_forums(); + echo ' '.__('Add this post to', 'mingleforum'); + echo ' 
      '.__('Do not check this if this post has already been linked to the forum!', 'mingleforum').''; + } + + function saving_posts($post_id) + { + global $wpdb, $user_ID; + $this->setup_links(); + + if(defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) + return; + + if('post' == $_POST['post_type']) + { + if(!current_user_can('edit_post', $post_id)) + return; + } + else + return; + + $mydata = ($_POST['mf_post_to_forum'] == 'true')?true:false; + + if($mydata) + { + $date = $this->wpf_current_time_fixed('mysql', 0); + $fid = (int)$_POST['mf_post_to_forum_forum']; + $_POST['mf_post_to_forum'] = 'false'; //Eternal loop if this isn't set to false + $post = get_post($post_id); + $sql_thread = "INSERT INTO {$this->t_threads} (last_post, subject, parent_id, `date`, status, starter) VALUES('{$date}', '".$this->strip_single_quote($post->post_title)."', '{$fid}', '{$date}', 'open', '{$user_ID}')"; + $wpdb->query($sql_thread); + $tid = $wpdb->insert_id; + $sql_post = "INSERT INTO {$this->t_posts} (text, parent_id, `date`, author_id, subject) VALUES('".$this->input_filter($wpdb->escape($post->post_content))."', '{$tid}', '{$date}', '{$user_ID}', '".$this->strip_single_quote($post->post_title)."')"; + $wpdb->query($sql_post); + $new = $post->post_content."\n".'

      '.__("Join the Forum discussion on this post", "mingleforum").'

      '; + $post->post_content = $new; + wp_update_post($post); + } + } + + function strip_single_quote($string) + { + $Find = array("'", "\\"); + $Replace = array("", ""); + $newStr = str_replace($Find, $Replace, $string); + return $newStr; + } + +} // End class +} // End +?> \ No newline at end of file diff --git a/wpf_admin.css b/wpf_admin.css new file mode 100644 index 0000000..385080d --- /dev/null +++ b/wpf_admin.css @@ -0,0 +1,50 @@ +#wpf-menu li +{ +display: inline; +list-style-type: none; +text-align: center; +margin-right: 15px; +} + +#wpf-menu +{ +margin-top: 20px; +padding: 0; +} + +#wpf-menu li.current +{ + border-bottom: 0px; +} + +#wpf-menu li a{ + border: none; + text-decoration: none; +} + +#wpf-menu li.current a{ + color: #d54e21; +} + +table.wpf-wide{ + width: 100%; + border: none; +} + +table.wpf-wide tr{ + border: none; +} +table.wpf-wide td{ + border: none; + vertical-align: top; +} + +p.wpf-indent{ + padding-left: 10px; +} +p.wpf-alignright{ + text-align: right; +} +p.wpf-bordertop{ + border-top: 1px solid #ccc; padding-top:5px; +} diff --git a/wpf_define.php b/wpf_define.php new file mode 100644 index 0000000..192d356 --- /dev/null +++ b/wpf_define.php @@ -0,0 +1,36 @@ +