首页 > 其他分享 >MIT协议原文及中文翻译

MIT协议原文及中文翻译

时间:2023-05-03 15:33:42浏览次数:38  
标签:中文翻译 原文 软件 拷贝 SOFTWARE MIT Software

MIT协议原文及翻译

参考链接

原文:

Copyright ( C ) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files ( the "Software" ) , to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

翻译:

只要满足以下条件,许可被赋予任何( 获得本软件拷贝及相关文档的 ) 人 ,这些人可以免费地、没有限制地处理本软件 ( 包括随意地使用、拷贝、合并、发布、分发、再许可、卖拷贝,以及再授权其他人 ( 那些被装配了本软件的 ) 做上面说的这些事 ) 。

以上版权声明和许可声明都必须包含 ( 在所有的本软件的完整拷贝或者实质性成分中 ) 。

本软件是AS IS的( 不提供任何保证, ( 不管是显式的还是隐式的,包括但不限于适销性保证、适用性保证、非侵权性保证 ) ) ,在任何情况下, ( 对于任何的权益追索、损失赔偿或者任何追责 ) ,作者或者版权所有人都不会负责。( 无论这些追责产生自合同、侵权,还是直接或间接来自于本软件以及与本软件使用或经营有关的情形 )

标签:中文翻译,原文,软件,拷贝,SOFTWARE,MIT,Software
From: https://www.cnblogs.com/ktshuchong/p/17369120.html

相关文章

  • LGPL协议原文及中文翻译
    LGPL协议原文及中文翻译参考链接原文:GNULESSERGENERALPUBLICLICENSEVersion3,29June2007Copyright(C)2007FreeSoftwareFoundation,Inc.https://fsf.org/Everyoneispermittedtocopyanddistributeverbatimcopiesofthislicensedocument,butchang......
  • Apache协议原文及中文翻译
    Apache协议原文及中文翻译参考链接原文ApacheLicenseVersion2.0,January2004http://www.apache.org/licenses/TERMSANDCONDITIONSFORUSE,REPRODUCTION,ANDDISTRIBUTION1.Definitions."License"shallmeanthetermsandcondition......
  • Git - commit a single file
    Use'gitcommit-m<commit_message>--<path_to_file>'tocommitasinglefile. $>gitstatusOnbranchmainYourbranchisuptodatewith'origin/main'.Changestobecommitted:(use"gitrestore--staged<file......
  • commitlint.config的配置和中文文档(附使用示例)
     https://blog.csdn.net/qq_38290251/article/details/111646491https://blog.csdn.net/qq_21197033/article/details/128609033 TRANSLATEwithxEnglishArabicHebrewPolishBulgarianHindiPortugueseCatalanHmongDawRomanianChineseSimpl......
  • git 配置commit-msg
    git配置commit-msg#安装huskynpminstallhusky-D#设置运行脚本并运行npmset-scriptprepare"huskyinstall"npmrunprepare#安装commitlint根据操作系统选一种#Installandconfigureifneedednpminstall--save-dev@commitlint/{cli,config-conventional......
  • 配置.husky和commitlint以及Eslint
    代码规范ESLint+Prettier(项目是基于uniapp+vue3+ts)无脑执行以下操作,让你在vue3+ts的项目中愉快的使用eslint和prettier。npminstalleslintprettier--save-devnpminstalleslint-config-prettiereslint-plugin-prettiereslint-plugin-vue--save-devnpminstall......
  • SSL/TLS 受诫礼(BAR-MITZVAH)攻击漏洞(CVE-2015-2808) 修复方案
    详细描述SSL/TLS协议是一个被广泛使用的加密协议,BarMitzvah攻击实际上是利用了"不变性漏洞",这是RC4算法中的一个缺陷,它能够在某些情况下泄露SSL/TLS加密流量中的密文,从而将账户用户名密码,信用卡数据和其他敏感信息泄露给黑客。解决方法临时解决方法:服务器端(SSL/TLS)--------1......
  • vue3 uniapp Uncaught (in promise) TypeError: Cannot read properties of null (rea
    引发这个问题是在三级页面中使用uni.navigateBack({delta:2})返回到一级页面再重一级页面进入二级页面二级页面中引用的组件引发的emitsOptions报错//原因:我在二级页面中的组件使用ts的emit写法引发的报错constemit=defineEmits<{(e:'confirm',contents:string):......
  • git撤销刚才的commit
    在我们使用git作为版本控制工具进行代码管理之后,经常性的会碰到一个问题:gitcommit后,如何撤销commit,下面详细讲一下。gitaddnewFilesgitcommit-m'新增xx页面'执行commit后,还没执行push时,想要撤销这次的commit,该怎么办?解决方案:我们可以使用命令:gitreset--softHEAD^ 这样......
  • 2014 Pacific Northwest Region Programming Contest—Division 2 Problem U — lim
    Incollegefootball,manydifferentsourcescreatealistoftheTop25teamsinthecountry.Sinceit’ssubjective,theselistsoftendiffer,butthey’reusuallyverysimilar.Yourjobistocomparetwooftheselists,anddeterminewheretheyaresimi......