Fix typos in documentation and translation strings

This commit is contained in:
Lastorder 2025-07-15 09:59:26 +09:00
parent 9d98e47c53
commit 580588bbdc
12 changed files with 15 additions and 15 deletions

View file

@ -389,8 +389,8 @@ class Validator
} }
/** /**
* Returns the last error infomation including a field name and an error message. * Returns the last error information including a field name and an error message.
* @return array The last error infomation * @return array The last error information
*/ */
function getLastError() function getLastError()
{ {

View file

@ -157,7 +157,7 @@ class autoinstallModel extends autoinstall
* @param int $depth Depth of category * @param int $depth Depth of category
* @param array $list Category list * @param array $list Category list
* @param array $resultList Final result list * @param array $resultList Final result list
* @return string $siblingList Comma seperated list * @return string $siblingList Comma separated list
*/ */
function setDepth(&$item, $depth, &$list, &$resultList) function setDepth(&$item, $depth, &$list, &$resultList)
{ {

View file

@ -25,7 +25,7 @@ class BoardAdminView extends Board {
// generate module model object // generate module model object
$oModuleModel = getModel('module'); $oModuleModel = getModel('module');
// get the module infomation based on the module_srl // get the module information based on the module_srl
if($module_srl) { if($module_srl) {
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl); $module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
if(!$module_info) { if(!$module_info) {

View file

@ -44,7 +44,7 @@ $lang->msg_send_mail_admin_only = 'The email option can only be used by the admi
$lang->message_notice = 'Send a message to the author about this. If you don\'t write a message, it is not sent.'; $lang->message_notice = 'Send a message to the author about this. If you don\'t write a message, it is not sent.';
$lang->friends_page_does_not_support = 'Friends in a mobile environment is not supported. Please go to the PC page.'; $lang->friends_page_does_not_support = 'Friends in a mobile environment is not supported. Please go to the PC page.';
$lang->communication_send_message_grant = 'Send Message Grant'; $lang->communication_send_message_grant = 'Send Message Grant';
$lang->cmd_manage_base = 'Basic infomation'; $lang->cmd_manage_base = 'Basic information';
$lang->alert_new_message_arrived = 'You have %d new message(s). Do you want to check it now?'; $lang->alert_new_message_arrived = 'You have %d new message(s). Do you want to check it now?';
$lang->enable_communication_friend = 'Friend Enable'; $lang->enable_communication_friend = 'Friend Enable';
$lang->enable_communication_message = 'Message Enable'; $lang->enable_communication_message = 'Message Enable';

View file

@ -1018,7 +1018,7 @@ class importerAdminController extends importer
} }
else else
{ {
// Get parent comment infomation // Get parent comment information
$parent_args = new stdClass(); $parent_args = new stdClass();
$parent_args->comment_srl = $obj->parent_srl; $parent_args->comment_srl = $obj->parent_srl;
$parent_output = executeQuery('comment.getCommentListItem', $parent_args); $parent_output = executeQuery('comment.getCommentListItem', $parent_args);

View file

@ -4017,7 +4017,7 @@ class MemberController extends Member
$logged_info = Context::get('logged_info'); $logged_info = Context::get('logged_info');
$spam_description = trim( Context::get('spam_description') ); $spam_description = trim( Context::get('spam_description') );
// get member current infomation // get member current information
$member_info = MemberModel::getMemberInfoByMemberSrl($member_srl); $member_info = MemberModel::getMemberInfoByMemberSrl($member_srl);
$cnt_comment = CommentModel::getCommentCountByMemberSrl($member_srl); $cnt_comment = CommentModel::getCommentCountByMemberSrl($member_srl);
$cnt_document = DocumentModel::getDocumentCountByMemberSrl($member_srl); $cnt_document = DocumentModel::getDocumentCountByMemberSrl($member_srl);

View file

@ -149,7 +149,7 @@ class MenuAdminModel extends Menu
/** /**
* Return item information of the menu_srl * Return item information of the menu_srl
* group_srls uses a seperator with comma(,) and converts to an array by explode * group_srls uses a separator with comma(,) and converts to an array by explode
* @param int $menu_item_srl * @param int $menu_item_srl
* @return object * @return object
*/ */

View file

@ -111,7 +111,7 @@ $lang->about_search_virtual_site = 'Enter domain of virtual sites. To search mod
$lang->about_extra_vars_eid_value = 'This is the unique ID for this field.<br>You can use a combination of Latin alphabets, numbers and underscore(_), as long as it starts with an alphabet.'; $lang->about_extra_vars_eid_value = 'This is the unique ID for this field.<br>You can use a combination of Latin alphabets, numbers and underscore(_), as long as it starts with an alphabet.';
$lang->about_extra_vars_column_name = 'This is the name that is actually shown to users.'; $lang->about_extra_vars_column_name = 'This is the name that is actually shown to users.';
$lang->about_extra_vars_description = 'The description entered here will be shown next to the input field.'; $lang->about_extra_vars_description = 'The description entered here will be shown next to the input field.';
$lang->about_langcode = 'If you want to configure seperately, use \'find language code\''; $lang->about_langcode = 'If you want to configure separately, use \'find language code\'';
$lang->about_file_extension = 'Only %s extension(s) is available.'; $lang->about_file_extension = 'Only %s extension(s) is available.';
$lang->fail_module_regist = 'Fail Regist Module'; $lang->fail_module_regist = 'Fail Regist Module';
$lang->multilingual_desc = 'Rhymix supports 12 languages currently. If you want to use another language, translate one set of languages in /common/lang/ folder into that language and send it to us (devops@rhymix.org).'; $lang->multilingual_desc = 'Rhymix supports 12 languages currently. If you want to use another language, translate one set of languages in /common/lang/ folder into that language and send it to us (devops@rhymix.org).';

View file

@ -316,7 +316,7 @@ class PointAdminController extends Point
// A variable to store member's points // A variable to store member's points
$member = array(); $member = array();
// Get member infomation // Get member information
$output = executeQueryArray('point.getMemberCount'); $output = executeQueryArray('point.getMemberCount');
if(!$output->toBool()) return $output; if(!$output->toBool()) return $output;

View file

@ -12,7 +12,7 @@ class PointAdminView extends Point
*/ */
function init() function init()
{ {
// Get teh configuration information // Get the configuration information
$oModuleModel = getModel('module'); $oModuleModel = getModel('module');
$config = $oModuleModel->getModuleConfig('point'); $config = $oModuleModel->getModuleConfig('point');
// Set the configuration variable // Set the configuration variable

View file

@ -15,7 +15,7 @@ class PollModel extends Poll
} }
/** /**
* @brief returns poll infomation * @brief returns poll information
*/ */
public function _getPollinfo($poll_srl) public function _getPollinfo($poll_srl)
{ {
@ -77,7 +77,7 @@ class PollModel extends Poll
} }
/** /**
* @brief returns poll infomation * @brief returns poll information
*/ */
public function getPollinfo() public function getPollinfo()
{ {
@ -88,7 +88,7 @@ class PollModel extends Poll
} }
/** /**
* @brief returns poll item infomation * @brief returns poll item information
*/ */
public function getPollitemInfo() public function getPollitemInfo()
{ {

View file

@ -3,7 +3,7 @@
<title xml:lang="ko">설문조사 기본 스킨</title> <title xml:lang="ko">설문조사 기본 스킨</title>
<title xml:lang="zh-CN">投票系统默认皮肤</title> <title xml:lang="zh-CN">投票系统默认皮肤</title>
<title xml:lang="jp">アンケート調査デフォルトスキン</title> <title xml:lang="jp">アンケート調査デフォルトスキン</title>
<title xml:lang="en">Default Skin of teh Poll</title> <title xml:lang="en">Default Skin of the Poll</title>
<title xml:lang="vi">Skin mặc định của thăm dò</title> <title xml:lang="vi">Skin mặc định của thăm dò</title>
<title xml:lang="zh-TW">投票系統預設面板</title> <title xml:lang="zh-TW">投票系統預設面板</title>
<title xml:lang="tr">Oylamanın Varsayılan Dış Görünümü</title> <title xml:lang="tr">Oylamanın Varsayılan Dış Görünümü</title>