diff --git a/bin/news_updater.php b/bin/news_updater.php deleted file mode 100644 index 6ca8b7fb9..000000000 --- a/bin/news_updater.php +++ /dev/null @@ -1,196 +0,0 @@ -<?php -/** - * SeekQuarry/Yioop -- - * Open Source Pure PHP Search Engine, Crawler, and Indexer - * - * Copyright (C) 2009 - 2015 Chris Pollett chris@pollett.org - * - * LICENSE: - * - * 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 3 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, see <http://www.gnu.org/licenses/>. - * - * END LICENSE - * - * @author Chris Pollett chris@pollett.org - * @package seek_quarry - * @subpackage bin - * @license http://www.gnu.org/licenses/ GPL3 - * @link http://www.seekquarry.com/ - * @copyright 2009 - 2015 - * @filesource - */ -if(php_sapi_name() != 'cli') {echo "BAD REQUEST"; exit();} -/** - * Calculate base directory of script - * @ignore - */ -define("BASE_DIR", substr( - dirname(realpath($_SERVER['PHP_SELF'])), 0, - -strlen("/bin"))); -ini_set("memory_limit", "1300M"); -/** Load in global configuration settings */ -require_once BASE_DIR.'/configs/config.php'; -if(!PROFILE) { - echo "Please configure the search engine instance by visiting" . - "its web interface on localhost.\n"; - exit(); -} -/** CRAWLING means don't try to use memcache - * @ignore - */ -define("NO_CACHE", true); -/** We do want logging, but crawl model and other will try to turn off - * if we don't set this - */ -define("NO_LOGGING", false); -/** - * Shortest time through one iteration of news updater's loop - */ -define("MINIMUM_UPDATE_LOOP_TIME", 10); -/** for crawlDaemon function */ -require_once BASE_DIR."/lib/crawl_daemon.php"; - -/** To guess language based on page encoding */ -require_once BASE_DIR."/lib/locale_functions.php"; - -/** Loads common constants for web crawling*/ -require_once BASE_DIR."/lib/crawl_constants.php"; - -/**Load base model class used by source model */ -require_once BASE_DIR."/models/model.php"; - -/** Source model is used to manage news feed ites*/ -if(file_exists(APP_DIR."/models/source_model.php")) { - require_once APP_DIR."/models/source_model.php"; -} else { - require_once BASE_DIR."/models/source_model.php"; -} -/* - * We'll set up multi-byte string handling to use UTF-8 - */ -mb_internal_encoding("UTF-8"); -mb_regex_encoding("UTF-8"); -if (function_exists('lcfirst') === false) { - /** - * Lower cases the first letter in a string - * - * This function is only defined if the PHP version is before 5.3 - * @param string $str string to be lower cased - * @return string the lower cased string - */ - function lcfirst( $str ) - { - return (string)(strtolower(substr($str, 0, 1)).substr($str, 1)); - } -} -/** - * Separate process/command-line script which can be used to update - * news sources for Yioop. This is as an alternative to using the web app - * for updating. Makes use of the web-apps code. - * - * @author Chris Pollett - * @package seek_quarry - */ -class NewsUpdater implements CrawlConstants -{ - /** - * The last time feeds were checked for updates - * @var int - */ - var $update_time; - /** - * Sets up the field variables so that newsupdating can begin - */ - function __construct() - { - $this->delete_time = 0; - $this->retry_time = 0; - $this->update_time = 0; - } - /** - * This is the function that should be called to get the newsupdater to - * start to start updating. Calls init to handle the command-line - * arguments then enters news_updaters main loop - */ - function start() - { - global $argv; - CrawlDaemon::init($argv, "news_updater"); - crawlLog("\n\nInitialize logger..", "news_updater", true); - $this->sourceModel = new SourceModel(); - $this->loop(); - } - - /** - * Main loop for the news updater. - */ - function loop() - { - crawlLog("In News Update Loop"); - $info[self::STATUS] = self::CONTINUE_STATE; - $local_archives = array(""); - while (CrawlDaemon::processHandler()) { - $start_time = microtime(); - crawlLog("Checking if news feeds should be updated..."); - $this->newsUpdate(); - $sleep_time = max(0, ceil( - MINIMUM_UPDATE_LOOP_TIME - changeInMicrotime($start_time))); - if($sleep_time > 0) { - crawlLog("Ensure minimum loop time by sleeping...".$sleep_time); - sleep($sleep_time); - } - } //end while - crawlLog("News Updater shutting down!!"); - } - /** - * If news_update time has passed, then updates news feeds associated with - * this Yioop instance - * - * @param array $data used by view to render itself. In this case, if there - * is a problem updating the news then we will flash a message - * @param bool $no_news_process if true than assume news_updater.php is - * not running. If false, assume being run from news_updater.php so - * update news_process cron time. - */ - function newsUpdate() - { - $time = time(); - $something_updated = false; - $delta = $time - $this->update_time; - // every hour get items from feeds - if($delta > ONE_HOUR) { - $this->update_time = $time; - crawlLog("Performing news feeds update"); - $this->sourceModel->updateFeedItems( ONE_WEEK); - $something_updated = true; - } - /* - if anything changed rebuild shard - */ - if($something_updated) { - crawlLog("Deleting feed items and rebuild shard..."); - $this->sourceModel->rebuildFeedShard(ONE_WEEK); - crawlLog("... delete complete, shard rebuilt"); - } else { - crawlLog("No updates needed."); - } - } -} -/* - * Instantiate and runs the NewsUpdater program - */ -$news_updater = new NewsUpdater(); -$news_updater->start(); - -?> diff --git a/controllers/admin_controller.php b/controllers/admin_controller.php index cac9f45a3..cf62e5de4 100755 --- a/controllers/admin_controller.php +++ b/controllers/admin_controller.php @@ -41,7 +41,7 @@ require_once BASE_DIR."/lib/url_parser.php"; require_once BASE_DIR."/lib/page_rule_parser.php"; /** Used to create, update, and delete user-trained classifiers. */ require_once BASE_DIR."/lib/classifiers/classifier.php"; -/** Loads crawl_daemon to manage news_updater */ +/** Loads crawl_daemon to manage media_updater */ require_once BASE_DIR."/lib/crawl_daemon.php"; /** * Controller used to handle admin functionalities such as @@ -413,12 +413,12 @@ class AdminController extends Controller implements CrawlConstants $this->pagingLogic($data, $this->model("machine"), 'MACHINES', DEFAULT_ADMIN_PAGING_NUM); $profile = $this->model("profile")->getProfile(WORK_DIRECTORY); - $data['NEWS_MODE'] = isset($profile['NEWS_MODE']) ? - $profile['NEWS_MODE']: ""; - if($data['NEWS_MODE'] == "news_process" && - $data['MACHINES']['NAME_SERVER']["news_updater"] == 0) { + $data['MEDIA_MODE'] = isset($profile['MEDIA_MODE']) ? + $profile['MEDIA_MODE']: ""; + if($data['MEDIA_MODE'] == "media_process" && + $data['MACHINES']['NAME_SERVER']["media_updater"] == 0) { // try to restart news server if dead - CrawlDaemon::start("news_updater", 'none', "", -1); + CrawlDaemon::start("media_updater", 'none', "", -1); } return $data; } diff --git a/controllers/components/social_component.php b/controllers/components/social_component.php index 8a5c77a48..075359baf 100644 --- a/controllers/components/social_component.php +++ b/controllers/components/social_component.php @@ -2007,9 +2007,9 @@ EOD; $this->initializeWikiEditor($data); } } - /** Check if back params need to be set. Set them if required. - * the back params are usually sent when the wiki action is initiated - * from within an open help article. + /* Check if back params need to be set. Set them if required. + the back params are usually sent when the wiki action is initiated + from within an open help article. */ $data["OTHER_BACK_URL"] = ""; if(isset($_REQUEST['back_params']) && diff --git a/controllers/components/system_component.php b/controllers/components/system_component.php index ca8c66f5c..50747a8d0 100755 --- a/controllers/components/system_component.php +++ b/controllers/components/system_component.php @@ -64,7 +64,7 @@ class SystemComponent extends Component $data = array(); $data["ELEMENT"] = "managemachines"; $possible_arguments = array("addmachine", "deletemachine", - "newsmode", "log", "update"); + "mediamode", "log", "update"); $data['SCRIPT'] = "doUpdate();"; $data["leftorright"]=(getLocaleDirection() == 'ltr') ? "right": "left"; $data['MACHINE_NAMES'] = array(); @@ -197,30 +197,31 @@ class SystemComponent extends Component } break; - case "newsmode": + case "mediamode": $profile = $profile_model->getProfile( WORK_DIRECTORY); - $news_modes = array("news_off", "news_web", "news_process"); - if(isset($_REQUEST['news_mode']) && in_array( - $_REQUEST['news_mode'], $news_modes)) { - $profile["NEWS_MODE"] = $_REQUEST['news_mode']; - if($profile["NEWS_MODE"] != "news_process") { - CrawlDaemon::stop("news_updater", "", false); + $media_modes = + array("media_off", "media_web", "media_process"); + if(isset($_REQUEST['media_mode']) && in_array( + $_REQUEST['media_mode'], $media_modes)) { + $profile["MEDIA_MODE"] = $_REQUEST['media_mode']; + if($profile["MEDIA_MODE"] != "media_process") { + CrawlDaemon::stop("media_updater", "", false); $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >". - tl('system_component_news_mode_updated'). + tl('system_component_media_mode_updated'). "</h1>');"; } else { - CrawlDaemon::start("news_updater", 'none', "", + CrawlDaemon::start("media_updater", 'none', "", -1); $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >". - tl('system_component_news_mode_updated'). + tl('system_component_media_mode_updated'). "</h1>');"; } $profile_model->updateProfile( WORK_DIRECTORY, array(), $profile); } else { $data['SCRIPT'] .= "doMessage('<h1 class=\"red\" >". - tl('system_component_news_update_failed'). + tl('system_component_media_update_failed'). "</h1>');"; } break; @@ -268,8 +269,8 @@ class SystemComponent extends Component $r["mirror_name"], NULL, $filter, true); } else if(isset($r['name'])) { $data["LOG_TYPE"] = $r['name']." queue_server"; - if($r['name'] == "news") { - $data["LOG_TYPE"] = "Name Server News Updater"; + if($r['name'] == "media") { + $data["LOG_TYPE"] = "Name Server Media Updater"; } $data["LOG_FILE_DATA"] = $machine_model->getLog( $r["name"], NULL, $filter); diff --git a/controllers/machine_controller.php b/controllers/machine_controller.php index 826e49c91..97aeb92eb 100644 --- a/controllers/machine_controller.php +++ b/controllers/machine_controller.php @@ -139,8 +139,8 @@ class MachineController extends Controller implements CrawlConstants $log_file_name = LOG_DIR . "/{$fetcher_num}-fetcher.log"; } else if(isset($_REQUEST["mirror"])) { $log_file_name = LOG_DIR . "/mirror.log"; - } else if(isset($_REQUEST["news"])) { - $log_file_name = LOG_DIR . "/news_updater.log"; + } else if(isset($_REQUEST["media"])) { + $log_file_name = LOG_DIR . "/media_updater.log"; } else { $log_file_name = LOG_DIR . "/queue_server.log"; } diff --git a/locale/ar/configure.ini b/locale/ar/configure.ini index 7a0030698..4b09cf6f5 100755 --- a/locale/ar/configure.ini +++ b/locale/ar/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "حدد تتبع الارتباطات" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "تتبع الارتباطات الافتراضية" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "حدد تتبع الارتباطات" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "تتبع الارتباطات الافتراضية" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "الزحف ميكس إنشاؤها!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "الزحف ميكس حذف!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "ميكسحذف لاتوجد لا!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "إضافة عمليات تتبع الارتباطات" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "عدد من النتائج" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "الوزن" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "إجراءات" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "إضافة استعلام" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "الزحف ميكس التغييرات المحفوظة!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "الجهاز قيد الاستخدام. ; system_component.php line: 195 system_component_machine_deleted = "حذف آلة!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "لا يوجد ملف السجل وجدت." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "آلة #039;s Servers Updated!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "غير قادر على تنفيذ الإجراء!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "وأضاف لغة!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "الإعدادات المحلية غير موجود!" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "حذف الإعدادات المحلية" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "الإعدادات المحلية غير موجود!" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "سلاسل لغة تحديث!" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "مشكلة في تحديث قاعدة البيانات!" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "تحديث الشخصية!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "يجب استخدام مسار مطلق لدليل العمل" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "تعيين دليل العمل! قد تحتاج إلى إعادة تسجيل الدخول! " ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "الرجاء تسمية الروبوت الخاص بك" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "يعمل الدليل والشخصية التي تم إنشاؤها!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "تعذر التحديث config.php الملف!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "غير قادر على إنشاء الشخصية!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "دليل العمل هو صالح! لا يمكن إنشاء الشخصية! " ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "دليل العمل هو صالح! لا يمكن إنشاء الشخصية! " ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "تحديث الشخصية!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "كان هناك ملفتعريف تحديث المشكلة!" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "يرجى وصف الروبوت الخاص بك" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "بي إتش بي الإصدار 5.3 أو أحدث" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "configs/config.php ليس ملقم ويب للكتابة." ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "دليل العمل يجب أن يكون قابل للكتابة من قبل ملقم ويب." ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "pnp.ini ملف post_max_size متغيرينبغي أن يكون مالا يقل عن 32 م" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "مطلوب ما يلي العناصر في عداد المفقودين: %s" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "كانت العناصر الاختيارية التالية مفقودة: %s" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "تمرير الاختيار." ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "استخدام configs/local_config.php حتى تغيير دليل العمل أعلاه قد لا تعمل." ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "لا توجد آلات المراقبة" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "سجل" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "المرايا" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "سجل" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "قائمة انتظار الملقم" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "سجل" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "آلة قد لا يوجد ملقم قائمة انتظار" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "آلة قد لا فيتشيرس" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "فيتشيرس" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "سجل" ; ; nocache_view.php line: 57 diff --git a/locale/bn/configure.ini b/locale/bn/configure.ini index 423fb75d6..4be1c3387 100755 --- a/locale/bn/configure.ini +++ b/locale/bn/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/de/configure.ini b/locale/de/configure.ini index d929660a8..66dc02326 100755 --- a/locale/de/configure.ini +++ b/locale/de/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/en-US/configure.ini b/locale/en-US/configure.ini index 3736920f7..c17da6935 100755 --- a/locale/en-US/configure.ini +++ b/locale/en-US/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "%s joined %s!" ; social_component.php line: 791 social_component_join_group_detail = "On %s, you joined the group %s." ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "Upload Error!" +; +; social_component.php line: 819 social_component_thread_notification = "New Post to Thread: %s" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "We thought you would be interested in a new post to the thread:" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "Best regards," ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "Yioop Software" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "Dear %s," ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "Comment Added!" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "Cannot add selected group!" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "Error Deleting Item" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "Item Deleted!" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "No Item Deleted!" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "Voting Error!" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "No vote access to that post! " ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "Cannot post to that group!" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "Already Voted!" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "Vote Recorded!" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "Error in comment data!" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "Need both title and description!" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "Cannot post to that group!" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "Upload Error!" +; +; social_component.php line: 939 social_component_new_thread_mail = "New Thread in Group %s" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "As the owner of %s we thought you would like to know of the following thread recently created in your group:" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "Best regards," ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "Yioop Software" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "Dear %s," ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "Thread Created!" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "Error in comment data!" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "Need both title and description!" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "Post was just edited elsewhere (another tab?)" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "Cannot Update Post!" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "Cannot Update Post!" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "Upload Error!" +; +; social_component.php line: 1010 social_component_post_updated = "Post Updated!" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "Voting Error!" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "No vote access to that post! " ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "Cannot post to that group!" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "Already Voted!" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "Vote Recorded!" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "%s joined %s!" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "On %s, you joined the group %s." ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "No Posts Yet" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "Search" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "Not a member or can't read that group. Switching to public group!" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "Not a member or can't read that group. Switching to public group!" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "Standard" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "Page Alias" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "Media List" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "Presentation" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "Solid" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "Dashed" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "None" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "Missing Fields!" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "%s Wiki Page Created!" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "Discuss the page in this thread!" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "Page Saved!" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "Resource Deleted!" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "Resource Not Deleted! " ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "Resource Renamed!" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "Resource not Renamed!" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "Need to Save Page Before Using Resources!" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "%s Wiki Page Created!" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "Discuss the page in this thread!" +; +; social_component.php line: 1667 social_component_resource_uploaded = "Resource Uploaded!" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "Upload Error!" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "Back" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "Historical Version of %s from %s." ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "Back" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "%s line differences between %s and %s." ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "Wiki Page Has Been Edited Since Your Version. Loading Changed Version!" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "Revert to %s." ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "Page Reverted!" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "Error Reverting Page!" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "Main" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "Small" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "Medium" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "Large" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "Size" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "Header row:" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "Example" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "Table Title" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "Submit" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "Cancel" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "Bold text" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "Italic text" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "Underlined text" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "Striked text" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "Heading" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "Level 1 Heading" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "Level 2 Heading" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "Level 3 Heading" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "Level 4 Heading" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "Unordered list item" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "Ordered list item" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "Insert non-formatted text here" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "Add Search Bar Form" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "Size" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "Add Wiki Table" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "Column Count:" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "Row Count:" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "Add Hyperlink" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "Text:" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "URL:" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "Search Placeholder Text" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "This text is centered." ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "This text is right-aligned." ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "This text is left-aligned." ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "Item" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "Definition" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "Title" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "Slide Item" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "Resource Description for " ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "Select Crawl" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "Default Crawl" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "Select Crawl" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "Default Crawl" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "Crawl Mix Created!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "Mix Name in Use or Invalid!" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "Invalid Timestamp!" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "Crawl Mix Deleted!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "Mix to Delete Does not Exist!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "Mix Successfully Imported!" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "Setting Crawl To Use as Index" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "Error in comment data!" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "Shared Mix Has An Invalid Timestamp" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "Cannot post to that group!" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "Try out this crawl mix!" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "%s is sharing the crawl mix %s!" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "Thread Created!" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "Invalid Timestamp!" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "Not Mix Owner!" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "Add Crawls" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "Results Shown" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "Remove" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "Weight" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "Name" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "Keywords" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "Actions" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "Add Query" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "Delete" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "Too Many Search Result Fragments!" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "Crawl Mix Changes Saved!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "Machine in use. Please stop the service r ; system_component.php line: 195 system_component_machine_deleted = "Machine Deleted!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "News Update Mode Changed!" +; system_component.php line: 210 +system_component_media_mode_updated = "Media Update Mode Changed!" ; -; system_component.php line: 215 -system_component_news_mode_updated = "News Update Mode Changed!" +; system_component.php line: 216 +system_component_media_mode_updated = "Media Update Mode Changed!" ; -; system_component.php line: 222 -system_component_news_update_failed = "News Update Mode Change Failed!" +; system_component.php line: 223 +system_component_media_update_failed = "Media Update Mode Change Failed!" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "No Log File Found." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "Machine's Servers Updated!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "Unable to Perform Action!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "Select Mode" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "Field values missing or invalid!" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "Locale Added!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "Locale Does Not Exist!" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "Locale Deleted" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "Locale Does Not Exist!" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "Locale Information Updated!" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "Locale Strings Updated!" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "All Strings" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "Missing Strings" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "Problem Updating Database!" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "Profile Updated!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "There was a Problem Updating Profile!" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "Disable Registration" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "No Activation" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "Email Activation" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "Admin Activation" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "Text Captcha" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "Hash Captcha" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "Image Captcha" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "Normal Authentication" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "ZKP Authentication" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "Normal Authentication" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "Settings Updated!" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "No Settings Were Changed!" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "Must use an Absolute path for Work Directory" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "Work Directory cannot be contained in Yioop folder!" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "Work Directory Set! You may need to re-login!" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "Please Name Your robot" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "Working Directory and Profile Created!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "Unable to Update config.php File!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "Unable to Create Profile!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "Work Directory is Invalid! Cannot Create Profile!" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "No Resource Folder!" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "Invalid File Type!" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "File Too Big!" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "Profile Updated!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "There was a Problem Updating Profile!" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "Reset Completed" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "There was a Problem Updating Profile!" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "Please Describe Your Robot" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP Version 5.3 or Newer" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "configs/config.php not web server writable." ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "Work directory needs to be writable by web server. " ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "php.ini file variable post_max_size should be at least 2M" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "The following required items were missing: %s" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "The following optional items were missing: %s" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "Check Passed." ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "Using configs/local_config.php so changing work directory above may not work." ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "Last Post:" ; groupfeed_element.php line: 497 groupfeed_element_comment = "Comment" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "Drag items into the textarea to add them..." ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "or click to select them." ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "Add a Comment" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "Save" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "Subject" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "Post" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "Save" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "Edit Post" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "Subject" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "Post" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "Save" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "Group Feeds No Longer Updating!" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "No Monitored Machines" ; machinestatus_view.php line: 60 machinestatus_name_server = "Name Server" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "News Updater" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "Media Updater" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "Are you sure you want to Delete?" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "Delete" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "Machine Not Configured!" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "Mirrors" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "Queue Server" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "Machine has no queue server" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "Machine has no fetchers" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "Fetchers" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "Log" ; ; nocache_view.php line: 57 diff --git a/locale/es/configure.ini b/locale/es/configure.ini index dcd0cb7b7..f5c32f812 100755 --- a/locale/es/configure.ini +++ b/locale/es/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "Seleccionar Rastreo" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "Seleccionar Rastreo" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "Rastreo Mix creado!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "Rastreo Mix eliminado!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "Mix para eliminar (borrar) no existe!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "Añadir Rastreos" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "Número de Resultados" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "Tamaño" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "Acciones" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "Agregar consulta" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "Guardados los Cambios del Rastreo Mix!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "Máquina en Uso. Por favor, Detenga ; system_component.php line: 195 system_component_machine_deleted = "Máquina Eliminada!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "No se Encontró el Archivo de Registro." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "Servidores de Máquina's Actualizados!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "No se Puede Realizar la Acción!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "Configuración Regional Agregada!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "Configuración Regional No Existe" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "Configuración Regional Eliminada" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "Configuración Regional No Existe" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "Cadenas de Configuración Regional Actualizada!" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "Problema al actualizar la base de datos!" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "Perfil actualizado!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "Debe utilizar una ruta absoluta para el directorio de trabajo" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "El trabajo conjunto de Directorio! Puede que tenga que volver a entrar!" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "Por favor, Nombre tu Robot" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "Directorio de Trabajo y Perfil creados!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "No se puede actualizar el archivo config.php!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "No se puede crear el perfil!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "Directorio de trabajo es inválido! No se puede crear el perfil!" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "Directorio de trabajo es inválido! No se puede crear el perfil!" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "Perfil actualizado!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "Hubo un problema al actualizar el perfil!" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "Por favor describa su robot" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP Version 5.3 o la Más Reciente" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "configs/config.php el servidor web no es escribible." ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "Directorio de trabajo tiene que ser escribible por el servidor web" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "La variable post_max_size del archivo php.ini deber�a ser de al menos 32M" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "Los siguientes elementos necesarios (requeridos), no estaban: %s" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "Los siguientes elementos opcionales, no estaban: %s" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "Entrada Aprobada" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/fa/configure.ini b/locale/fa/configure.ini index 58f3a39b4..9dcaba5cf 100755 --- a/locale/fa/configure.ini +++ b/locale/fa/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "یک خزش انتخاب کنید" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "خزش پیش‌فرض" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "یک خزش انتخاب کنید" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "خزش پیش‌فرض" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "ترکیب خزش ساخته شد!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "ترکیب خزش حذف شد!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "ترکیبی که می‌خواهید حذف کنید وجود ندارد!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "خزش اضافه کن" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "تعداد نتایج" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "وزن" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "فرمان‌ها" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "پُرسمان اضافه کن" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "تغییرات ترکیب خزش ذخیره شد!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "دستگاه در حال استفاده ; system_component.php line: 195 system_component_machine_deleted = "دستگاه حذف شد!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "Log File پیدا نشد." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "سرورهای دستگاه به روز شدند!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "نمی‌توان این فرمان را اجرا کرد!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "زبان اضافه شد!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "این زبان وجود ندارد!" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "زبان حذف شد" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "این زبان وجود ندارد!" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "رشته‌های زبان به روز شد!" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "در به روز رسانی پایگاه داده مشکلی پیش آمده است! " ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "پروفایل به روز شد!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "باید از مسیر مطلق برای پوشهٔ کار استفاده کرد" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "پوشهٔ کار نمی‌تواند در پوشهٔ Yioop باشد." ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "پوشهٔ کار تنظیم شد! احتمالن لازم است دوباره وارد شوید.!" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "لطفن برای رباتتان نامی بگذارید" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "پوشهٔ کار و پروفایل ساخته شدند!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "نمی‌توان فایل config.php را به روز کرد!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "نمی‌توان پروفایل را ساخت!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "پوشهٔ کار معتبر نیست! نمی‌توان پروفایل را ساخت!" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "پوشهٔ کار معتبر نیست! نمی‌توان پروفایل را ساخت!" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "پروفایل به روز شد!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "در به روز رسانی پروفایل مشکلی پیش آمده است!" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "لطفن رباتتان را توصیف کنید" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP نسخهٔ ۳.۵ یا جدیدتر" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "وب سرور نمی‌تواند در configs/config.php بنویسد." ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "وب سرور باید بتواند در پوشهٔ کار بنویسد." ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "متغیر post_max_size در php.ini باید حداقل ۲ مگابایت باشد. " ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "موارد لازم زیر خالی هستند: %s" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "موارد اختیاری زیر خالی هستند: %s" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "در بررسی مشکلی پیدا نشد." ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "از configs/local_config.php استفاده می‌شود، بنابراین ممکن است تغییر بالا عمل نکند." ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "هیچ دستگاه تحت نظری نیست" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "گزارش" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "آینه‌ها" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "گزارش" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "صف سرور" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "گزارش" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "دستگاه صف سرور ندارد" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "دستگاه واکش ندارد" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "واکش‌ها" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "گزارش" ; ; nocache_view.php line: 57 diff --git a/locale/fr-FR/configure.ini b/locale/fr-FR/configure.ini index b1650c512..d7922d891 100755 --- a/locale/fr-FR/configure.ini +++ b/locale/fr-FR/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/he/configure.ini b/locale/he/configure.ini index e63609f01..7503b3228 100755 --- a/locale/he/configure.ini +++ b/locale/he/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "פרופייל עודכן" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "פרופייל עודכן" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "בעיה עם עדכון הפרופייל" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/hi/configure.ini b/locale/hi/configure.ini index 11539d453..8714baead 100755 --- a/locale/hi/configure.ini +++ b/locale/hi/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/in-ID/configure.ini b/locale/in-ID/configure.ini index a9eefe35a..663cce2fe 100755 --- a/locale/in-ID/configure.ini +++ b/locale/in-ID/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "Locale telah ditambah" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "Locale tidak ditemukan" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "Locale telah dihapus" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "Locale tidak ditemukan" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/it/configure.ini b/locale/it/configure.ini index d77724f78..7f29114c1 100755 --- a/locale/it/configure.ini +++ b/locale/it/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "Seleziona Scansione" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "Seleziona Scansione" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "Unione Scansioni creata!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "Unione Scansioni cancellata!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "Unione Scansioni da cancellare inesistente!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "Aggiungi scansione" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "Numero di risultati" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "Peso" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "Azioni" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "Aggiungi Ricerca" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "Cambiamenti Unione Scansioni effettuati!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "Macchina in uso. Ferma il servizio che st ; system_component.php line: 195 system_component_machine_deleted = "Macchina cancellata!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "Nessun file di log trovato." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "Server macchina aggiornato!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "Impossibile svolgere azione!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "Lingua aggiunta!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "Lingua inesistente!" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "Lingua cancellata" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "Lingua inesistente!" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "Stringa Lingua aggiornata!" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "Problema aggiornamento database!" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "Profilo aggiornato!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "C'è stato un problema nell'aggiornamento Profilo!" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "Devi usare un percorso assoluto per la Cartella di Lavoro" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "Cartella di Lavoro creata! Potrebbe essere necessario ri-accedere!" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "Dai un nome al tuo Robot" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "Cartella di Lavoro e Profilo creati!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "Impossibile aggiornare il file config.php!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "Impossibile creare Profilo!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "Cartella di Lavoro non valida! Impossibile creare Profilo!" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "Cartella di Lavoro non valida! Impossibile creare Profilo!" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "Profilo aggiornato!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "C'è stato un problema nell'aggiornamento Profilo!" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "C'è stato un problema nell'aggiornamento Profilo!" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "Descrivi il tuo Robot" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP Versione 5.3 o maggiore" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "File configs/config.php non scrivibile dal web server." ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "La Cartella di Lavoro deve essere scrivibile dal web server. " ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "La variabile post_max_size nel file php.ini dovrebbe essere minimo 32M" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "I seguenti oggetti richiesti sono mancanti: %s" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "I seguenti oggetti opzionali sono mancanti: %s" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "Controllo passato." ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "Usando configs/local_config.php la Cartella di Lavoro sopra potrebbe non funzionare." ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "Nessuna Macchina monitorata" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "Mirror" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "Server di Coda" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "Log" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "La Macchina non ha un Server di Coda" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "La Macchina non ha acquisitori" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "Acquisitori" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "Log" ; ; nocache_view.php line: 57 diff --git a/locale/ja/configure.ini b/locale/ja/configure.ini index 1ef5ef9ba..a220dfc4c 100755 --- a/locale/ja/configure.ini +++ b/locale/ja/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "ローケルが追加しました" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "ローケルは存在しません" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "ローケルを削除しました" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "ローケルは存在しません" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "ローケルストリングを編集しました" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "ディータベースの更新ない" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "プロフィールの変更できました。" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "プロフィールの変更できない。" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "作業ディレクトリの設定しました。もう一度ログインしてください。" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "ボット名を入力してください。" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "作業ディレクトリとプロフィールの作成しました。" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "config.phpファイルのできない。更新" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "プロフィールを作成できない。" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "無効な作業ディレクト。プロフィールを作成できない。" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "無効な作業ディレクト。プロフィールを作成できない。" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "プロフィールの変更できました。" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "プロフィールの変更できない。" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "プロフィールの変更できない。" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "ロボットの説明してください。" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/kn/configure.ini b/locale/kn/configure.ini index 768297bff..0c86a2401 100755 --- a/locale/kn/configure.ini +++ b/locale/kn/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "ಕ್ರಾವ್ಲನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "ಕ್ರಾವ್ಲಗಳ ಮಿಶ್ರಣ ಸೃಜಿಸಲಾಯಿತು" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಳಿಸಲಾಗಿದೆ" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "ಅಳಿಸಬೇಕಾದ ಕ್ರಾವ್ಲ ಮಿಶ್ರಣ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "ಕ್ರಾವ್ಲಗಳನ್ನು ಸೇರಿಸಿ" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "ಫಲಿತಾಂಶಗಳ ಸಂಖ್ಯೆ" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "ಗೌರವ" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "ಕ್ರಿಯೆಗಳು" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "ಪ್ರಶ್ನೆಯನ್ನು ಸೇರಿಸು" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "ಕ್ರಾವ್ಲ್ ಮಿಶ್ರಣದಲ್ಲಿ ಬದಲಾವಣೆಯನ್ನು ಉಳಿಸು" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಸೇರಿಸಲಾಗಿದೆ" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "ಈ ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಳಿಸಲಾಗಿದೆ " ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "ಈ ಪ್ರದೇಶದ ಶಿಷ್ಟತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿ ಇಲ್ಲ" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "ಪ್ರದೇಶ ಶಿಷ್ಟತೆಯ ಅಕ್ಷರ ಸಮೂಹವನ್ನು ಪರಿಷ್ಕರಿಸಲಾಯಿತು" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆಯನ್ನು ನಿಗದಿಪಡಿಸಲಾಗಿದೆ! ನೀವು ಮರು ಪ್ರವೇಶಿಸಬೇಕಾಗಬಹುದು" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "configs/config.php ವೆಬ್ ಸರ್ವರ್ ನಿಂದ ಬರೆಯಲು ಸಶಕ್ತವಲ್ಲ" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆ ವೆಬ್ ಸರ್ವರ್ ನಿಂದ ಬರೆಯಲು ಸಶಕ್ತವಾಗಿರಬೇಕು" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "php.ini ಕಡಿತದ ಚರಾಂಶ post_max_size ಕನಿಷ್ಠ ಪಕ್ಷ ೧೬ ಎಂ.ಬಿ. ಇರಬೇಕು" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "ಬರುವ ಅವಶ್ಯಕವಸ್ತುಗಳು ತಪ್ಪಿಹೋಗಿದ್ದಾವೆ:" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "ಬರುವ ಕಡ್ಡಾಯವಲ್ಲದ ವಸ್ತುಗಳು ತಪ್ಪಿಹೋಗಿದ್ದಾವೆ:" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "ಪರಿಶೀಲನೆ ತೇರ್ಗಡೆಯಾಗಿದೆ" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "configs/local_config.php ಉಪಯೋಗದಲ್ಲಿದೆ, ಅದರಿಂದ ಮೇಲಿನ ಕಾರ್ಯ ನಿರ್ದೇಶಿಕೆಯನ್ನು ಬದಲಾವಣೆ ನಿಷ್ಕ್ರಿಯವಾಗಬಹುದು " ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/ko/configure.ini b/locale/ko/configure.ini index 617e5e670..022c36b33 100755 --- a/locale/ko/configure.ini +++ b/locale/ko/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "로케일 추가!!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "로케일이 존재하지 않습니다." ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "로케일을 삭제 하였습니다." ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "로케일이 존재하지 않습니다." ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "로케일 지정 문자열을 업데이트 하였습니다." ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "데이터베이스를 업데이트하는데 문제가 발생했습니다." ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "프로필을 업데이트 했습니다." ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다." ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "작업 디렉토리가 지정 됐습니다. 다시 로그인이 필요할수 있습니다." ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "로봇 이름을 정해 주십시요." ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "작업 디렉토리와 프로필이 생성됐습니다." ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "config.php 파일을 업데이트 실패했습니다." ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "프로필을 생성할수 없습니다." ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "작업 디렉토리가 올바르지 않습니다. 프로필을 생성할수 없습니다." ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "작업 디렉토리가 올바르지 않습니다. 프로필을 생성할수 없습니다." ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "프로필을 업데이트 했습니다." ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다." ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "프로필을 업데이트하는데 문제가 발생했습니다." ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "당신의 로봇을 기술해 주십시요." ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/pl/configure.ini b/locale/pl/configure.ini index d102a5955..11cb1c5fa 100755 --- a/locale/pl/configure.ini +++ b/locale/pl/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/pt/configure.ini b/locale/pt/configure.ini index a024e878a..767e44efb 100755 --- a/locale/pt/configure.ini +++ b/locale/pt/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/ru/configure.ini b/locale/ru/configure.ini index d1784d3b0..e699423f5 100755 --- a/locale/ru/configure.ini +++ b/locale/ru/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/te/configure.ini b/locale/te/configure.ini index 60312d3b5..33fb8d53e 100644 --- a/locale/te/configure.ini +++ b/locale/te/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "%s చేరారు %s!" ; social_component.php line: 791 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు." ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "అప్ లోడ్ పొరపాటు" +; +; social_component.php line: 819 social_component_thread_notification = "థ్రెడ్ లో క్రొత్త పోస్ట్: %s" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "ధన్యవాదములు," ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "డియర్ %s, " ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "కామెంట్ ఆడ్ చేయడమైనది!" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "ఎంపిక చేసిన గ్రూప్ జోడించడము కుదరదు!" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "ఐటెం తొలగించడం లో పొరపాటు వచ్చినది" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "ఐటెం డిలీట్ చేయబడినది!" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "ఐటెం ఎదీ డిలీట్ చేయబడలేదు!" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "వోటింగ్ పొరపాటు!" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "వోటింగ్ అయిపోయినది!" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "అప్ లోడ్ పొరపాటు" +; +; social_component.php line: 939 social_component_new_thread_mail = "గ్రూప్ %s లో క్రొత్త థ్రెడ్" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "ధన్యవాదములు," ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "Yioop సాఫ్ట్ వేర్" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "డియర్ %s, " ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "టైటిల్ మరియు వివరణ రెండూ అవసరం!" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "పోస్ట్ వేరే చోట ఇప్పుడే సవరించారు (వేరే టేబ్?)" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "పోస్ట్ ని అప్డేట్ చేయలేరు!" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "అప్ లోడ్ పొరపాటు" +; +; social_component.php line: 1010 social_component_post_updated = "పోస్ట్ అప్డేట్ చేయబడినది!" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "వోటింగ్ పొరపాటు!" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "ఈ పోస్ట్ కి వోటింగ్ సదుపాయము లేదు!" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "వోటింగ్ అయిపోయినది!" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "వోటింగ్ నమోదు చేయబడినది!" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "%s చేరారు %s!" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "ఈ తేదిన %s, మీరు %s గ్రూప్ లో చేరారు." ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "ఇంకా పోస్ట్లు ఏవీ లేవు" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "శోధన" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి! " ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "సభ్యుడు కాదు లేదా ఆ గ్రూప్ ని చదవలేరు.పబ్లిక్ గ్రూప్ కి మార్చండి! " ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "సగటు" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "మీడియా జాబితా" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = " " ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "కొన్ని ఫీల్డ్స్ మిస్ అయినవి!" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "%s వికీ పేజ్ సృష్టించబడినది!" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "పేజ్ సేవ్ చేయబడినది!" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "రిసోర్స్ డిలీట్ చేయబడినది!" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "రిసోర్స్ డిలీట్ చేయబడలేదు!" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "రిసోర్స్ పేరు మార్చబడింది!" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "రిసోర్స్ పేరు మార్చలేదు!" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "రిసోర్సెస్ వాడే ముందు పేజ్ సేవ్ చేయాలి!" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "%s వికీ పేజ్ సృష్టించబడినది!" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "ఈ థ్రెడ్ లో పేజీ గురించి చర్చించండి!" +; +; social_component.php line: 1667 social_component_resource_uploaded = "రిసోర్స్ అప్ లోడ్ అయినది!" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "అప్ లోడ్ పొరపాటు" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "వెనుకకు " ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "చారిత్రక వెర్షన్ %s నుండి %s." ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "వెనుకకు " ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "%s లైన్ తేడాలు%s మరియు %s మధ్య" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "మీ వెర్షన్ తరువాత వికీ పేజీ సవరించబడింది.మార్చబడిన వెర్షన్ లోడ్ అవుతోంది!" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "తిరిగి వెనుకకు %s" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "పేజీ వెనుకకు మార్చబడింది!" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "పేజీ వెనుకకు మార్చుటలో లోపం!" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "ప్రధాన" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "చిన్న" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "మధ్యస్థం" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "పెద్ద" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "పరిమాణం" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "శీర్షిక పంక్తి:" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "ఉదాహరణ" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "టేబుల్ పేరు" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "మనవి చేయి" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "రద్దు చెయ్యి" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "బోల్డ్ టెక్స్ట్" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "ఇటాలిక్ టెక్స్ట్" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "అండర్ లైన్డ్ టెక్స్ట్" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "స్ట్రైక్డ్ టెక్స్ట్" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "హెడ్డింగ్" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "లెవెల్ 1 హెడ్డింగ్" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "లెవెల్ 2 హెడ్డింగ్" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "లెవెల్ 3 హెడ్డింగ్" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "లెవెల్ 4 హెడ్డింగ్" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "క్రమం లేని జాబితా అంశం" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "క్రమంలో జాబితా అంశం" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "ఇక్కడ ఫార్మాట్ చేయని టెక్స్ట్ ఇన్సర్ట్ చేయండి" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "శోధన రూపం జోడించండి" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "పరిమాణం" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "వికీ టేబుల్ ఆడ్ చెయ్యండి " ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "కాలమ్ కౌంట్:" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "వరుస కౌంట్:" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "హైపర్ లింక్ ఆడ్ చెయ్యండి" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "టెక్స్ట్:" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "యుఆర్ఎల్:" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "ప్లేస్ హోల్డర్ టెక్స్ట్ శోధన" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "ఈ టెక్స్ట్ మధ్య సమలేఖనమైంది." ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "ఈ టెక్స్ట్ కుడి సమలేఖనమైంది. " ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "ఈ టెక్స్ట్ ఎడమ సమలేఖనమైంది." ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "అంశము" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "నిర్వచనం" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "శీర్షిక" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "స్లయిడ్ అంశము" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "క్రాల్ ఎంచుకోండి" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "డిఫాల్ట క్రాల్" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "క్రాల్ ఎంచుకోండి" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "డిఫాల్ట క్రాల్" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "క్రాల్ మిక్స్ సృష్టించబడినది!" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "మిక్స్ పేరు వాడుక లో వుంది లేదా చెల్లదు!" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "క్రాల్ మిక్స్ డిలీట్ చేయబడినది!" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "తొలగించవలసిన మిక్స్ లేదు!" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "మిక్స్ విజయవంతంగా దిగుమతి చేయబడినది!" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "సూచికగా ఉపయోగించడానికి క్రాల్ సెట్ చేస్తోంది " ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "వ్యాఖ్య డేటాలో పొరపాటు ఉన్నది!" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "షేర్డ్ మిక్స్ టైమ్ స్టాంప్ చెల్లదు" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "ఆ గ్రూప్ కు పోస్ట్ చెయ్యలేరు!" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "ఈ క్రాల్ మిక్స్ ప్రయత్నించండి!" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "%s పంచుకుంటున్నారు క్రాల్ మిక్స్%sని!" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "థ్రెడ్ సృష్టించబడినది!" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "టైం స్టాంప్ వేలిడ్ కాదు!" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "మిక్స్ యజమాని కాదు!" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "క్రాల్ లు జోడించుము" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "ఫలితాలను చూపించాయి" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "తొలగించు" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "బరువు" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "పేరు " ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "కీ పదాలు" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "యాక్సన్ లు" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "క్వెరి జోడించుము" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "తొలగించు" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "చాలా శోధన ఫలిత శకలాలు!" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "క్రాల్ మిక్స్ మార్పులు సేవ్ చేయబడినవి!" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "మెషిన్ ఉపయోగంల ; system_component.php line: 195 system_component_machine_deleted = "మెషిన్ డిలీట్ చేయబడినది!" ; -; system_component.php line: 209 -system_component_news_mode_updated = "వార్తలు అప్డేట్ మోడ్ మార్చబడింది!" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "వార్తలు అప్డేట్ మోడ్ మార్చబడింది!" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "వార్తలు అప్డేట్ మోడ్ మార్పు విఫలమైనది!" +; system_component.php line: 223 +system_component_media_update_failed = "వార్తలు అప్డేట్ మోడ్ మార్పు విఫలమైనది!" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "లాగ్ ఫైల్ కనపడలేదు." ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "మెషిన్ సర్వర్స్ అప్డేట్ చేయబడినవి!" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "ఏ ఏక్సన్ చేయుట కుదరలేదు!" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "మోడ్ ఎంచుకోండి" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "ఫీల్డ్ వేల్యూస్ మిస్సింగ్ లేదా చెల్లదు!" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "లొకేల్ ఆడ్ చేయబడినది!" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "లొకేల్ పేరు లేదు!" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "లొకేల్ డిలీట్ చేయబడినది" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "లొకేల్ పేరు లేదు!" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "లొకేల్ సమాచారం అప్డేట్ చేయబడినది!" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "లొకేల్ స్ట్రింగ్స్ అప్డేట్ చేయబడినవి! " ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "అన్ని స్ట్రింగ్లు " ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "మిస్సింగ్ స్ట్రింగ్స్" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "డేటాబేస్ నవీకరణలో సమస్య!" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "ప్రొఫైల్ అప్డేట్ చేయబడినది!" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! " ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "రిజిస్ట్రేషన్ డిసేబుల్" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "నో ఏక్టివేషన్" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "ఇమెయిల్ ఏక్టివేషన్" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "అడ్మిన్ ఏక్టివేషన్" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "కేప్త్చపదం" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "హాష్ కేప్త్చ" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "కేప్త్చ చిత్రం" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "సాధారణ ఆతేంటికేషణ్" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "ZKP ఆతేంటికేషణ్" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "సాధారణ ఆతేంటికేషణ్" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "సెట్టింగ్స్ అప్డేట్ చెయ్యబడినవి!" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "ఏ సెట్టింగులు మార్చబడలేదు!" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "వర్క్ డైరెక్టరీ కోసం సరైన పాత్ ఉపయోగించాలి" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "వర్క్ డైరెక్టరీ yioop ఫోల్డర్ లో ఉండకూడదు!" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "వర్క్ డైరెక్టరీ సెట్ చేయండి! మీరు తిరిగి లాగిన్ చేయాలి!" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "దయచేసి మీ రోబోట్ కి పేరు పెట్టండి" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "వర్కింగ్ డైరెక్టరీ మరియు ప్రొఫైల్ క్రియేట్ చేయబడినది!" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "config.php ఫైల్ అప్డేట్ చేయుట సాధ్యపడలేదు!" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "ప్రొఫైల్ తయారు చేయుట సాధ్యపడలేదు!" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "వర్క్ డైరెక్టరీ చెల్లదు! ప్రొఫైల్ సృష్టించలేరు!" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "వర్క్ డైరెక్టరీ చెల్లదు! ప్రొఫైల్ సృష్టించలేరు!" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "రిసోర్స్ ఫోల్డర్ లేదు!" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "చెల్లని ఫైల్ రకం!" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "చాలా పెద్ద ఫైలు!" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "ప్రొఫైల్ అప్డేట్ చేయబడినది!" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! " ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "రీసెట్ పూర్తి అయినది" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "ప్రొఫైల్ నవీకరణలో సమస్య వున్నది! " ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "మీ రోబోట్ ని దయచేసి వివరించండి" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP వెర్షన్ 5.3 లేదా ఇంకా క్రొత్తది" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "ఆఖరి పోస్ట్:" ; groupfeed_element.php line: 497 groupfeed_element_comment = "వ్యాఖ్య" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "వ్యాఖ్యను జోడించండి" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "సేవ్" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "విషయం" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "పోస్ట్" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "సేవ్" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "పోస్ట్ లను సవరించు" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "విషయం" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "పోస్ట్" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "సేవ్" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "గ్రూప్ ఫీడ్స్ అప్డేట్ అవడంలేదు!" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/th/configure.ini b/locale/th/configure.ini index 80878ae59..7090a5b86 100755 --- a/locale/th/configure.ini +++ b/locale/th/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/tr/configure.ini b/locale/tr/configure.ini index c2cd005cb..8c000a49e 100755 --- a/locale/tr/configure.ini +++ b/locale/tr/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/vi-VN/configure.ini b/locale/vi-VN/configure.ini index 065279532..2adceaac4 100755 --- a/locale/vi-VN/configure.ini +++ b/locale/vi-VN/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "Chọn thu thập thông tin" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "Chọn thu thập thông tin" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "Tạo ra hỗn hợp " ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "Xóa kết hợp " ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "Kết hợp này không tồn tại" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "Cộng thêm thu thập" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "Số kết quả" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "Trọng lượng" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "Hành động" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "Cộng thêm truy vấn" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "Kết hợp đã được lưu dữ" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "" ; system_component.php line: 195 system_component_machine_deleted = "" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "Miền địa phương thêm vào" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "Miền địa phương không tồn tại" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "Xóa miền địa phương" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "Miền địa phương không tồn tại" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "Chuỗi Địa phương được cập nhật" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "Vấn đề cập nhật cơ sở dữ liệu" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "Hồ sơ được cập nhật" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "Có sự trở ngaị về việc cập nhật hồ sơ " ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "Công việc thiết lập thư mục bị đông cứng (Bạn có thể cần phải đăng nhập)" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "Đặt tên cho rô bô của bạn" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "Thư mục làm việc và hồ sơ được tạo ra" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "Không thể cập nhật hồ sơ config.php" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "Không thể tạo hồ sơ" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "Công tác thư mục không hợp lệ" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "Công tác thư mục không hợp lệ" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "Hồ sơ được cập nhật" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "Có sự trở ngaị về việc cập nhật hồ sơ " ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "Có sự trở ngaị về việc cập nhật hồ sơ " ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "Diễn tả rô bô của bạn" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "Kiểm tra được thông qua" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/locale/zh-CN/configure.ini b/locale/zh-CN/configure.ini index b6eee96c6..f9a2bb5d4 100755 --- a/locale/zh-CN/configure.ini +++ b/locale/zh-CN/configure.ini @@ -678,415 +678,430 @@ social_component_join_group = "" ; social_component.php line: 791 social_component_join_group_detail = "" ; -; social_component.php line: 813 +; social_component.php line: 806 +social_component_upload_error = "" +; +; social_component.php line: 819 social_component_thread_notification = "" ; -; social_component.php line: 815 +; social_component.php line: 821 social_component_notify_body = "" ; -; social_component.php line: 818 +; social_component.php line: 824 social_component_notify_closing = "" ; -; social_component.php line: 819 +; social_component.php line: 825 social_component_notify_signature = "" ; -; social_component.php line: 821 +; social_component.php line: 827 social_component_notify_salutation = "" ; -; social_component.php line: 828 +; social_component.php line: 834 social_component_comment_added = "" ; -; social_component.php line: 838 +; social_component.php line: 844 social_component_groupname_cant_add = "" ; -; social_component.php line: 844 +; social_component.php line: 850 social_component_delete_error = "" ; -; social_component.php line: 858 +; social_component.php line: 871 social_component_item_deleted = "" ; -; social_component.php line: 861 +; social_component.php line: 874 social_component_no_item_deleted = "" ; -; social_component.php line: 869 +; social_component.php line: 882 social_component_vote_error = "" ; -; social_component.php line: 878 +; social_component.php line: 891 social_component_no_vote_access = "" ; -; social_component.php line: 883 +; social_component.php line: 896 social_component_no_post_access = "" ; -; social_component.php line: 887 +; social_component.php line: 900 social_component_already_voted = "" ; -; social_component.php line: 891 +; social_component.php line: 904 social_component_vote_recorded = "" ; -; social_component.php line: 896 +; social_component.php line: 909 social_component_comment_error = "" ; -; social_component.php line: 901 +; social_component.php line: 914 social_component_need_title_description = "" ; -; social_component.php line: 912 +; social_component.php line: 925 social_component_no_post_access = "" ; -; social_component.php line: 920 +; social_component.php line: 933 +social_component_upload_error = "" +; +; social_component.php line: 939 social_component_new_thread_mail = "" ; -; social_component.php line: 927 +; social_component.php line: 946 social_component_new_thread_body = "" ; -; social_component.php line: 931 +; social_component.php line: 950 social_component_notify_closing = "" ; -; social_component.php line: 932 +; social_component.php line: 951 social_component_notify_signature = "" ; -; social_component.php line: 933 +; social_component.php line: 952 social_component_notify_salutation = "" ; -; social_component.php line: 940 +; social_component.php line: 959 social_component_thread_created = "" ; -; social_component.php line: 948 +; social_component.php line: 967 social_component_comment_error = "" ; -; social_component.php line: 952 +; social_component.php line: 971 social_component_need_title_description = "" ; -; social_component.php line: 958 +; social_component.php line: 977 social_component_post_edited_elsewhere = "" ; -; social_component.php line: 966 +; social_component.php line: 985 social_component_no_update_access = "" ; -; social_component.php line: 979 +; social_component.php line: 998 social_component_no_update_access = "" ; -; social_component.php line: 985 +; social_component.php line: 1007 +social_component_upload_error = "" +; +; social_component.php line: 1010 social_component_post_updated = "" ; -; social_component.php line: 992 +; social_component.php line: 1017 social_component_vote_error = "" ; -; social_component.php line: 1001 +; social_component.php line: 1026 social_component_no_vote_access = "" ; -; social_component.php line: 1006 +; social_component.php line: 1031 social_component_no_post_access = "" ; -; social_component.php line: 1010 +; social_component.php line: 1035 social_component_already_voted = "" ; -; social_component.php line: 1014 +; social_component.php line: 1039 social_component_vote_recorded = "" ; -; social_component.php line: 1045 +; social_component.php line: 1070 social_component_join_group = "" ; -; social_component.php line: 1048 +; social_component.php line: 1073 social_component_join_group_detail = "" ; -; social_component.php line: 1302 +; social_component.php line: 1341 accountaccess_component_no_posts_yet = "" ; -; social_component.php line: 1343 +; social_component.php line: 1382 social_component_search = "" ; -; social_component.php line: 1427 +; social_component.php line: 1466 group_controller_no_group_access = "" ; -; social_component.php line: 1430 +; social_component.php line: 1469 group_controller_no_group_access = "" ; -; social_component.php line: 1454 +; social_component.php line: 1493 social_component_standard_page = "" ; -; social_component.php line: 1455 +; social_component.php line: 1494 social_component_page_alias = "" ; -; social_component.php line: 1456 +; social_component.php line: 1495 social_component_media_list = "" ; -; social_component.php line: 1457 +; social_component.php line: 1496 social_component_presentation = "" ; -; social_component.php line: 1460 +; social_component.php line: 1499 social_component_solid = "" ; -; social_component.php line: 1461 +; social_component.php line: 1500 social_component_dashed = "" ; -; social_component.php line: 1462 +; social_component.php line: 1501 social_component_none = "" ; -; social_component.php line: 1502 +; social_component.php line: 1541 group_controller_missing_fields = "" ; -; social_component.php line: 1508 +; social_component.php line: 1547 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1558 +; social_component.php line: 1597 group_controller_page_created = "" ; -; social_component.php line: 1559 +; social_component.php line: 1598 group_controller_page_discuss_here = "" ; -; social_component.php line: 1564 +; social_component.php line: 1603 group_controller_page_saved = "" ; -; social_component.php line: 1576 +; social_component.php line: 1615 social_component_resource_deleted = "" ; -; social_component.php line: 1581 +; social_component.php line: 1620 social_component_resource_not_deleted = "" ; -; social_component.php line: 1598 +; social_component.php line: 1637 social_component_resource_renamed = "" ; -; social_component.php line: 1603 +; social_component.php line: 1642 social_component_resource_not_renamed = "" ; -; social_component.php line: 1613 +; social_component.php line: 1652 social_component_resource_save_first = "" ; -; social_component.php line: 1621 +; social_component.php line: 1663 +group_controller_page_created = "" +; +; social_component.php line: 1664 +group_controller_page_discuss_here = "" +; +; social_component.php line: 1667 social_component_resource_uploaded = "" ; -; social_component.php line: 1626 +; social_component.php line: 1672 social_component_upload_error = "" ; -; social_component.php line: 1672 +; social_component.php line: 1718 group_controller_back = "" ; -; social_component.php line: 1673 +; social_component.php line: 1719 group_controller_history_page = "" ; -; social_component.php line: 1706 +; social_component.php line: 1752 group_controller_back = "" ; -; social_component.php line: 1707 +; social_component.php line: 1753 group_controller_diff_page = "" ; -; social_component.php line: 1721 +; social_component.php line: 1767 social_component_wiki_edited_elsewhere = "" ; -; social_component.php line: 1729 +; social_component.php line: 1775 group_controller_page_revert_to = "" ; -; social_component.php line: 1733 +; social_component.php line: 1779 group_controller_page_reverted = "" ; -; social_component.php line: 1737 +; social_component.php line: 1783 group_controller_revert_error = "" ; -; social_component.php line: 1808 +; social_component.php line: 1854 group_controller_main = "" ; -; social_component.php line: 2049 +; social_component.php line: 2095 wiki_js_small = "" ; -; social_component.php line: 2050 +; social_component.php line: 2096 wiki_js_medium = "" ; -; social_component.php line: 2051 +; social_component.php line: 2097 wiki_js_large = "" ; -; social_component.php line: 2052 +; social_component.php line: 2098 wiki_js_search_size = "" ; -; social_component.php line: 2053 +; social_component.php line: 2099 wiki_js_prompt_heading = "" ; -; social_component.php line: 2054 +; social_component.php line: 2100 wiki_js_example = "" ; -; social_component.php line: 2055 +; social_component.php line: 2101 wiki_js_table_title = "" ; -; social_component.php line: 2056 +; social_component.php line: 2102 wiki_js_submit = "" ; -; social_component.php line: 2057 +; social_component.php line: 2103 wiki_js_cancel = "" ; -; social_component.php line: 2058 +; social_component.php line: 2104 wiki_js_bold = "" ; -; social_component.php line: 2059 +; social_component.php line: 2105 wiki_js_italic = "" ; -; social_component.php line: 2060 +; social_component.php line: 2106 wiki_js_underline = "" ; -; social_component.php line: 2061 +; social_component.php line: 2107 wiki_js_strike = "" ; -; social_component.php line: 2062 +; social_component.php line: 2108 wiki_js_heading = "" ; -; social_component.php line: 2063 +; social_component.php line: 2109 wiki_js_heading1 = "" ; -; social_component.php line: 2064 +; social_component.php line: 2110 wiki_js_heading2 = "" ; -; social_component.php line: 2065 +; social_component.php line: 2111 wiki_js_heading3 = "" ; -; social_component.php line: 2066 +; social_component.php line: 2112 wiki_js_heading4 = "" ; -; social_component.php line: 2067 +; social_component.php line: 2113 wiki_js_bullet = "" ; -; social_component.php line: 2068 +; social_component.php line: 2114 wiki_js_enum = "" ; -; social_component.php line: 2069 +; social_component.php line: 2115 wiki_js_nowiki = "" ; -; social_component.php line: 2070 +; social_component.php line: 2116 wiki_js_add_search = "" ; -; social_component.php line: 2071 +; social_component.php line: 2117 wiki_js_search_size = "" ; -; social_component.php line: 2072 +; social_component.php line: 2118 wiki_js_add_wiki_table = "" ; -; social_component.php line: 2073 +; social_component.php line: 2119 wiki_js_for_table_cols = "" ; -; social_component.php line: 2074 +; social_component.php line: 2120 wiki_js_for_table_rows = "" ; -; social_component.php line: 2075 +; social_component.php line: 2121 wiki_js_add_hyperlink = "" ; -; social_component.php line: 2076 +; social_component.php line: 2122 wiki_js_link_text = "" ; -; social_component.php line: 2077 +; social_component.php line: 2123 wiki_js_link_url = "" ; -; social_component.php line: 2078 +; social_component.php line: 2124 wiki_js_placeholder = "" ; -; social_component.php line: 2079 +; social_component.php line: 2125 wiki_js_centeraligned = "" ; -; social_component.php line: 2080 +; social_component.php line: 2126 wiki_js_rightaligned = "" ; -; social_component.php line: 2081 +; social_component.php line: 2127 wiki_js_leftaligned = "" ; -; social_component.php line: 2083 +; social_component.php line: 2129 wiki_js_definitionlist_item = "" ; -; social_component.php line: 2085 +; social_component.php line: 2131 wiki_js_definitionlist_definition = "" ; -; social_component.php line: 2087 +; social_component.php line: 2133 wiki_js_slide_sample_title = "" ; -; social_component.php line: 2089 +; social_component.php line: 2135 wiki_js_slide_sample_bullet = "" ; -; social_component.php line: 2091 +; social_component.php line: 2137 wiki_js_slide_resource_description = "" ; -; social_component.php line: 2131 +; social_component.php line: 2177 social_component_select_crawl = "搜尋選擇" ; -; social_component.php line: 2132 +; social_component.php line: 2178 social_component_default_crawl = "" ; -; social_component.php line: 2134 +; social_component.php line: 2180 social_component_select_crawl = "搜尋選擇" ; -; social_component.php line: 2136 +; social_component.php line: 2182 social_component_default_crawl = "" ; -; social_component.php line: 2167 +; social_component.php line: 2213 social_component_mix_created = "" ; -; social_component.php line: 2170 +; social_component.php line: 2216 social_component_invalid_name = "" ; -; social_component.php line: 2178 +; social_component.php line: 2224 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2182 +; social_component.php line: 2228 social_component_mix_deleted = "" ; -; social_component.php line: 2201 +; social_component.php line: 2247 social_component_mix_doesnt_exists = "" ; -; social_component.php line: 2209 +; social_component.php line: 2255 social_component_mix_imported = "" ; -; social_component.php line: 2223 +; social_component.php line: 2269 social_component_set_index = "" ; -; social_component.php line: 2233 +; social_component.php line: 2279 social_component_comment_error = "" ; -; social_component.php line: 2239 +; social_component.php line: 2285 social_component_invalid_timestamp = "" ; -; social_component.php line: 2257 +; social_component.php line: 2303 social_component_no_post_access = "" ; -; social_component.php line: 2261 +; social_component.php line: 2307 social_component_share_title = "" ; -; social_component.php line: 2263 +; social_component.php line: 2309 social_component_share_description = "" ; -; social_component.php line: 2268 +; social_component.php line: 2314 social_component_thread_created = "" ; -; social_component.php line: 2320 +; social_component.php line: 2366 social_component_mix_invalid_timestamp = "" ; -; social_component.php line: 2325 +; social_component.php line: 2371 social_component_mix_not_owner = "" ; -; social_component.php line: 2335 +; social_component.php line: 2381 social_component_add_crawls = "增加索引" ; -; social_component.php line: 2337 +; social_component.php line: 2383 social_component_num_results = "結果數量" ; -; social_component.php line: 2339 +; social_component.php line: 2385 social_component_del_frag = "" ; -; social_component.php line: 2341 +; social_component.php line: 2387 social_component_weight = "元素重量" ; -; social_component.php line: 2342 +; social_component.php line: 2388 social_component_name = "" ; -; social_component.php line: 2344 +; social_component.php line: 2390 social_component_add_keywords = "" ; -; social_component.php line: 2346 +; social_component.php line: 2392 social_component_actions = "元素活動" ; -; social_component.php line: 2348 +; social_component.php line: 2394 social_component_add_query = "增加查詢" ; -; social_component.php line: 2349 +; social_component.php line: 2395 social_component_delete = "" ; -; social_component.php line: 2396 +; social_component.php line: 2442 social_component_too_many_fragments = "" ; -; social_component.php line: 2407 +; social_component.php line: 2453 social_component_mix_saved = "" ; ; system_component.php line: 82 @@ -1110,172 +1125,172 @@ system_component_stop_service_first = "停止服務" ; system_component.php line: 195 system_component_machine_deleted = "刪除" ; -; system_component.php line: 209 -system_component_news_mode_updated = "" +; system_component.php line: 210 +system_component_media_mode_updated = "" ; -; system_component.php line: 215 -system_component_news_mode_updated = "" +; system_component.php line: 216 +system_component_media_mode_updated = "" ; -; system_component.php line: 222 -system_component_news_update_failed = "" +; system_component.php line: 223 +system_component_media_update_failed = "" ; -; system_component.php line: 285 +; system_component.php line: 286 system_component_no_machine_log = "無紀錄" ; -; system_component.php line: 314 +; system_component.php line: 315 system_component_machine_servers_updated = "服務更新" ; -; system_component.php line: 318 +; system_component.php line: 319 system_component_machine_no_action = "無動作" ; -; system_component.php line: 354 +; system_component.php line: 355 system_component_select_mode = "" ; -; system_component.php line: 392 +; system_component.php line: 393 system_component_locale_missing_info = "" ; -; system_component.php line: 399 +; system_component.php line: 400 system_component_locale_added = "增加語言" ; -; system_component.php line: 405 +; system_component.php line: 406 system_component_localename_doesnt_exists = "語言不存在" ; -; system_component.php line: 411 +; system_component.php line: 412 system_component_localename_deleted = "刪除語言" ; -; system_component.php line: 416 +; system_component.php line: 417 system_component_localename_doesnt_exists = "語言不存在" ; -; system_component.php line: 447 +; system_component.php line: 448 system_component_locale_updated = "" ; -; system_component.php line: 477 +; system_component.php line: 478 system_component_localestrings_updated = "語言更新" ; -; system_component.php line: 488 +; system_component.php line: 489 system_component_all_strings = "" ; -; system_component.php line: 489 +; system_component.php line: 490 system_component_missing_strings = "" ; -; system_component.php line: 575 +; system_component.php line: 576 system_component_configure_no_change_db = "" ; -; system_component.php line: 589 +; system_component.php line: 590 system_component_configure_profile_change = "" ; -; system_component.php line: 596 +; system_component.php line: 597 system_component_configure_no_change_profile = "" ; -; system_component.php line: 622 +; system_component.php line: 623 system_component_configure_disable_registration = "" ; -; system_component.php line: 624 +; system_component.php line: 625 system_component_configure_no_activation = "" ; -; system_component.php line: 626 +; system_component.php line: 627 system_component_configure_email_activation = "" ; -; system_component.php line: 628 +; system_component.php line: 629 system_component_configure_admin_activation = "" ; -; system_component.php line: 693 +; system_component.php line: 694 captchasettings_element_text_captcha = "" ; -; system_component.php line: 695 +; system_component.php line: 696 captchasettings_element_hash_captcha = "" ; -; system_component.php line: 697 +; system_component.php line: 698 captchasettings_element_image_captcha = "" ; -; system_component.php line: 702 +; system_component.php line: 703 serversettings_element_normal_authentication = "" ; -; system_component.php line: 704 +; system_component.php line: 705 serversettings_element_zkp_authentication = "" ; -; system_component.php line: 709 +; system_component.php line: 710 serversettings_element_normal_authentication = "" ; -; system_component.php line: 734 +; system_component.php line: 735 system_component_settings_updated = "" ; -; system_component.php line: 738 +; system_component.php line: 739 system_component_no_update_settings = "" ; -; system_component.php line: 806 +; system_component.php line: 807 system_component_configure_use_absolute_path = "使用絕對路徑" ; -; system_component.php line: 818 +; system_component.php line: 819 system_component_configure_configure_diff_base_dir = "" ; -; system_component.php line: 850 +; system_component.php line: 851 system_component_configure_work_dir_set = "工作目錄配置" ; -; system_component.php line: 864 +; system_component.php line: 865 system_component_name_your_bot = "取名" ; -; system_component.php line: 889 +; system_component.php line: 890 system_component_configure_work_profile_made = "工作設置已建立" ; -; system_component.php line: 902 +; system_component.php line: 903 system_component_configure_no_set_config = "無設置" ; -; system_component.php line: 914 +; system_component.php line: 915 system_component_configure_no_create_profile = "未建立簡歷" ; -; system_component.php line: 925 +; system_component.php line: 926 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 937 +; system_component.php line: 938 system_component_configure_work_dir_invalid = "" ; -; system_component.php line: 964 +; system_component.php line: 965 system_component_no_resource_folder = "" ; -; system_component.php line: 980 +; system_component.php line: 981 system_component_invalid_filetype = "" ; -; system_component.php line: 987 +; system_component.php line: 988 system_component_file_too_big = "" ; -; system_component.php line: 1003 +; system_component.php line: 1004 system_component_configure_profile_change = "" ; -; system_component.php line: 1017 +; system_component.php line: 1018 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1068 +; system_component.php line: 1069 system_component_configure_reset_completed = "" ; -; system_component.php line: 1075 +; system_component.php line: 1076 system_component_configure_no_change_profile = "" ; -; system_component.php line: 1118 +; system_component.php line: 1119 system_component_describe_robot = "" ; -; system_component.php line: 1184 +; system_component.php line: 1185 system_component_php_version = "PHP版本" ; -; system_component.php line: 1192 +; system_component.php line: 1193 system_component_no_write_config_php = "PHP未寫入" ; -; system_component.php line: 1197 +; system_component.php line: 1198 system_component_no_write_work_dir = "未寫入目錄" ; -; system_component.php line: 1202 +; system_component.php line: 1203 system_component_post_size_small = "張貼小容量" ; -; system_component.php line: 1208 +; system_component.php line: 1209 system_component_missing_required = "缺少必要項目" ; -; system_component.php line: 1231 +; system_component.php line: 1232 system_component_missing_optional = "缺少選擇項目" ; -; system_component.php line: 1236 +; system_component.php line: 1237 system_component_check_passed = "通過檢查" ; -; system_component.php line: 1241 +; system_component.php line: 1242 system_component_using_local_config = "使用當地語言" ; ; machine_controller.php line: 168 @@ -2020,40 +2035,40 @@ groupfeed_element_last_post_info = "" ; groupfeed_element.php line: 497 groupfeed_element_comment = "" ; -; groupfeed_element.php line: 549 +; groupfeed_element.php line: 550 fileupload_helper_drag_textarea = "" ; -; groupfeed_element.php line: 550 +; groupfeed_element.php line: 551 fileupload_helper_click_textarea = "" ; -; groupfeed_element.php line: 574 +; groupfeed_element.php line: 575 groupfeed_element_add_comment = "" ; -; groupfeed_element.php line: 588 +; groupfeed_element.php line: 589 groupfeed_element_save = "" ; -; groupfeed_element.php line: 627 +; groupfeed_element.php line: 628 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 634 +; groupfeed_element.php line: 635 groupfeed_element_post = "" ; -; groupfeed_element.php line: 647 +; groupfeed_element.php line: 648 groupfeed_element_save = "" ; -; groupfeed_element.php line: 683 +; groupfeed_element.php line: 684 groupfeed_element_edit_post = "" ; -; groupfeed_element.php line: 686 +; groupfeed_element.php line: 687 groupfeed_element_subject = "" ; -; groupfeed_element.php line: 692 +; groupfeed_element.php line: 693 groupfeed_element_post = "" ; -; groupfeed_element.php line: 705 +; groupfeed_element.php line: 706 groupfeed_element_save = "" ; -; groupfeed_element.php line: 734 +; groupfeed_element.php line: 735 groupfeed_element_no_longer_update = "" ; ; machinelog_element.php line: 57 @@ -3603,43 +3618,43 @@ machinestatus_view_no_monitored = "" ; machinestatus_view.php line: 60 machinestatus_name_server = "" ; -; machinestatus_view.php line: 73 -machinestatus_view_news_updater = "" -; ; machinestatus_view.php line: 75 +machinestatus_view_media_updater = "" +; +; machinestatus_view.php line: 77 machinestatus_view_log = "" ; -; machinestatus_view.php line: 102 +; machinestatus_view.php line: 104 confirm_delete_operation = "" ; -; machinestatus_view.php line: 103 +; machinestatus_view.php line: 105 machinestatus_view_delete = "" ; -; machinestatus_view.php line: 118 +; machinestatus_view.php line: 120 machinestatus_view_not_configured = "" ; -; machinestatus_view.php line: 126 +; machinestatus_view.php line: 128 machinestatus_view_mirrors = "" ; -; machinestatus_view.php line: 129 +; machinestatus_view.php line: 131 machinestatus_view_log = "" ; -; machinestatus_view.php line: 142 +; machinestatus_view.php line: 144 machinestatus_view_queue_server = "" ; -; machinestatus_view.php line: 144 +; machinestatus_view.php line: 146 machinestatus_view_log = "" ; -; machinestatus_view.php line: 153 +; machinestatus_view.php line: 155 machinestatus_view_no_queue_server = "" ; -; machinestatus_view.php line: 156 +; machinestatus_view.php line: 158 machinestatus_view_no_fetchers = "" ; -; machinestatus_view.php line: 166 +; machinestatus_view.php line: 168 machinestatus_view_fetchers = "" ; -; machinestatus_view.php line: 176 +; machinestatus_view.php line: 178 machinestatus_view_log = "" ; ; nocache_view.php line: 57 diff --git a/models/group_model.php b/models/group_model.php index cc4f36a95..1f1540da8 100644 --- a/models/group_model.php +++ b/models/group_model.php @@ -1359,7 +1359,10 @@ class GroupModel extends Model /** * Moves a file that has been uploaded via a wiki pages resource form * to its correct position in the resources folder so it shows up for - * that page + * that page. For images and video (if FFMPEG configued) thumbs are + * generated. For video if FFMPEG is configured then a schedule is + * added to the media_convert folder so that the media_updater can produce + * mp4 and webm files corresponding to the video file. * * @param string $tmp_type tmp location that uploaded file initially stored * at @@ -1396,6 +1399,14 @@ class GroupModel extends Model "\"$thumb_folder/$file_name.jpg\" 2>&1"; exec($make_thumb_string); clearstatcache("$thumb_folder/$file_name.jpg"); + $convert_folder = WORK_DIRECTORY. "/schedules/media_convert"; + if(!file_exists($convert_folder) && !mkdir($convert_folder)) { + return; + } + $num_convert_files = count(glob($convert_folder. "/*.txt")); + $convert_file = $convert_folder. "/" .($num_convert_files + 1). + ".txt"; + file_put_contents($convert_file, "$page_id\n$folder\n$file_name"); } } /** diff --git a/models/machine_model.php b/models/machine_model.php index b8f0c5c36..ef3d2d8a1 100644 --- a/models/machine_model.php +++ b/models/machine_model.php @@ -231,9 +231,9 @@ class MachineModel extends Model usort($machines, "stringROrderCallback"); } $name_server_statuses = CrawlDaemon::statuses(); - $machines['NAME_SERVER']['news_updater'] = 0; - if(isset($name_server_statuses['news_updater'])) { - $machines['NAME_SERVER']['news_updater'] = 1; + $machines['NAME_SERVER']['media_updater'] = 0; + if(isset($name_server_statuses['media_updater'])) { + $machines['NAME_SERVER']['media_updater'] = 1; } return $machines; } @@ -255,8 +255,8 @@ class MachineModel extends Model { $time = time(); $session = md5($time . AUTH_KEY); - $news = ($machine_name == "news"); - if($news) { + $media = ($machine_name == "media"); + if($media) { $row = array(); $row["URL"] = NAME_SERVER; } else { @@ -274,8 +274,8 @@ class MachineModel extends Model if($is_mirror) { $url .= "&mirror=true"; } - if($news) { - $url .= "&news=true"; + if($media) { + $url .= "&media=true"; } $log_page = FetchUrl::getPage($url); $log_data = htmlentities(urldecode(json_decode($log_page)), diff --git a/models/profile_model.php b/models/profile_model.php index f967d08ad..f80427172 100755 --- a/models/profile_model.php +++ b/models/profile_model.php @@ -60,7 +60,7 @@ class ProfileModel extends Model 'GROUP_ITEM', 'IN_LINK','IP_LINK', 'LANDING_PAGE', 'LINK_WEIGHT', 'LOGO', 'M_LOGO', 'MAIL_PASSWORD', 'MAIL_SECURITY', 'MAIL_SENDER', 'MAIL_SERVER', 'MAIL_SERVERPORT', 'MAIL_USERNAME', - 'MEMCACHE_SERVERS', 'MIN_RESULTS_TO_GROUP', 'NAME_SERVER', 'NEWS_MODE', + 'MEMCACHE_SERVERS', 'MIN_RESULTS_TO_GROUP', 'NAME_SERVER', 'MEDIA_MODE', 'PROXY_SERVERS', 'REGISTRATION_TYPE', 'ROBOT_INSTANCE', 'RSS_ACCESS', 'SEARCHBAR_PATH', 'SERVER_ALPHA', 'SESSION_NAME', 'SIDE_ADSCRIPT', 'SIDEBAR_COLOR', 'SIGNIN_LINK', 'SIMILAR_LINK', @@ -407,8 +407,8 @@ EOT; if(!$profile[$field] && isset($not_null_fields[$field])) { $profile[$field] = $not_null_fields[$field]; } - if($field == "NEWS_MODE" && $profile[$field] == "") { - $profile[$field] = "news_off"; + if($field == "MEDIA_MODE" && $profile[$field] == "") { + $profile[$field] = "media_off"; } if($field == "WEB_URI") { if(isset($_SERVER['REQUEST_URI'])) { diff --git a/views/machinestatus_view.php b/views/machinestatus_view.php index a91843f22..1d77704ab 100644 --- a/views/machinestatus_view.php +++ b/views/machinestatus_view.php @@ -59,24 +59,26 @@ class MachinestatusView extends View <div class="box"> <h3 class="nomargin"><?php e(tl('machinestatus_name_server')); - $log_url = $base_url ."log&name=news"; - $on_news_updater = $base_url ."newsmode&news_mode=news_process"; - $off_news_updater = $base_url ."newsmode&news_mode=news_off"; - $caution = ($data['MACHINES']['NAME_SERVER']["news_updater"] == 0); + $log_url = $base_url ."log&name=media"; + $on_media_updater = $base_url . + "mediamode&media_mode=media_process"; + $off_media_updater = $base_url . + "mediamode&media_mode=media_off"; + $caution = ($data['MACHINES']['NAME_SERVER']["media_updater"] == 0); ?></h3> - <form id="newsModeForm" method="post"> + <form id="mediaModeForm" method="post"> <input type="hidden" name="c" value="admin" /> <input type="hidden" name="<?php e(CSRF_TOKEN); ?>" value="<?php e($data[CSRF_TOKEN]); ?>" /> <input type="hidden" name="a" value="manageMachines" /> - <input type="hidden" name="arg" value="newsmode" /> + <input type="hidden" name="arg" value="mediamode" /> <table class="machine-table"><tr> - <th><?php e(tl('machinestatus_view_news_updater'));?></th> + <th><?php e(tl('machinestatus_view_media_updater'));?></th> <td>[<a href="<?php e($log_url);?>"><?php e(tl('machinestatus_view_log'));?></a>]</td> <td><?php $this->helper("toggle")->render( - ($data["NEWS_MODE"] == "news_process"), $on_news_updater, - $off_news_updater, $caution);?> + ($data["MEDIA_MODE"] == "media_process"), $on_media_updater, + $off_media_updater, $caution);?> </td> </tr></table> </form>