init repo
This commit is contained in:
20
NodeJsProjects/CoAuthoring/install/ConfigMongoDB.bat
Normal file
20
NodeJsProjects/CoAuthoring/install/ConfigMongoDB.bat
Normal file
@@ -0,0 +1,20 @@
|
||||
ECHO OFF
|
||||
SET DB_CONFIG_FILE=config_db.tmp
|
||||
SET DB_NAME=coAuthoring
|
||||
|
||||
ECHO.
|
||||
ECHO ----------------------------------------
|
||||
ECHO Configure %DB_NAME% database
|
||||
ECHO ----------------------------------------
|
||||
|
||||
ECHO db.createCollection("messages") > %DB_CONFIG_FILE%
|
||||
ECHO db.messages.ensureIndex({"docid":1}) >> %DB_CONFIG_FILE%
|
||||
ECHO db.createCollection("changes") >> %DB_CONFIG_FILE%
|
||||
ECHO db.changes.ensureIndex({"docid":1}) >> %DB_CONFIG_FILE%
|
||||
ECHO exit >> %DB_CONFIG_FILE%
|
||||
|
||||
call %~dp0..\mongodb\bin\mongo.exe %DB_NAME% < %DB_CONFIG_FILE% || exit /b 1
|
||||
|
||||
DEL /Q %DB_CONFIG_FILE%
|
||||
|
||||
exit /b 0
|
||||
22
NodeJsProjects/CoAuthoring/install/InstallNodeJSModules.bat
Normal file
22
NodeJsProjects/CoAuthoring/install/InstallNodeJSModules.bat
Normal file
@@ -0,0 +1,22 @@
|
||||
ECHO OFF
|
||||
|
||||
SET RUN_FOLDER=%CD%
|
||||
|
||||
CD /D %~dp0..\ || exit /b 1
|
||||
|
||||
ECHO.
|
||||
ECHO ----------------------------------------
|
||||
ECHO Install node.js modules
|
||||
ECHO ----------------------------------------
|
||||
|
||||
call npm install express@3.4.8 --production || exit /b 1
|
||||
call npm install underscore@1.5.2 --production || exit /b 1
|
||||
call npm install sockjs@0.3.8 --production|| exit /b 1
|
||||
call npm install mongodb@1.1.4 --production || exit /b 1
|
||||
|
||||
cd /D ..\Common || exit /b 1
|
||||
call npm install log4js@0.6.2 --production || exit /b 1
|
||||
|
||||
CD /D %RUN_FOLDER% || exit /b 1
|
||||
|
||||
exit /b 0
|
||||
5
NodeJsProjects/CoAuthoring/install/StartMongoDb.bat
Normal file
5
NodeJsProjects/CoAuthoring/install/StartMongoDb.bat
Normal file
@@ -0,0 +1,5 @@
|
||||
SET DB_FILE_PATH=..\data\db
|
||||
IF NOT EXIST %DB_FILE_PATH% MKDIR %DB_FILE_PATH%
|
||||
|
||||
call ..\mongodb\bin\mongod.exe --journal --dbpath "%DB_FILE_PATH%"
|
||||
pause
|
||||
2
NodeJsProjects/CoAuthoring/install/StartServer.bat
Normal file
2
NodeJsProjects/CoAuthoring/install/StartServer.bat
Normal file
@@ -0,0 +1,2 @@
|
||||
call node --debug ../sources/server.js
|
||||
pause
|
||||
902
NodeJsProjects/CoAuthoring/sources/DocsCoServer.js
Normal file
902
NodeJsProjects/CoAuthoring/sources/DocsCoServer.js
Normal file
@@ -0,0 +1,902 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var sockjs = require("sockjs"),
|
||||
_ = require("underscore"),
|
||||
dataBase = null,
|
||||
http = require("http"),
|
||||
config = require("./config.json");
|
||||
if (config["mongodb"]) {
|
||||
dataBase = require("./database");
|
||||
}
|
||||
var logger = require("./../../Common/sources/logger");
|
||||
var c_oAscRecalcIndexTypes = {
|
||||
RecalcIndexAdd: 1,
|
||||
RecalcIndexRemove: 2
|
||||
};
|
||||
var c_oAscLockTypeElem = {
|
||||
Range: 1,
|
||||
Object: 2,
|
||||
Sheet: 3
|
||||
};
|
||||
var c_oAscLockTypeElemSubType = {
|
||||
DeleteColumns: 1,
|
||||
InsertColumns: 2,
|
||||
DeleteRows: 3,
|
||||
InsertRows: 4,
|
||||
ChangeProperties: 5
|
||||
};
|
||||
var c_oAscLockTypeElemPresentation = {
|
||||
Object: 1,
|
||||
Slide: 2,
|
||||
Presentation: 3
|
||||
};
|
||||
function CRecalcIndexElement(recalcType, position, bIsSaveIndex) {
|
||||
if (! (this instanceof CRecalcIndexElement)) {
|
||||
return new CRecalcIndexElement(recalcType, position, bIsSaveIndex);
|
||||
}
|
||||
this._recalcType = recalcType;
|
||||
this._position = position;
|
||||
this._count = 1;
|
||||
this.m_bIsSaveIndex = !!bIsSaveIndex;
|
||||
return this;
|
||||
}
|
||||
CRecalcIndexElement.prototype = {
|
||||
constructor: CRecalcIndexElement,
|
||||
getLockOther: function (position, type) {
|
||||
var inc = (c_oAscRecalcIndexTypes.RecalcIndexAdd === this._recalcType) ? +1 : -1;
|
||||
if (position === this._position && c_oAscRecalcIndexTypes.RecalcIndexRemove === this._recalcType && true === this.m_bIsSaveIndex) {
|
||||
return null;
|
||||
} else {
|
||||
if (position === this._position && c_oAscRecalcIndexTypes.RecalcIndexRemove === this._recalcType && c_oAscLockTypes.kLockTypeMine === type && false === this.m_bIsSaveIndex) {
|
||||
return null;
|
||||
} else {
|
||||
if (position < this._position) {
|
||||
return position;
|
||||
} else {
|
||||
return (position + inc);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
getLockSaveOther: function (position, type) {
|
||||
if (this.m_bIsSaveIndex) {
|
||||
return position;
|
||||
}
|
||||
var inc = (c_oAscRecalcIndexTypes.RecalcIndexAdd === this._recalcType) ? +1 : -1;
|
||||
if (position === this._position && c_oAscRecalcIndexTypes.RecalcIndexRemove === this._recalcType && true === this.m_bIsSaveIndex) {
|
||||
return null;
|
||||
} else {
|
||||
if (position === this._position && c_oAscRecalcIndexTypes.RecalcIndexRemove === this._recalcType && c_oAscLockTypes.kLockTypeMine === type && false === this.m_bIsSaveIndex) {
|
||||
return null;
|
||||
} else {
|
||||
if (position < this._position) {
|
||||
return position;
|
||||
} else {
|
||||
return (position + inc);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
getLockMe: function (position) {
|
||||
var inc = (c_oAscRecalcIndexTypes.RecalcIndexAdd === this._recalcType) ? -1 : +1;
|
||||
if (position < this._position) {
|
||||
return position;
|
||||
} else {
|
||||
return (position + inc);
|
||||
}
|
||||
},
|
||||
getLockMe2: function (position) {
|
||||
var inc = (c_oAscRecalcIndexTypes.RecalcIndexAdd === this._recalcType) ? -1 : +1;
|
||||
if (true !== this.m_bIsSaveIndex || position < this._position) {
|
||||
return position;
|
||||
} else {
|
||||
return (position + inc);
|
||||
}
|
||||
}
|
||||
};
|
||||
function CRecalcIndex() {
|
||||
if (! (this instanceof CRecalcIndex)) {
|
||||
return new CRecalcIndex();
|
||||
}
|
||||
this._arrElements = [];
|
||||
return this;
|
||||
}
|
||||
CRecalcIndex.prototype = {
|
||||
constructor: CRecalcIndex,
|
||||
add: function (recalcType, position, count, bIsSaveIndex) {
|
||||
for (var i = 0; i < count; ++i) {
|
||||
this._arrElements.push(new CRecalcIndexElement(recalcType, position, bIsSaveIndex));
|
||||
}
|
||||
},
|
||||
clear: function () {
|
||||
this._arrElements.length = 0;
|
||||
},
|
||||
getLockOther: function (position, type) {
|
||||
var newPosition = position;
|
||||
var count = this._arrElements.length;
|
||||
for (var i = 0; i < count; ++i) {
|
||||
newPosition = this._arrElements[i].getLockOther(newPosition, type);
|
||||
if (null === newPosition) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return newPosition;
|
||||
},
|
||||
getLockSaveOther: function (position, type) {
|
||||
var newPosition = position;
|
||||
var count = this._arrElements.length;
|
||||
for (var i = 0; i < count; ++i) {
|
||||
newPosition = this._arrElements[i].getLockSaveOther(newPosition, type);
|
||||
if (null === newPosition) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return newPosition;
|
||||
},
|
||||
getLockMe: function (position) {
|
||||
var newPosition = position;
|
||||
var count = this._arrElements.length;
|
||||
for (var i = count - 1; i >= 0; --i) {
|
||||
newPosition = this._arrElements[i].getLockMe(newPosition);
|
||||
if (null === newPosition) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return newPosition;
|
||||
},
|
||||
getLockMe2: function (position) {
|
||||
var newPosition = position;
|
||||
var count = this._arrElements.length;
|
||||
for (var i = count - 1; i >= 0; --i) {
|
||||
newPosition = this._arrElements[i].getLockMe2(newPosition);
|
||||
if (null === newPosition) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return newPosition;
|
||||
}
|
||||
};
|
||||
exports.install = function (server, callbackFunction) {
|
||||
var sockjs_opts = {
|
||||
sockjs_url: "http://cdn.sockjs.org/sockjs-0.3.min.js"
|
||||
},
|
||||
sockjs_echo = sockjs.createServer(sockjs_opts),
|
||||
connections = [],
|
||||
messages = {},
|
||||
objchanges = {},
|
||||
indexuser = {},
|
||||
locks = {},
|
||||
arrsavelock = [],
|
||||
dataHandler,
|
||||
urlParse = new RegExp("^/doc/([0-9-.a-zA-Z_=]*)/c.+", "i"),
|
||||
serverPort = 80;
|
||||
sockjs_echo.on("connection", function (conn) {
|
||||
if (null == conn) {
|
||||
logger.error("null == conn");
|
||||
return;
|
||||
}
|
||||
conn.on("data", function (message) {
|
||||
try {
|
||||
var data = JSON.parse(message);
|
||||
dataHandler[data.type](conn, data);
|
||||
} catch(e) {
|
||||
logger.error("error receiving response:" + e);
|
||||
}
|
||||
});
|
||||
conn.on("error", function () {
|
||||
logger.error("On error");
|
||||
});
|
||||
conn.on("close", function () {
|
||||
var connection = this,
|
||||
docLock, userLocks, participants, reconected;
|
||||
logger.info("Connection closed or timed out");
|
||||
connections = _.reject(connections, function (el) {
|
||||
return el.connection.id === connection.id;
|
||||
});
|
||||
reconected = _.any(connections, function (el) {
|
||||
return el.connection.sessionId === connection.sessionId;
|
||||
});
|
||||
var state = (false == reconected) ? false : undefined;
|
||||
participants = getParticipants(conn.docId);
|
||||
var participantsMap = _.map(participants, function (conn) {
|
||||
return {
|
||||
id: conn.connection.userId,
|
||||
username: conn.connection.userName
|
||||
};
|
||||
});
|
||||
sendParticipantsState(participants, state, connection.userId, connection.userName, participantsMap);
|
||||
if (!reconected) {
|
||||
if (undefined != arrsavelock[conn.docId] && connection.userId == arrsavelock[conn.docId].user) {
|
||||
if (null != arrsavelock[conn.docId].saveLockTimeOutId) {
|
||||
clearTimeout(arrsavelock[conn.docId].saveLockTimeOutId);
|
||||
}
|
||||
arrsavelock[conn.docId] = undefined;
|
||||
}
|
||||
if (0 >= participants.length) {
|
||||
if (dataBase) {
|
||||
dataBase.remove("messages", {
|
||||
docid: conn.docId
|
||||
});
|
||||
}
|
||||
delete messages[conn.docId];
|
||||
if (objchanges[conn.docId] && 0 < objchanges[conn.docId].length) {
|
||||
sendChangesToServer(conn.serverHost, conn.serverPath, conn.docId);
|
||||
}
|
||||
if (dataBase) {
|
||||
dataBase.remove("changes", {
|
||||
docid: conn.docId
|
||||
});
|
||||
}
|
||||
delete objchanges[conn.docId];
|
||||
if (null != arrsavelock[conn.docId] && null != arrsavelock[conn.docId].saveLockTimeOutId) {
|
||||
clearTimeout(arrsavelock[conn.docId].saveLockTimeOutId);
|
||||
}
|
||||
arrsavelock[conn.docId] = undefined;
|
||||
}
|
||||
docLock = locks[connection.docId];
|
||||
if (docLock) {
|
||||
userLocks = [];
|
||||
if ("array" === typeOf(docLock)) {
|
||||
for (var nIndex = 0; nIndex < docLock.length; ++nIndex) {
|
||||
if (docLock[nIndex].sessionId === connection.sessionId) {
|
||||
userLocks.push(docLock[nIndex]);
|
||||
docLock.splice(nIndex, 1);
|
||||
--nIndex;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (var keyLockElem in docLock) {
|
||||
if (docLock[keyLockElem].sessionId === connection.sessionId) {
|
||||
userLocks.push(docLock[keyLockElem]);
|
||||
delete docLock[keyLockElem];
|
||||
}
|
||||
}
|
||||
}
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "releaselock",
|
||||
locks: _.map(userLocks, function (e) {
|
||||
return {
|
||||
block: e.block,
|
||||
user: e.user,
|
||||
time: Date.now(),
|
||||
changes: null
|
||||
};
|
||||
})
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
function sendData(conn, data) {
|
||||
conn.write(JSON.stringify(data));
|
||||
}
|
||||
function sendParticipantsState(participants, stateConnect, _userId, _userName, participantsMap) {
|
||||
_.each(participants, function (participant) {
|
||||
if (participant.connection.userId !== _userId) {
|
||||
sendData(participant.connection, {
|
||||
type: "participants",
|
||||
participants: participantsMap
|
||||
});
|
||||
sendData(participant.connection, {
|
||||
type: "connectstate",
|
||||
state: stateConnect,
|
||||
id: _userId,
|
||||
username: _userName
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
function getParticipants(docId, exludeuserId) {
|
||||
return _.filter(connections, function (el) {
|
||||
return el.connection.docId === docId && el.connection.userId !== exludeuserId;
|
||||
});
|
||||
}
|
||||
function sendChangesToServer(serverHost, serverPath, docId) {
|
||||
if (!serverHost || !serverPath) {
|
||||
return;
|
||||
}
|
||||
var options = {
|
||||
host: serverHost,
|
||||
port: serverPort,
|
||||
path: serverPath,
|
||||
method: "POST"
|
||||
};
|
||||
var req = http.request(options, function (res) {
|
||||
res.setEncoding("utf8");
|
||||
});
|
||||
req.on("error", function (e) {
|
||||
logger.warn("problem with request on server: " + e.message);
|
||||
});
|
||||
var sendData = JSON.stringify({
|
||||
"id": docId,
|
||||
"c": "cc"
|
||||
});
|
||||
req.write(sendData);
|
||||
req.end();
|
||||
}
|
||||
function _recalcLockArray(userId, _locks, oRecalcIndexColumns, oRecalcIndexRows) {
|
||||
if (null == _locks) {
|
||||
return;
|
||||
}
|
||||
var count = _locks.length;
|
||||
var element = null,
|
||||
oRangeOrObjectId = null;
|
||||
var i;
|
||||
var sheetId = -1;
|
||||
for (i = 0; i < count; ++i) {
|
||||
if (userId === _locks[i].user) {
|
||||
continue;
|
||||
}
|
||||
element = _locks[i].block;
|
||||
if (c_oAscLockTypeElem.Range !== element["type"] || c_oAscLockTypeElemSubType.InsertColumns === element["subType"] || c_oAscLockTypeElemSubType.InsertRows === element["subType"]) {
|
||||
continue;
|
||||
}
|
||||
sheetId = element["sheetId"];
|
||||
oRangeOrObjectId = element["rangeOrObjectId"];
|
||||
if (oRecalcIndexColumns.hasOwnProperty(sheetId)) {
|
||||
oRangeOrObjectId["c1"] = oRecalcIndexColumns[sheetId].getLockMe2(oRangeOrObjectId["c1"]);
|
||||
oRangeOrObjectId["c2"] = oRecalcIndexColumns[sheetId].getLockMe2(oRangeOrObjectId["c2"]);
|
||||
}
|
||||
if (oRecalcIndexRows.hasOwnProperty(sheetId)) {
|
||||
oRangeOrObjectId["r1"] = oRecalcIndexRows[sheetId].getLockMe2(oRangeOrObjectId["r1"]);
|
||||
oRangeOrObjectId["r2"] = oRecalcIndexRows[sheetId].getLockMe2(oRangeOrObjectId["r2"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
function _addRecalcIndex(oRecalcIndex) {
|
||||
var nIndex = 0;
|
||||
var nRecalcType = c_oAscRecalcIndexTypes.RecalcIndexAdd;
|
||||
var oRecalcIndexElement = null;
|
||||
var oRecalcIndexResult = {};
|
||||
for (var sheetId in oRecalcIndex) {
|
||||
if (oRecalcIndex.hasOwnProperty(sheetId)) {
|
||||
if (!oRecalcIndexResult.hasOwnProperty(sheetId)) {
|
||||
oRecalcIndexResult[sheetId] = new CRecalcIndex();
|
||||
}
|
||||
for (; nIndex < oRecalcIndex[sheetId]._arrElements.length; ++nIndex) {
|
||||
oRecalcIndexElement = oRecalcIndex[sheetId]._arrElements[nIndex];
|
||||
if (true === oRecalcIndexElement.m_bIsSaveIndex) {
|
||||
continue;
|
||||
}
|
||||
nRecalcType = (c_oAscRecalcIndexTypes.RecalcIndexAdd === oRecalcIndexElement._recalcType) ? c_oAscRecalcIndexTypes.RecalcIndexRemove : c_oAscRecalcIndexTypes.RecalcIndexAdd;
|
||||
oRecalcIndexResult[sheetId].add(nRecalcType, oRecalcIndexElement._position, oRecalcIndexElement._count, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
return oRecalcIndexResult;
|
||||
}
|
||||
function compareExcelBlock(newBlock, oldBlock) {
|
||||
if (null !== newBlock.subType && null !== oldBlock.subType) {
|
||||
return true;
|
||||
}
|
||||
if ((c_oAscLockTypeElemSubType.ChangeProperties === oldBlock.subType && c_oAscLockTypeElem.Sheet !== newBlock.type) || (c_oAscLockTypeElemSubType.ChangeProperties === newBlock.subType && c_oAscLockTypeElem.Sheet !== oldBlock.type)) {
|
||||
return false;
|
||||
}
|
||||
var resultLock = false;
|
||||
if (newBlock.type === c_oAscLockTypeElem.Range) {
|
||||
if (oldBlock.type === c_oAscLockTypeElem.Range) {
|
||||
if (c_oAscLockTypeElemSubType.InsertRows === oldBlock.subType || c_oAscLockTypeElemSubType.InsertColumns === oldBlock.subType) {
|
||||
resultLock = false;
|
||||
} else {
|
||||
if (isInterSection(newBlock.rangeOrObjectId, oldBlock.rangeOrObjectId)) {
|
||||
resultLock = true;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (oldBlock.type === c_oAscLockTypeElem.Sheet) {
|
||||
resultLock = true;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (newBlock.type === c_oAscLockTypeElem.Sheet) {
|
||||
resultLock = true;
|
||||
} else {
|
||||
if (newBlock.type === c_oAscLockTypeElem.Object) {
|
||||
if (oldBlock.type === c_oAscLockTypeElem.Sheet) {
|
||||
resultLock = true;
|
||||
} else {
|
||||
if (oldBlock.type === c_oAscLockTypeElem.Object && oldBlock.rangeOrObjectId === newBlock.rangeOrObjectId) {
|
||||
resultLock = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return resultLock;
|
||||
}
|
||||
function isInterSection(range1, range2) {
|
||||
if (range2.c1 > range1.c2 || range2.c2 < range1.c1 || range2.r1 > range1.r2 || range2.r2 < range1.r1) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function typeOf(obj) {
|
||||
if (obj === undefined) {
|
||||
return "undefined";
|
||||
}
|
||||
if (obj === null) {
|
||||
return "null";
|
||||
}
|
||||
return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
|
||||
}
|
||||
function comparePresentationBlock(newBlock, oldBlock) {
|
||||
var resultLock = false;
|
||||
switch (newBlock.type) {
|
||||
case c_oAscLockTypeElemPresentation.Presentation:
|
||||
if (c_oAscLockTypeElemPresentation.Presentation === oldBlock.type) {
|
||||
resultLock = newBlock.val === oldBlock.val;
|
||||
}
|
||||
break;
|
||||
case c_oAscLockTypeElemPresentation.Slide:
|
||||
if (c_oAscLockTypeElemPresentation.Slide === oldBlock.type) {
|
||||
resultLock = newBlock.val === oldBlock.val;
|
||||
} else {
|
||||
if (c_oAscLockTypeElemPresentation.Object === oldBlock.type) {
|
||||
resultLock = newBlock.val === oldBlock.slideId;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case c_oAscLockTypeElemPresentation.Object:
|
||||
if (c_oAscLockTypeElemPresentation.Slide === oldBlock.type) {
|
||||
resultLock = newBlock.slideId === oldBlock.val;
|
||||
} else {
|
||||
if (c_oAscLockTypeElemPresentation.Object === oldBlock.type) {
|
||||
resultLock = newBlock.objId === oldBlock.objId;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
return resultLock;
|
||||
}
|
||||
dataHandler = (function () {
|
||||
function auth(conn, data) {
|
||||
if (data.token && data.user) {
|
||||
var parsed = urlParse.exec(conn.url);
|
||||
if (parsed.length > 1) {
|
||||
conn.docId = parsed[1];
|
||||
} else {}
|
||||
if (!indexuser.hasOwnProperty(conn.docId)) {
|
||||
indexuser[conn.docId] = 1;
|
||||
} else {
|
||||
indexuser[conn.docId] += 1;
|
||||
}
|
||||
conn.sessionState = 1;
|
||||
conn.userId = data.user + indexuser[conn.docId];
|
||||
conn.userName = data.username;
|
||||
conn.serverHost = data.serverHost;
|
||||
conn.serverPath = data.serverPath;
|
||||
if (data.sessionId !== null && _.isString(data.sessionId) && data.sessionId !== "") {
|
||||
logger.info("restored old session id=" + data.sessionId);
|
||||
connections = _.reject(connections, function (el) {
|
||||
return el.connection.sessionId === data.sessionId;
|
||||
});
|
||||
conn.sessionId = data.sessionId;
|
||||
} else {
|
||||
conn.sessionId = conn.id;
|
||||
}
|
||||
connections.push({
|
||||
connection: conn
|
||||
});
|
||||
var participants = getParticipants(conn.docId);
|
||||
var participantsMap = _.map(participants, function (conn) {
|
||||
return {
|
||||
id: conn.connection.userId,
|
||||
username: conn.connection.userName
|
||||
};
|
||||
});
|
||||
sendData(conn, {
|
||||
type: "auth",
|
||||
result: 1,
|
||||
sessionId: conn.sessionId,
|
||||
participants: participantsMap,
|
||||
messages: messages[conn.docid],
|
||||
locks: locks[conn.docId],
|
||||
changes: objchanges[conn.docId],
|
||||
indexuser: indexuser[conn.docId]
|
||||
});
|
||||
sendParticipantsState(participants, true, conn.userId, conn.userName, participantsMap);
|
||||
}
|
||||
}
|
||||
function message(conn, data) {
|
||||
var participants = getParticipants(conn.docId),
|
||||
msg = {
|
||||
docid: conn.docId,
|
||||
message: data.message,
|
||||
time: Date.now(),
|
||||
user: conn.userId,
|
||||
username: conn.userName
|
||||
};
|
||||
if (!messages.hasOwnProperty(conn.docId)) {
|
||||
messages[conn.docId] = [msg];
|
||||
} else {
|
||||
messages[conn.docId].push(msg);
|
||||
}
|
||||
logger.info("database insert message: " + JSON.stringify(msg));
|
||||
if (dataBase) {
|
||||
dataBase.insert("messages", msg);
|
||||
}
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "message",
|
||||
messages: [msg]
|
||||
});
|
||||
});
|
||||
}
|
||||
function getlock(conn, data) {
|
||||
var participants = getParticipants(conn.docId),
|
||||
documentLocks;
|
||||
if (!locks.hasOwnProperty(conn.docId)) {
|
||||
locks[conn.docId] = {};
|
||||
}
|
||||
documentLocks = locks[conn.docId];
|
||||
var arrayBlocks = data.block;
|
||||
var isLock = false;
|
||||
var i = 0;
|
||||
var lengthArray = (arrayBlocks) ? arrayBlocks.length : 0;
|
||||
for (; i < lengthArray; ++i) {
|
||||
logger.info("getLock id: " + arrayBlocks[i]);
|
||||
if (documentLocks.hasOwnProperty(arrayBlocks[i]) && documentLocks[arrayBlocks[i]] !== null) {
|
||||
isLock = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (0 === lengthArray) {
|
||||
isLock = true;
|
||||
}
|
||||
if (!isLock) {
|
||||
for (i = 0; i < lengthArray; ++i) {
|
||||
documentLocks[arrayBlocks[i]] = {
|
||||
time: Date.now(),
|
||||
user: conn.userId,
|
||||
block: arrayBlocks[i],
|
||||
sessionId: conn.sessionId
|
||||
};
|
||||
}
|
||||
}
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "getlock",
|
||||
locks: locks[conn.docId]
|
||||
});
|
||||
});
|
||||
}
|
||||
function getlockrange(conn, data) {
|
||||
var participants = getParticipants(conn.docId),
|
||||
documentLocks,
|
||||
documentLock;
|
||||
if (!locks.hasOwnProperty(conn.docId)) {
|
||||
locks[conn.docId] = [];
|
||||
}
|
||||
documentLocks = locks[conn.docId];
|
||||
var arrayBlocks = data.block;
|
||||
var isLock = false;
|
||||
var isExistInArray = false;
|
||||
var i = 0,
|
||||
blockRange = null;
|
||||
var lengthArray = (arrayBlocks) ? arrayBlocks.length : 0;
|
||||
for (; i < lengthArray && false === isLock; ++i) {
|
||||
blockRange = arrayBlocks[i];
|
||||
for (var keyLockInArray in documentLocks) {
|
||||
if (true === isLock) {
|
||||
break;
|
||||
}
|
||||
if (!documentLocks.hasOwnProperty(keyLockInArray)) {
|
||||
continue;
|
||||
}
|
||||
documentLock = documentLocks[keyLockInArray];
|
||||
if (documentLock.user === conn.userId && blockRange.sheetId === documentLock.block.sheetId && blockRange.type === c_oAscLockTypeElem.Object && documentLock.block.type === c_oAscLockTypeElem.Object && documentLock.block.rangeOrObjectId === blockRange.rangeOrObjectId) {
|
||||
isExistInArray = true;
|
||||
break;
|
||||
}
|
||||
if (c_oAscLockTypeElem.Sheet === blockRange.type && c_oAscLockTypeElem.Sheet === documentLock.block.type) {
|
||||
if (documentLock.user === conn.userId) {
|
||||
if (blockRange.sheetId === documentLock.block.sheetId) {
|
||||
isExistInArray = true;
|
||||
break;
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
} else {
|
||||
isLock = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (documentLock.user === conn.userId || !(documentLock.block) || blockRange.sheetId !== documentLock.block.sheetId) {
|
||||
continue;
|
||||
}
|
||||
isLock = compareExcelBlock(blockRange, documentLock.block);
|
||||
}
|
||||
}
|
||||
if (0 === lengthArray) {
|
||||
isLock = true;
|
||||
}
|
||||
if (!isLock && !isExistInArray) {
|
||||
for (i = 0; i < lengthArray; ++i) {
|
||||
blockRange = arrayBlocks[i];
|
||||
documentLocks.push({
|
||||
time: Date.now(),
|
||||
user: conn.userId,
|
||||
block: blockRange,
|
||||
sessionId: conn.sessionId
|
||||
});
|
||||
}
|
||||
}
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "getlock",
|
||||
locks: locks[conn.docId]
|
||||
});
|
||||
});
|
||||
}
|
||||
function getlockpresentation(conn, data) {
|
||||
var participants = getParticipants(conn.docId),
|
||||
documentLocks,
|
||||
documentLock;
|
||||
if (!locks.hasOwnProperty(conn.docId)) {
|
||||
locks[conn.docId] = [];
|
||||
}
|
||||
documentLocks = locks[conn.docId];
|
||||
var arrayBlocks = data.block;
|
||||
var isLock = false;
|
||||
var isExistInArray = false;
|
||||
var i = 0,
|
||||
blockRange = null;
|
||||
var lengthArray = (arrayBlocks) ? arrayBlocks.length : 0;
|
||||
for (; i < lengthArray && false === isLock; ++i) {
|
||||
blockRange = arrayBlocks[i];
|
||||
for (var keyLockInArray in documentLocks) {
|
||||
if (true === isLock) {
|
||||
break;
|
||||
}
|
||||
if (!documentLocks.hasOwnProperty(keyLockInArray)) {
|
||||
continue;
|
||||
}
|
||||
documentLock = documentLocks[keyLockInArray];
|
||||
if (documentLock.user === conn.userId || !(documentLock.block)) {
|
||||
continue;
|
||||
}
|
||||
isLock = comparePresentationBlock(blockRange, documentLock.block);
|
||||
}
|
||||
}
|
||||
if (0 === lengthArray) {
|
||||
isLock = true;
|
||||
}
|
||||
if (!isLock && !isExistInArray) {
|
||||
for (i = 0; i < lengthArray; ++i) {
|
||||
blockRange = arrayBlocks[i];
|
||||
documentLocks.push({
|
||||
time: Date.now(),
|
||||
user: conn.userId,
|
||||
block: blockRange,
|
||||
sessionId: conn.sessionId
|
||||
});
|
||||
}
|
||||
}
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "getlock",
|
||||
locks: locks[conn.docId]
|
||||
});
|
||||
});
|
||||
}
|
||||
function savechanges(conn, data) {
|
||||
var docLock, userLocks, participants;
|
||||
if (data.endSaveChanges) {
|
||||
docLock = locks[conn.docId];
|
||||
if (docLock) {
|
||||
if ("array" === typeOf(docLock)) {
|
||||
userLocks = [];
|
||||
for (var nIndex = 0; nIndex < docLock.length; ++nIndex) {
|
||||
if (null !== docLock[nIndex] && docLock[nIndex].sessionId === conn.sessionId) {
|
||||
userLocks.push(docLock[nIndex]);
|
||||
docLock.splice(nIndex, 1);
|
||||
--nIndex;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
userLocks = _.filter(docLock, function (el) {
|
||||
return el !== null && el.sessionId === conn.sessionId;
|
||||
});
|
||||
for (var i = 0; i < userLocks.length; i++) {
|
||||
delete docLock[userLocks[i].block];
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
userLocks = [];
|
||||
}
|
||||
var objchange = {
|
||||
docid: conn.docId,
|
||||
changes: data.changes,
|
||||
time: Date.now(),
|
||||
user: conn.userId
|
||||
};
|
||||
if (!objchanges.hasOwnProperty(conn.docId)) {
|
||||
objchanges[conn.docId] = [objchange];
|
||||
} else {
|
||||
objchanges[conn.docId].push(objchange);
|
||||
}
|
||||
logger.info("database insert changes: " + JSON.stringify(objchange));
|
||||
if (dataBase) {
|
||||
dataBase.insert("changes", objchange);
|
||||
}
|
||||
if (!data.endSaveChanges) {
|
||||
sendData(conn, {
|
||||
type: "savePartChanges"
|
||||
});
|
||||
} else {
|
||||
if (data.isExcel) {
|
||||
var oElement = null;
|
||||
var oRecalcIndexColumns = null,
|
||||
oRecalcIndexRows = null;
|
||||
var oChanges = JSON.parse(data.changes);
|
||||
var nCount = oChanges.length;
|
||||
var nIndexChanges = 0;
|
||||
for (; nIndexChanges < nCount; ++nIndexChanges) {
|
||||
oElement = oChanges[nIndexChanges];
|
||||
if ("object" === typeof oElement) {
|
||||
if ("0" === oElement["type"]) {
|
||||
oRecalcIndexColumns = _addRecalcIndex(oElement["index"]);
|
||||
} else {
|
||||
if ("1" === oElement["type"]) {
|
||||
oRecalcIndexRows = _addRecalcIndex(oElement["index"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null !== oRecalcIndexColumns && null !== oRecalcIndexRows) {
|
||||
_recalcLockArray(conn.userId, locks[conn.docId], oRecalcIndexColumns, oRecalcIndexRows);
|
||||
oRecalcIndexColumns = null;
|
||||
oRecalcIndexRows = null;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
participants = getParticipants(conn.docId, conn.userId);
|
||||
_.each(participants, function (participant) {
|
||||
sendData(participant.connection, {
|
||||
type: "savechanges",
|
||||
changes: data.changes,
|
||||
locks: _.map(userLocks, function (e) {
|
||||
return {
|
||||
block: e.block,
|
||||
user: e.user,
|
||||
time: Date.now(),
|
||||
changes: null
|
||||
};
|
||||
})
|
||||
});
|
||||
});
|
||||
}
|
||||
function issavelock(conn) {
|
||||
var _docId = conn.docId;
|
||||
var _userId = conn.userId;
|
||||
var _time = Date.now();
|
||||
var isSaveLock = (undefined === arrsavelock[_docId]) ? false : arrsavelock[_docId].savelock;
|
||||
if (false === isSaveLock) {
|
||||
arrsavelock[conn.docId] = {
|
||||
docid: _docId,
|
||||
savelock: true,
|
||||
time: Date.now(),
|
||||
user: conn.userId
|
||||
};
|
||||
var _tmpSaveLock = arrsavelock[_docId];
|
||||
arrsavelock[conn.docId].saveLockTimeOutId = setTimeout(function () {
|
||||
if (_tmpSaveLock && _userId == _tmpSaveLock.user && _time == _tmpSaveLock.time) {
|
||||
arrsavelock[_docId] = undefined;
|
||||
}
|
||||
},
|
||||
60000);
|
||||
}
|
||||
sendData(conn, {
|
||||
type: "savelock",
|
||||
savelock: isSaveLock
|
||||
});
|
||||
}
|
||||
function unsavelock(conn) {
|
||||
if (undefined != arrsavelock[conn.docId] && conn.userId != arrsavelock[conn.docId].user) {
|
||||
return;
|
||||
}
|
||||
if (arrsavelock[conn.docId] && null != arrsavelock[conn.docId].saveLockTimeOutId) {
|
||||
clearTimeout(arrsavelock[conn.docId].saveLockTimeOutId);
|
||||
}
|
||||
arrsavelock[conn.docId] = undefined;
|
||||
sendData(conn, {
|
||||
type: "unsavelock"
|
||||
});
|
||||
}
|
||||
function getmessages(conn) {
|
||||
sendData(conn, {
|
||||
type: "message",
|
||||
messages: messages[conn.docId]
|
||||
});
|
||||
}
|
||||
function getusers(conn) {
|
||||
var participants = getParticipants(conn.docId);
|
||||
sendData(conn, {
|
||||
type: "getusers",
|
||||
participants: _.map(participants, function (conn) {
|
||||
return {
|
||||
id: conn.connection.userId,
|
||||
username: conn.connection.userName
|
||||
};
|
||||
})
|
||||
});
|
||||
}
|
||||
return {
|
||||
auth: auth,
|
||||
message: message,
|
||||
getlock: getlock,
|
||||
getlockrange: getlockrange,
|
||||
getlockpresentation: getlockpresentation,
|
||||
savechanges: savechanges,
|
||||
issavelock: issavelock,
|
||||
unsavelock: unsavelock,
|
||||
getmessages: getmessages,
|
||||
getusers: getusers
|
||||
};
|
||||
} ());
|
||||
sockjs_echo.installHandlers(server, {
|
||||
prefix: "/doc/[0-9-.a-zA-Z_=]*/c",
|
||||
log: function (severity, message) {
|
||||
logger.info(message);
|
||||
}
|
||||
});
|
||||
var callbackLoadMessages = (function (arrayElements) {
|
||||
if (null != arrayElements) {
|
||||
messages = arrayElements;
|
||||
if (dataBase) {
|
||||
dataBase.remove("messages", {});
|
||||
}
|
||||
}
|
||||
if (dataBase) {
|
||||
dataBase.load("changes", callbackLoadChanges);
|
||||
} else {
|
||||
callbackLoadChanges(null);
|
||||
}
|
||||
});
|
||||
var callbackLoadChanges = (function (arrayElements) {
|
||||
if (null != arrayElements) {
|
||||
if (dataBase) {
|
||||
dataBase.remove("changes", {});
|
||||
}
|
||||
}
|
||||
callbackFunction();
|
||||
});
|
||||
if (dataBase) {
|
||||
dataBase.load("messages", callbackLoadMessages);
|
||||
} else {
|
||||
callbackLoadMessages(null);
|
||||
}
|
||||
};
|
||||
11
NodeJsProjects/CoAuthoring/sources/config.json
Normal file
11
NodeJsProjects/CoAuthoring/sources/config.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"server": {
|
||||
"port": 8000,
|
||||
"mode": "development"
|
||||
},
|
||||
"no_mongodb": {
|
||||
"host": "localhost",
|
||||
"port": 8000,
|
||||
"database": "coAuthoring"
|
||||
}
|
||||
}
|
||||
116
NodeJsProjects/CoAuthoring/sources/database.js
Normal file
116
NodeJsProjects/CoAuthoring/sources/database.js
Normal file
@@ -0,0 +1,116 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var mongoDB = require("mongodb");
|
||||
var config = require("./config.json");
|
||||
var _errorConnection = true;
|
||||
var logger = require("./../../Common/sources/logger");
|
||||
function CreateDbClient() {
|
||||
return new mongoDB.Db(config["mongodb"]["database"], new mongoDB.Server(config["mongodb"]["host"], config["mongodb"]["port"], {
|
||||
auto_reconnect: true
|
||||
}), {
|
||||
safe: false
|
||||
});
|
||||
}
|
||||
exports.insert = function (_collectionName, _newElement) {
|
||||
var _db = CreateDbClient();
|
||||
if (!_db) {
|
||||
logger.error("Error _db");
|
||||
return;
|
||||
}
|
||||
_db.open(function (err, db) {
|
||||
if (!err) {
|
||||
db.collection(_collectionName, function (err, collection) {
|
||||
if (!err) {
|
||||
collection.insert(_newElement);
|
||||
} else {
|
||||
logger.error("Error collection");
|
||||
return;
|
||||
}
|
||||
db.close();
|
||||
});
|
||||
} else {
|
||||
logger.error("Error open database");
|
||||
return;
|
||||
}
|
||||
});
|
||||
};
|
||||
exports.remove = function (_collectionName, _removeElements) {
|
||||
var _db = CreateDbClient();
|
||||
if (!_db) {
|
||||
logger.error("Error _db");
|
||||
return;
|
||||
}
|
||||
_db.open(function (err, db) {
|
||||
if (!err) {
|
||||
db.collection(_collectionName, function (err, collection) {
|
||||
if (!err) {
|
||||
collection.remove(_removeElements, function (err, collection) {
|
||||
logger.info("All elements remove");
|
||||
});
|
||||
} else {
|
||||
logger.error("Error collection");
|
||||
return;
|
||||
}
|
||||
db.close();
|
||||
});
|
||||
} else {
|
||||
logger.error("Error open database");
|
||||
return;
|
||||
}
|
||||
});
|
||||
};
|
||||
exports.load = function (_collectionName, callbackFunction) {
|
||||
var _db = CreateDbClient();
|
||||
if (!_db) {
|
||||
logger.error("Error _db");
|
||||
return callbackFunction(null);
|
||||
}
|
||||
var result = [];
|
||||
_db.open(function (err, db) {
|
||||
db.collection(_collectionName, function (err, collection) {
|
||||
collection.find(function (err, cursor) {
|
||||
cursor.each(function (err, item) {
|
||||
if (item != null) {
|
||||
if (!result.hasOwnProperty(item.docid)) {
|
||||
result[item.docid] = [item];
|
||||
} else {
|
||||
result[item.docid].push(item);
|
||||
}
|
||||
} else {
|
||||
callbackFunction(result);
|
||||
}
|
||||
});
|
||||
db.close();
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
71
NodeJsProjects/CoAuthoring/sources/server.js
Normal file
71
NodeJsProjects/CoAuthoring/sources/server.js
Normal file
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var config = require("./config.json");
|
||||
process.env.NODE_ENV = config["server"]["mode"];
|
||||
var logger = require("./../../Common/sources/logger");
|
||||
var express = require("express");
|
||||
var http = require("http");
|
||||
var https = require("https");
|
||||
var fs = require("fs");
|
||||
var app = express();
|
||||
var server = {};
|
||||
if (config["ssl"]) {
|
||||
var privateKey = fs.readFileSync(config["ssl"]["key"]).toString();
|
||||
var certificateKey = fs.readFileSync(config["ssl"]["cert"]).toString();
|
||||
var trustedCertificate = fs.readFileSync(config["ssl"]["ca"]).toString();
|
||||
var options = {
|
||||
key: privateKey,
|
||||
cert: certificateKey,
|
||||
ca: [trustedCertificate]
|
||||
};
|
||||
server = https.createServer(options, app);
|
||||
} else {
|
||||
server = http.createServer(app);
|
||||
}
|
||||
app.configure("development", function () {
|
||||
app.use(express.errorHandler({
|
||||
dumpExceptions: true,
|
||||
showStack: true
|
||||
}));
|
||||
});
|
||||
app.configure("production", function () {
|
||||
app.use(express.errorHandler());
|
||||
});
|
||||
var docsCoServer = require("./DocsCoServer");
|
||||
docsCoServer.install(server, function () {
|
||||
server.listen(config["server"]["port"], function () {
|
||||
logger.info("Express server listening on port %d in %s mode", config["server"]["port"], app.settings.env);
|
||||
});
|
||||
app.get("/index.html", function (req, res) {
|
||||
res.send("Server is functioning normally");
|
||||
});
|
||||
});
|
||||
17
NodeJsProjects/Common/sources/config.json
Normal file
17
NodeJsProjects/Common/sources/config.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"log": {
|
||||
"appenders": [
|
||||
{
|
||||
"type": "console"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"filename": "../logs/serverLogs.log"
|
||||
}
|
||||
],
|
||||
"replaceConsole": "true",
|
||||
"levels": {
|
||||
"nodeJS": "WARN"
|
||||
}
|
||||
}
|
||||
}
|
||||
53
NodeJsProjects/Common/sources/logger.js
Normal file
53
NodeJsProjects/Common/sources/logger.js
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* (c) Copyright Ascensio System SIA 2010-2014
|
||||
*
|
||||
* This program is a free software product. You can redistribute it and/or
|
||||
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
||||
* version 3 as published by the Free Software Foundation. In accordance with
|
||||
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
|
||||
* that Ascensio System SIA expressly excludes the warranty of non-infringement
|
||||
* of any third-party rights.
|
||||
*
|
||||
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
||||
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
|
||||
*
|
||||
* You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia,
|
||||
* EU, LV-1021.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of the Program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU AGPL version 3.
|
||||
*
|
||||
* Pursuant to Section 7(b) of the License you must retain the original Product
|
||||
* logo when distributing the program. Pursuant to Section 7(e) we decline to
|
||||
* grant you any rights under trademark law for use of our trademarks.
|
||||
*
|
||||
* All the Product's GUI elements, including illustrations and icon sets, as
|
||||
* well as technical writing content are licensed under the terms of the
|
||||
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
|
||||
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
|
||||
*
|
||||
*/
|
||||
var config = require("./config.json");
|
||||
var log4js = require("log4js");
|
||||
log4js.configure(config["log"]);
|
||||
var logger = log4js.getLogger("nodeJS");
|
||||
exports.trace = function () {
|
||||
return logger.trace.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
exports.debug = function () {
|
||||
return logger.debug.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
exports.info = function () {
|
||||
return logger.info.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
exports.warn = function () {
|
||||
return logger.warn.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
exports.error = function () {
|
||||
return logger.error.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
exports.fatal = function () {
|
||||
return logger.fatal.apply(logger, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
1376
NodeJsProjects/SpellChecker/Dictionaries/ca_ES/ca_ES.aff
Normal file
1376
NodeJsProjects/SpellChecker/Dictionaries/ca_ES/ca_ES.aff
Normal file
File diff suppressed because it is too large
Load Diff
107783
NodeJsProjects/SpellChecker/Dictionaries/ca_ES/ca_ES.dic
Normal file
107783
NodeJsProjects/SpellChecker/Dictionaries/ca_ES/ca_ES.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,2 @@
|
||||
LLICÈNCIES:
|
||||
Diccionari ortogràfic : LGPL, GPL
|
||||
2598
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ.aff
Normal file
2598
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ.aff
Normal file
File diff suppressed because it is too large
Load Diff
166566
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ.dic
Normal file
166566
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ.dic
Normal file
File diff suppressed because it is too large
Load Diff
391
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ_Czech.txt
Normal file
391
NodeJsProjects/SpellChecker/Dictionaries/cs_CZ/cs_CZ_Czech.txt
Normal file
@@ -0,0 +1,391 @@
|
||||
Toto rozšíření obsahuje české slovníky pro OpenOffice.org.
|
||||
|
||||
Kontrola pravopisu
|
||||
------------------
|
||||
|
||||
Toto je cesky slovnik pro kontrolu pravopisu zalozeny na ceskem slovniku
|
||||
pro ispell, verze z 29. 10. 2006, ktery vytvoril Petr Kolar spolu s desitkami
|
||||
dalsich prispevatelu.
|
||||
|
||||
Jsou v nem provedeny drobne zmeny nutne pro kompatibilitu s OpenOffice.org.
|
||||
|
||||
Slovnik je licencovan pod GNU/GPL licenci, ktera je prilozena nize.
|
||||
|
||||
|
||||
Slovník synonym
|
||||
---------------
|
||||
|
||||
Copyright (c) 1994,2008 Karel Pala, Jan Všianský
|
||||
pala@fi.muni.cz
|
||||
|
||||
Slovník můžete volně využívat v kancelářském balíku OpenOffice.org (a odvozených).
|
||||
Nesmíte jej upravovat nebo využívat pro komerční účely bez souhlasu autora.
|
||||
|
||||
|
||||
Slovník pro dělení slov
|
||||
-----------------------
|
||||
|
||||
Language: Czech (Czech Republic) (cs CZ).
|
||||
Origin: Based on the TeX hyphenation tables
|
||||
License: GPL license, 2003
|
||||
Author: Pavel@Janik.cz (Pavel Janík)
|
||||
|
||||
HYPH cs CZ hyph_cs
|
||||
|
||||
These patterns were converted from TeX hyphenation patterns by the package
|
||||
lingucomponent-tools
|
||||
(http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/).
|
||||
|
||||
The license of original files is GNU GPL (they are both parts of csTeX). My
|
||||
work on them was to only run the scripts from lingucomponent-tools package
|
||||
(dual LGPL/SISSL license so it can be integrated).
|
||||
--
|
||||
Pavel Janík
|
||||
2003
|
||||
|
||||
|
||||
|
||||
===============
|
||||
LICENSE
|
||||
===============
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) 19yy <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) 19yy name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
|
||||
1470
NodeJsProjects/SpellChecker/Dictionaries/da_DK/da_DK.aff
Normal file
1470
NodeJsProjects/SpellChecker/Dictionaries/da_DK/da_DK.aff
Normal file
File diff suppressed because it is too large
Load Diff
153273
NodeJsProjects/SpellChecker/Dictionaries/da_DK/da_DK.dic
Normal file
153273
NodeJsProjects/SpellChecker/Dictionaries/da_DK/da_DK.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,13 @@
|
||||
Stavekontrolden - Danish dictionary files for Hunspell
|
||||
Version 1.6 - 2010-09-19
|
||||
da_DK.dic, da_DK.aff: © 2010 Foreningen for frit tilgængelige sprogværktøjer
|
||||
http://www.stavekontrolden.dk
|
||||
These files are published under the following open source licenses:
|
||||
|
||||
GNU GPL version 2.0
|
||||
GNU LGPL version 2.1
|
||||
Mozilla MPL version 1.1
|
||||
|
||||
This dictionary is based on data from Det Danske Sprog- og Litteraturselskab
|
||||
(The Danish Society for Language and Literature), http://www.dsl.dk.
|
||||
|
||||
717
NodeJsProjects/SpellChecker/Dictionaries/de_AT/de_AT.aff
Normal file
717
NodeJsProjects/SpellChecker/Dictionaries/de_AT/de_AT.aff
Normal file
@@ -0,0 +1,717 @@
|
||||
# This is the affix file of the de_AT-frami Hunspell dictionary
|
||||
# derived from the igerman98 dictionary
|
||||
#
|
||||
# Version: 20120607+frami20120609 (build 20120609)
|
||||
#
|
||||
# Copyright (C) 1998-2012 Bjoern Jacke <bjoern@j3e.de>; for the Addon: Franz Michael Baumann <fm.baumann@uni-muenster.de>
|
||||
#
|
||||
# License: GPLv2, GPLv3 or OASIS distribution license agreement
|
||||
# There should be a copy of both of this licenses included
|
||||
# with every distribution of this dictionary. Modified
|
||||
# versions using the GPL may only include the GPL
|
||||
|
||||
SET UTF-8
|
||||
TRY esijanrtolcdugmphbyfvkwqxzäüößáéêàâñESIJANRTOLCDUGMPHBYFVKWQXZÄÜÖÉ-.
|
||||
|
||||
PFX U Y 1
|
||||
PFX U 0 un .
|
||||
|
||||
PFX V Y 1
|
||||
PFX V 0 ver .
|
||||
|
||||
SFX F Y 35
|
||||
SFX F 0 nen in
|
||||
SFX F e in e
|
||||
SFX F e innen e
|
||||
SFX F 0 in [^i]n
|
||||
SFX F 0 innen [^i]n
|
||||
SFX F 0 in [^enr]
|
||||
SFX F 0 innen [^enr]
|
||||
SFX F 0 in [^e]r
|
||||
SFX F 0 innen [^e]r
|
||||
SFX F 0 in [^r]er
|
||||
SFX F 0 innen [^r]er
|
||||
SFX F 0 in [^e]rer
|
||||
SFX F 0 innen [^e]rer
|
||||
SFX F 0 in ierer
|
||||
SFX F 0 innen ierer
|
||||
SFX F er in [^i]erer
|
||||
SFX F er innen [^i]erer
|
||||
SFX F in In in
|
||||
SFX F in Innen in
|
||||
SFX F e In e
|
||||
SFX F e Innen e
|
||||
SFX F 0 In [^i]n
|
||||
SFX F 0 Innen [^i]n
|
||||
SFX F 0 In [^en]
|
||||
SFX F 0 Innen [^en]
|
||||
SFX F 0 In [^e]r
|
||||
SFX F 0 Innen [^e]r
|
||||
SFX F 0 In [^r]er
|
||||
SFX F 0 Innen [^r]er
|
||||
SFX F 0 In [^e]rer
|
||||
SFX F 0 Innen [^e]rer
|
||||
SFX F 0 In ierer
|
||||
SFX F 0 Innen ierer
|
||||
SFX F er In [^i]erer
|
||||
SFX F er Innen [^i]erer
|
||||
#SFX F en innen en
|
||||
#SFX F en Innen en
|
||||
|
||||
|
||||
SFX L N 12
|
||||
SFX L 0 tlich n
|
||||
SFX L 0 tliche n
|
||||
SFX L 0 tlicher n
|
||||
SFX L 0 tliches n
|
||||
SFX L 0 tlichem n
|
||||
SFX L 0 tlichen n
|
||||
SFX L 0 lich [^n]
|
||||
SFX L 0 liche [^n]
|
||||
SFX L 0 licher [^n]
|
||||
SFX L 0 liches [^n]
|
||||
SFX L 0 lichem [^n]
|
||||
SFX L 0 lichen [^n]
|
||||
|
||||
|
||||
#SFX H N 2
|
||||
#SFX H 0 heit .
|
||||
#SFX H 0 heiten .
|
||||
|
||||
|
||||
#SFX K N 2
|
||||
#SFX K 0 keit .
|
||||
#SFX K 0 keiten .
|
||||
|
||||
|
||||
SFX M N 10
|
||||
SFX M 0 chen [^se]
|
||||
SFX M 0 chens [^se]
|
||||
SFX M ass ässchen ass
|
||||
SFX M ass ässchens ass
|
||||
SFX M oss össchen oss
|
||||
SFX M oss össchens oss
|
||||
SFX M uss üsschen uss
|
||||
SFX M uss üsschens uss
|
||||
SFX M e chen e
|
||||
SFX M e chens e
|
||||
|
||||
|
||||
SFX A Y 46
|
||||
SFX A 0 r e
|
||||
SFX A 0 n e
|
||||
SFX A 0 m e
|
||||
SFX A 0 s e
|
||||
SFX A 0 e [^elr]
|
||||
SFX A 0 er [^elr]
|
||||
SFX A 0 en [^elr]
|
||||
SFX A 0 em [^elr]
|
||||
SFX A 0 es [^elr]
|
||||
SFX A 0 e [^e][rl]
|
||||
SFX A 0 er [^e][rl]
|
||||
SFX A 0 en [^e][rl]
|
||||
SFX A 0 em [^e][rl]
|
||||
SFX A 0 es [^e][rl]
|
||||
SFX A 0 e [^u]er
|
||||
SFX A 0 er [^u]er
|
||||
SFX A 0 en [^u]er
|
||||
SFX A 0 em [^u]er
|
||||
SFX A 0 es [^u]er
|
||||
SFX A er re uer
|
||||
SFX A er rer uer
|
||||
SFX A er ren uer
|
||||
SFX A er rem uer
|
||||
SFX A er res uer
|
||||
SFX A 0 e [eil]el
|
||||
SFX A 0 er [eil]el
|
||||
SFX A 0 en [eil]el
|
||||
SFX A 0 em [eil]el
|
||||
SFX A 0 es [eil]el
|
||||
SFX A el le [^eil]el
|
||||
SFX A el ler [^eil]el
|
||||
SFX A el len [^eil]el
|
||||
SFX A el lem [^eil]el
|
||||
SFX A el les [^eil]el
|
||||
SFX A lig elig [^aeiouhlräüö]lig
|
||||
SFX A lig elige [^aeiouhlräüö]lig
|
||||
SFX A lig eliger [^aeiouhlräüö]lig
|
||||
SFX A lig eligen [^aeiouhlräüö]lig
|
||||
SFX A lig eligem [^aeiouhlräüö]lig
|
||||
SFX A lig eliges [^aeiouhlräüö]lig
|
||||
SFX A erig rig [^hi]erig
|
||||
SFX A erig rige [^hi]erig
|
||||
SFX A erig riger [^hi]erig
|
||||
SFX A erig rigen [^hi]erig
|
||||
SFX A erig rigem [^hi]erig
|
||||
SFX A erig riges [^hi]erig
|
||||
|
||||
|
||||
SFX C Y 88
|
||||
SFX C 0 ere [^elr]
|
||||
SFX C 0 erer [^elr]
|
||||
SFX C 0 eren [^elr]
|
||||
SFX C 0 erem [^elr]
|
||||
SFX C 0 eres [^elr]
|
||||
SFX C 0 re e
|
||||
SFX C 0 rer e
|
||||
SFX C 0 ren e
|
||||
SFX C 0 rem e
|
||||
SFX C 0 res e
|
||||
SFX C 0 ere [^e][lr]
|
||||
SFX C 0 erer [^e][lr]
|
||||
SFX C 0 eren [^e][lr]
|
||||
SFX C 0 erem [^e][lr]
|
||||
SFX C 0 eres [^e][lr]
|
||||
SFX C el lere el
|
||||
SFX C el lerer el
|
||||
SFX C el leren el
|
||||
SFX C el lerem el
|
||||
SFX C el leres el
|
||||
SFX C er rere uer
|
||||
SFX C er rerer uer
|
||||
SFX C er reren uer
|
||||
SFX C er rerem uer
|
||||
SFX C er reres uer
|
||||
SFX C 0 ere [^u]er
|
||||
SFX C 0 erer [^u]er
|
||||
SFX C 0 eren [^u]er
|
||||
SFX C 0 erem [^u]er
|
||||
SFX C 0 eres [^u]er
|
||||
SFX C lig eligere [^aeiouhlräüö]lig
|
||||
SFX C lig eligerer [^aeiouhlräüö]lig
|
||||
SFX C lig eligeren [^aeiouhlräüö]lig
|
||||
SFX C lig eligerem [^aeiouhlräüö]lig
|
||||
SFX C lig eligeres [^aeiouhlräüö]lig
|
||||
SFX C erig rigere [^hi]erig
|
||||
SFX C erig rigerer [^hi]erig
|
||||
SFX C erig rigeren [^hi]erig
|
||||
SFX C erig rigerem [^hi]erig
|
||||
SFX C erig rigeres [^hi]erig
|
||||
SFX C 0 est [kßsuxz]
|
||||
SFX C 0 este [kßsuxz]
|
||||
SFX C 0 ester [kßsuxz]
|
||||
SFX C 0 esten [kßsuxz]
|
||||
SFX C 0 estem [kßsuxz]
|
||||
SFX C 0 estes [kßsuxz]
|
||||
SFX C 0 st et
|
||||
SFX C 0 ste et
|
||||
SFX C 0 ster et
|
||||
SFX C 0 sten et
|
||||
SFX C 0 stem et
|
||||
SFX C 0 stes et
|
||||
SFX C 0 est [^e]t
|
||||
SFX C 0 este [^e]t
|
||||
SFX C 0 ester [^e]t
|
||||
SFX C 0 esten [^e]t
|
||||
SFX C 0 estem [^e]t
|
||||
SFX C 0 estes [^e]t
|
||||
SFX C 0 st [^kßstxz]
|
||||
SFX C 0 ste [^kßstxz]
|
||||
SFX C 0 ster [^kßstxz]
|
||||
SFX C 0 sten [^kßstxz]
|
||||
SFX C 0 stem [^kßstxz]
|
||||
SFX C 0 stes [^kßstxz]
|
||||
SFX C 0 st nd
|
||||
SFX C 0 ste nd
|
||||
SFX C 0 ster nd
|
||||
SFX C 0 sten nd
|
||||
SFX C 0 stem nd
|
||||
SFX C 0 stes nd
|
||||
SFX C 0 est [^n]d
|
||||
SFX C 0 este [^n]d
|
||||
SFX C 0 ester [^n]d
|
||||
SFX C 0 esten [^n]d
|
||||
SFX C 0 estem [^n]d
|
||||
SFX C 0 estes [^n]d
|
||||
SFX C lig eligst [^aeiouhlräüö]lig
|
||||
SFX C lig eligste [^aeiouhlräüö]lig
|
||||
SFX C lig eligster [^aeiouhlräüö]lig
|
||||
SFX C lig eligsten [^aeiouhlräüö]lig
|
||||
SFX C lig eligstem [^aeiouhlräüö]lig
|
||||
SFX C lig eligstes [^aeiouhlräüö]lig
|
||||
SFX C erig rigst [^hi]erig
|
||||
SFX C erig rigste [^hi]erig
|
||||
SFX C erig rigster [^hi]erig
|
||||
SFX C erig rigsten [^hi]erig
|
||||
SFX C erig rigstem [^hi]erig
|
||||
SFX C erig rigstes [^hi]erig
|
||||
|
||||
|
||||
SFX E Y 1
|
||||
SFX E 0 e .
|
||||
|
||||
|
||||
SFX f Y 4
|
||||
SFX f ph f ph
|
||||
SFX f ph fen ph
|
||||
SFX f phie fie phie
|
||||
SFX f phie fien phie
|
||||
|
||||
|
||||
SFX N Y 1
|
||||
SFX N 0 n .
|
||||
|
||||
|
||||
SFX P Y 1
|
||||
SFX P 0 en .
|
||||
|
||||
|
||||
SFX p Y 26
|
||||
SFX p auf äufe auf
|
||||
SFX p auf äufen auf
|
||||
SFX p aus äuser [hH]aus
|
||||
SFX p aus äusern [hH]aus
|
||||
SFX p arkt ärkte [mM]arkt
|
||||
SFX p arkt ärkten [mM]arkt
|
||||
SFX p ang änge ang
|
||||
SFX p ang ängen ang
|
||||
SFX p uß üße uß
|
||||
SFX p uß üßen uß
|
||||
SFX p oß öße oß
|
||||
SFX p oß ößen oß
|
||||
SFX p aum äume aum
|
||||
SFX p aum äumen aum
|
||||
SFX p ag äge ag
|
||||
SFX p ag ägen ag
|
||||
SFX p ug üge ug
|
||||
SFX p ug ügen ug
|
||||
SFX p all älle all
|
||||
SFX p all ällen all
|
||||
SFX p ass ässe ass
|
||||
SFX p ass ässen ass
|
||||
SFX p uss üsse uss
|
||||
SFX p uss üssen uss
|
||||
SFX p oss össe oss
|
||||
SFX p oss össen oss
|
||||
# last ...oss rules are for swiss de_CH only - but do not affect de_DE
|
||||
|
||||
|
||||
SFX R Y 3
|
||||
SFX R 0 er [^e]
|
||||
SFX R 0 ern [^e]
|
||||
SFX R 0 r e
|
||||
|
||||
|
||||
SFX S Y 1
|
||||
SFX S 0 s .
|
||||
|
||||
|
||||
SFX q Y 2
|
||||
SFX q 0 se s
|
||||
SFX q 0 sen s
|
||||
|
||||
|
||||
SFX Q Y 1
|
||||
SFX Q 0 ses s
|
||||
#SFX Q 0 se s
|
||||
#SFX Q 0 sen s
|
||||
|
||||
|
||||
SFX T Y 1
|
||||
SFX T 0 es .
|
||||
|
||||
|
||||
SFX J Y 12
|
||||
SFX J n ung [bgkpßsz]eln
|
||||
SFX J n ungen [bgkpßsz]eln
|
||||
SFX J eln lung eln
|
||||
SFX J n ung ern
|
||||
SFX J en ung en
|
||||
SFX J eln lungen eln
|
||||
SFX J n ungen ern
|
||||
SFX J en ungen en
|
||||
SFX J 0 ung [^n]
|
||||
SFX J 0 ungen [^n]
|
||||
SFX J el lung el
|
||||
SFX J el lungen el
|
||||
|
||||
|
||||
SFX B N 12
|
||||
SFX B n bar e[lr]n
|
||||
SFX B n bare e[lr]n
|
||||
SFX B n baren e[lr]n
|
||||
SFX B n barer e[lr]n
|
||||
SFX B n bares e[lr]n
|
||||
SFX B n barem e[lr]n
|
||||
SFX B en bar en
|
||||
SFX B en bare en
|
||||
SFX B en baren en
|
||||
SFX B en barer en
|
||||
SFX B en bares en
|
||||
SFX B en barem en
|
||||
|
||||
|
||||
SFX D Y 6
|
||||
SFX D 0 d n
|
||||
SFX D 0 de n
|
||||
SFX D 0 den n
|
||||
SFX D 0 der n
|
||||
SFX D 0 des n
|
||||
SFX D 0 dem n
|
||||
|
||||
|
||||
|
||||
SFX W Y 5
|
||||
SFX W en 0 en
|
||||
SFX W n 0 [^e]n
|
||||
SFX W st 0 [^s]st
|
||||
SFX W t 0 sst
|
||||
SFX W t 0 [^s]t
|
||||
|
||||
|
||||
SFX I Y 16
|
||||
SFX I n 0 en
|
||||
SFX I eln le eln
|
||||
SFX I n e eln
|
||||
SFX I ern re ern
|
||||
SFX I n e ern
|
||||
SFX I n t e[lr]n
|
||||
SFX I n t [dt]en
|
||||
SFX I en t [^dimnt]en
|
||||
SFX I en t eien
|
||||
SFX I n t [^e]ien
|
||||
SFX I n t chnen
|
||||
SFX I en t [^c]h[mn]en
|
||||
SFX I n t [^aäehilmnoöuür][mn]en
|
||||
SFX I en t [aäeilmnoöuür][mn]en
|
||||
SFX I n e un
|
||||
SFX I n t un
|
||||
|
||||
|
||||
SFX X Y 26
|
||||
SFX X n t e[lr]n
|
||||
SFX X n t [dtw]en
|
||||
SFX X en t eien
|
||||
SFX X n t [^e]ien
|
||||
SFX X en t [^ditmnw]en
|
||||
SFX X n t chnen
|
||||
SFX X en t [^c]h[mn]en
|
||||
SFX X n t [^aäehilmnoöuür][mn]en
|
||||
SFX X en t [aäeilmnoöuür][mn]en
|
||||
SFX X n t un
|
||||
SFX X st 0 tst
|
||||
SFX X n st e[lr]n
|
||||
SFX X n st [dtw]en
|
||||
SFX X en st [^dimnßstwzx]en
|
||||
SFX X en st eien
|
||||
SFX X n st [^e]ien
|
||||
SFX X n st chnen
|
||||
SFX X en st [^c]h[mn]en
|
||||
SFX X n st [^aäehilmnoöuür][mn]en
|
||||
SFX X en st [aäeilmnoöuür][mn]en
|
||||
SFX X n st un
|
||||
SFX X n st [ßsxz]en
|
||||
SFX X n st ssen
|
||||
SFX X n st schen
|
||||
SFX X t st [^sz]t
|
||||
SFX X t est zt
|
||||
|
||||
|
||||
SFX Y Y 36
|
||||
SFX Y n te e[lr]n
|
||||
SFX Y n te [dtw]en
|
||||
SFX Y en te [^dimntw]en
|
||||
SFX Y en te eien
|
||||
SFX Y n te [^e]ien
|
||||
SFX Y n te chnen
|
||||
SFX Y en te [^c]h[mn]en
|
||||
SFX Y n te [^aäehilmnoöuür][mn]en
|
||||
SFX Y en te [aäeilmnoöuür][mn]en
|
||||
SFX Y n test e[lr]n
|
||||
SFX Y n test [dtw]en
|
||||
SFX Y en test [^dimntw]en
|
||||
SFX Y en test eien
|
||||
SFX Y n test [^e]ien
|
||||
SFX Y n test chnen
|
||||
SFX Y en test [^c]h[mn]en
|
||||
SFX Y n test [^aäehilmnoöuür][mn]en
|
||||
SFX Y en test [aäeilmnoöuür][mn]en
|
||||
SFX Y n tet e[lr]n
|
||||
SFX Y n tet [dtw]en
|
||||
SFX Y en tet [^dimntw]en
|
||||
SFX Y en tet eien
|
||||
SFX Y n tet [^e]ien
|
||||
SFX Y n tet chnen
|
||||
SFX Y en tet [^c]h[mn]en
|
||||
SFX Y n tet [^aäehilmnoöuür][mn]en
|
||||
SFX Y en tet [aäeilmnoöuür][mn]en
|
||||
SFX Y n ten e[lr]n
|
||||
SFX Y n ten [dtw]en
|
||||
SFX Y en ten [^dimntw]en
|
||||
SFX Y en ten eien
|
||||
SFX Y n ten [^e]ien
|
||||
SFX Y n ten chnen
|
||||
SFX Y en ten [^c]h[mn]en
|
||||
SFX Y n ten [^aäehilmnoöuür][mn]en
|
||||
SFX Y en ten [aäeilmnoöuür][mn]en
|
||||
|
||||
|
||||
SFX Z Y 15
|
||||
SFX Z 0 st [^hßsz]
|
||||
SFX Z 0 st [^c]h
|
||||
SFX Z 0 st [^s]ch
|
||||
SFX Z 0 est [dfkstz]
|
||||
SFX Z 0 est ch
|
||||
SFX Z 0 est [au]ß
|
||||
SFX Z 0 est ieß
|
||||
SFX Z 0 est [io]ss
|
||||
SFX Z 0 t [^dt]
|
||||
SFX Z 0 et [dt]
|
||||
SFX Z 0 n e
|
||||
SFX Z 0 en ie
|
||||
SFX Z 0 en [^e]
|
||||
SFX Z 0 est iess
|
||||
SFX Z 0 est [au]ss
|
||||
# last two ...ss rules only used for swiss de_CH - but de_DE is unaffected
|
||||
|
||||
|
||||
SFX O Y 21
|
||||
SFX O n tes e[lr]n
|
||||
SFX O n tes [dtw]en
|
||||
SFX O en tes [^dmntw]en
|
||||
SFX O n tes chnen
|
||||
SFX O en tes [^c]h[mn]en
|
||||
SFX O n tes [^aäehilmnoöuür][mn]en
|
||||
SFX O en tes [aäeilmnoöuür][mn]en
|
||||
SFX O n ter e[lr]n
|
||||
SFX O n ter [dtw]en
|
||||
SFX O en ter [^dmntw]en
|
||||
SFX O n ter chnen
|
||||
SFX O en ter [^c]h[mn]en
|
||||
SFX O n ter [^aäehilmnoöuür][mn]en
|
||||
SFX O en ter [aäeilmnoöuür][mn]en
|
||||
SFX O n tem e[lr]n
|
||||
SFX O n tem [dtw]en
|
||||
SFX O en tem [^dmntw]en
|
||||
SFX O n tem chnen
|
||||
SFX O en tem [^c]h[mn]en
|
||||
SFX O n tem [^aäehilmnoöuür][mn]en
|
||||
SFX O en tem [aäeilmnoöuür][mn]en
|
||||
|
||||
REP 28
|
||||
REP f ph
|
||||
REP ph f
|
||||
REP ß ss
|
||||
REP ss ß
|
||||
REP s ss
|
||||
REP ss s
|
||||
REP i ie
|
||||
REP ie i
|
||||
REP ee e
|
||||
REP o oh
|
||||
REP oh o
|
||||
REP a ah
|
||||
REP ah a
|
||||
REP e eh
|
||||
REP eh e
|
||||
REP ae ä
|
||||
REP oe ö
|
||||
REP ue ü
|
||||
REP Ae Ä
|
||||
REP Oe Ö
|
||||
REP Ue Ü
|
||||
REP d t
|
||||
REP t d
|
||||
REP th t
|
||||
REP t th
|
||||
REP r rh
|
||||
REP ch k
|
||||
REP k ch
|
||||
#REP eee ee-E
|
||||
|
||||
|
||||
# this one will allow "-Eltern" - Hunspell 1.1.5 bug, but CHECKSHARPS obsoletes LANG de_DE
|
||||
#LANG de_DE
|
||||
CHECKSHARPS
|
||||
|
||||
|
||||
COMPOUNDBEGIN x
|
||||
COMPOUNDMIDDLE y
|
||||
COMPOUNDEND z
|
||||
FORBIDDENWORD d
|
||||
|
||||
# Prefixes are allowed at the beginning of compounds,
|
||||
# suffixes are allowed at the end of compounds by default:
|
||||
# (prefix)?(root)+(affix)?
|
||||
# Affixes with COMPOUNDPERMITFLAG may be inside of compounds.
|
||||
COMPOUNDPERMITFLAG c
|
||||
|
||||
ONLYINCOMPOUND o
|
||||
|
||||
# my PSEUDOROOT h(elper) flag
|
||||
NEEDAFFIX h
|
||||
|
||||
# forbid uppercase characters at compound word bounds
|
||||
# BUT I want to take care about it myself ;-)
|
||||
# CHECKCOMPOUNDCASE
|
||||
KEEPCASE w
|
||||
|
||||
# Affixes signed with CIRCUMFIX flag may be on a word when this word also has a prefix with CIRCUMFIX flag and vice versa.
|
||||
# for decapitalizing nouns with fogemorphemes
|
||||
CIRCUMFIX f
|
||||
|
||||
# this one would make a separate dict entry "Denkmalsschutz" invalidate the
|
||||
# compound of "Denkmal"+"schutz". We do not want this feature here...
|
||||
# CHECKCOMPOUNDREP
|
||||
|
||||
# make not all possible suggestions for typos of Flicken or some rare words
|
||||
NOSUGGEST n
|
||||
|
||||
WORDCHARS ß-.
|
||||
|
||||
# - setting this to 2 decreases performance by 1/10 but is needed for "öl" and "ei"
|
||||
# - setting this to 1 for handling Fuge-elements with dashes (Arbeits-) dash will
|
||||
# be a special word but - is handled as a affix now
|
||||
COMPOUNDMIN 2
|
||||
|
||||
# this ones are for Duden R36 (old orthography)
|
||||
#CHECKCOMPOUNDPATTERN 2 #oldspell
|
||||
#CHECKCOMPOUNDPATTERN ee e #oldspell
|
||||
#CHECKCOMPOUNDPATTERN oo o #oldspell
|
||||
# also need oo o
|
||||
|
||||
# this one needs to be flagable to be used for old orthography
|
||||
#CHECKCOMPOUNDTRIPLE
|
||||
|
||||
|
||||
PFX i Y 1
|
||||
PFX i 0 -/coyf .
|
||||
|
||||
SFX j Y 3
|
||||
SFX j 0 0/xoc .
|
||||
SFX j 0 -/zocf .
|
||||
SFX j 0 -/cz .
|
||||
|
||||
# Female forms for compound/Compound words:
|
||||
# attention: [^e][^n] does also filter out "...er" !
|
||||
SFX g Y 12
|
||||
SFX g 0 innen/xyoc [^n]
|
||||
SFX g en innen/xyoc en
|
||||
SFX g 0 Innen/xyoc [^n]
|
||||
SFX g en Innen/xyoc en
|
||||
SFX g 0 innen/xyocf [^n]
|
||||
SFX g en innen/xyocf en
|
||||
SFX g 0 Innen/xyocf [^n]
|
||||
SFX g en Innen/xyocf en
|
||||
SFX g 0 innen-/cz [^n]
|
||||
SFX g en innen-/cz en
|
||||
SFX g 0 Innen-/cz [^n]
|
||||
SFX g en Innen-/cz en
|
||||
|
||||
|
||||
PFX k Y 2
|
||||
PFX k 0 -/coxf .
|
||||
PFX k 0 0/coy .
|
||||
|
||||
SFX e Y 2
|
||||
SFX e 0 0/yoc .
|
||||
SFX e 0 -/zc .
|
||||
|
||||
# for Uppercased end-words to prepend - and lowercase: (Tier/EPSm) (EX: Bettbezüge und *-laken*)
|
||||
# AND
|
||||
# for lowercased end-words to prepend - and re-uppercase : (tier/EPSozm) (EX: Arbeits*-Tier*)
|
||||
#PFX m A -a/co A
|
||||
#PFX m a -/ a
|
||||
PFX m Y 58
|
||||
PFX m A -a A
|
||||
PFX m B -b B
|
||||
PFX m C -c C
|
||||
PFX m D -d D
|
||||
PFX m E -e E
|
||||
PFX m F -f F
|
||||
PFX m G -g G
|
||||
PFX m H -h H
|
||||
PFX m I -i I
|
||||
PFX m J -j J
|
||||
PFX m K -k K
|
||||
PFX m L -l L
|
||||
PFX m M -m M
|
||||
PFX m N -n N
|
||||
PFX m O -o O
|
||||
PFX m P -p P
|
||||
PFX m Q -q Q
|
||||
PFX m R -r R
|
||||
PFX m S -s S
|
||||
PFX m T -t T
|
||||
PFX m U -u U
|
||||
PFX m V -v V
|
||||
PFX m W -w W
|
||||
PFX m X -x X
|
||||
PFX m Y -y Y
|
||||
PFX m Z -z Z
|
||||
PFX m Ä -ä Ä
|
||||
PFX m Ö -ö Ö
|
||||
PFX m Ü -ü Ü
|
||||
PFX m a -A/co a
|
||||
PFX m b -B/co b
|
||||
PFX m c -C/co c
|
||||
PFX m d -D/co d
|
||||
PFX m e -E/co e
|
||||
PFX m f -F/co f
|
||||
PFX m g -G/co g
|
||||
PFX m h -H/co h
|
||||
PFX m i -I/co i
|
||||
PFX m j -J/co j
|
||||
PFX m k -K/co k
|
||||
PFX m l -L/co l
|
||||
PFX m m -M/co m
|
||||
PFX m n -N/co n
|
||||
PFX m o -O/co o
|
||||
PFX m p -P/co p
|
||||
PFX m q -Q/co q
|
||||
PFX m r -R/co r
|
||||
PFX m s -S/co s
|
||||
PFX m t -T/co t
|
||||
PFX m u -U/co u
|
||||
PFX m v -V/co v
|
||||
PFX m w -W/co w
|
||||
PFX m x -X/co x
|
||||
PFX m y -Y/co y
|
||||
PFX m z -Z/co z
|
||||
PFX m ä -Ä/co ä
|
||||
PFX m ö -Ö/co ö
|
||||
PFX m ü -Ü/co ü
|
||||
|
||||
|
||||
# Decapitalizing: (not used ATM... )
|
||||
# /co(f) : compound permit, in coumpount only, (decapitalizing with fogemorphemes)
|
||||
#PFX l Y 29
|
||||
#PFX l A a/co A
|
||||
#PFX l Ä ä/co Ä
|
||||
#PFX l B b/co B
|
||||
#PFX l C c/co C
|
||||
#PFX l D d/co D
|
||||
#PFX l E e/co E
|
||||
#PFX l F f/co F
|
||||
#PFX l G g/co G
|
||||
#PFX l H h/co H
|
||||
#PFX l I i/co I
|
||||
#PFX l J j/co J
|
||||
#PFX l K k/co K
|
||||
#PFX l L l/co L
|
||||
#PFX l M m/co M
|
||||
#PFX l N n/co N
|
||||
#PFX l O o/co O
|
||||
#PFX l Ö ö/co Ö
|
||||
#PFX l P p/co P
|
||||
#PFX l Q q/co Q
|
||||
#PFX l R r/co R
|
||||
#PFX l S s/co S
|
||||
#PFX l T t/co T
|
||||
#PFX l U u/co U
|
||||
#PFX l Ü ü/co Ü
|
||||
#PFX l V v/co V
|
||||
#PFX l W w/co W
|
||||
#PFX l X x/co X
|
||||
#PFX l Y y/co Y
|
||||
#PFX l Z z/co Z
|
||||
|
||||
# private hunspell flags:
|
||||
# --x : not for capmain (rare words)
|
||||
|
||||
# With "BREAK -" some wrong forms are accepted but that is needed for US-Wirtschaft etc.
|
||||
# So enabling this is the lesser evil. No perfect solution found so far...
|
||||
BREAK 2
|
||||
BREAK -
|
||||
BREAK .
|
||||
|
||||
220131
NodeJsProjects/SpellChecker/Dictionaries/de_AT/de_AT.dic
Normal file
220131
NodeJsProjects/SpellChecker/Dictionaries/de_AT/de_AT.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,45 @@
|
||||
|
||||
COMMENT OF THE EXTENSION OWNER
|
||||
|
||||
|
||||
Compatibility
|
||||
=============
|
||||
This extension is compatible with:
|
||||
- ApacheOpenOffice (Version 3.4)
|
||||
- LibreOffice (Versions 3.3, 3.4, 3.5)
|
||||
- OpenOffice.org (Versions 3.0 or later)
|
||||
|
||||
Spell checking
|
||||
==============
|
||||
de-AT_frami
|
||||
Version: 2012-06-09
|
||||
Author: Franz Michael Baumann <fm.baumann@uni-muenster.de>
|
||||
Based on igerman98 dictionary:
|
||||
Version: 2012-06-07
|
||||
Author: Björn Jacke <bjoern@j3e.de>
|
||||
Download: http://www.j3e.de/ispell/igerman98/dict/
|
||||
License: GNU GPL Version 2 or GPL Version 3 or OASIS 0.1
|
||||
|
||||
The frami dictionary contains the complete word list of igerman98
|
||||
and in addition numerous supplements by Franz Michael Baumann according to
|
||||
the reform of 2006-08-01.
|
||||
|
||||
Hyphenation
|
||||
===========
|
||||
Version: 2012-06-09
|
||||
Enhanced blacklist to improve the hyphenation module by Karl Zeiler
|
||||
Authors: Marco Huggenberger <marco@by-night.ch>
|
||||
Daniel Naber <naber@danielnaber.de>
|
||||
License: GNU LGPL Version 2.1 or later
|
||||
|
||||
Thesaurus
|
||||
=========
|
||||
OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen
|
||||
Version: 2012-06-15 AT
|
||||
License: GNU LGPL Version 2.1 or later
|
||||
http://www.openthesaurus.de
|
||||
|
||||
Please note
|
||||
===========
|
||||
Detecting errors or missing words, please contact the extension owner:
|
||||
Karl Zeiler <karl.zeiler@t-online.de>
|
||||
717
NodeJsProjects/SpellChecker/Dictionaries/de_CH/de_CH.aff
Normal file
717
NodeJsProjects/SpellChecker/Dictionaries/de_CH/de_CH.aff
Normal file
@@ -0,0 +1,717 @@
|
||||
# This is the affix file of the de_CH-frami Hunspell dictionary
|
||||
# derived from the igerman98 dictionary
|
||||
#
|
||||
# Version: 20120607+frami20120609 (build 20120609)
|
||||
#
|
||||
# Copyright (C) 1998-2012 Bjoern Jacke <bjoern@j3e.de>; for the Addon: Franz Michael Baumann <fm.baumann@uni-muenster.de>
|
||||
#
|
||||
# License: GPLv2, GPLv3 or OASIS distribution license agreement
|
||||
# There should be a copy of both of this licenses included
|
||||
# with every distribution of this dictionary. Modified
|
||||
# versions using the GPL may only include the GPL
|
||||
|
||||
SET UTF-8
|
||||
TRY esijanrtolcdugmphbyfvkwqxzäüößáéêàâñESIJANRTOLCDUGMPHBYFVKWQXZÄÜÖÉ-.
|
||||
|
||||
PFX U Y 1
|
||||
PFX U 0 un .
|
||||
|
||||
PFX V Y 1
|
||||
PFX V 0 ver .
|
||||
|
||||
SFX F Y 35
|
||||
SFX F 0 nen in
|
||||
SFX F e in e
|
||||
SFX F e innen e
|
||||
SFX F 0 in [^i]n
|
||||
SFX F 0 innen [^i]n
|
||||
SFX F 0 in [^enr]
|
||||
SFX F 0 innen [^enr]
|
||||
SFX F 0 in [^e]r
|
||||
SFX F 0 innen [^e]r
|
||||
SFX F 0 in [^r]er
|
||||
SFX F 0 innen [^r]er
|
||||
SFX F 0 in [^e]rer
|
||||
SFX F 0 innen [^e]rer
|
||||
SFX F 0 in ierer
|
||||
SFX F 0 innen ierer
|
||||
SFX F er in [^i]erer
|
||||
SFX F er innen [^i]erer
|
||||
SFX F in In in
|
||||
SFX F in Innen in
|
||||
SFX F e In e
|
||||
SFX F e Innen e
|
||||
SFX F 0 In [^i]n
|
||||
SFX F 0 Innen [^i]n
|
||||
SFX F 0 In [^en]
|
||||
SFX F 0 Innen [^en]
|
||||
SFX F 0 In [^e]r
|
||||
SFX F 0 Innen [^e]r
|
||||
SFX F 0 In [^r]er
|
||||
SFX F 0 Innen [^r]er
|
||||
SFX F 0 In [^e]rer
|
||||
SFX F 0 Innen [^e]rer
|
||||
SFX F 0 In ierer
|
||||
SFX F 0 Innen ierer
|
||||
SFX F er In [^i]erer
|
||||
SFX F er Innen [^i]erer
|
||||
#SFX F en innen en
|
||||
#SFX F en Innen en
|
||||
|
||||
|
||||
SFX L N 12
|
||||
SFX L 0 tlich n
|
||||
SFX L 0 tliche n
|
||||
SFX L 0 tlicher n
|
||||
SFX L 0 tliches n
|
||||
SFX L 0 tlichem n
|
||||
SFX L 0 tlichen n
|
||||
SFX L 0 lich [^n]
|
||||
SFX L 0 liche [^n]
|
||||
SFX L 0 licher [^n]
|
||||
SFX L 0 liches [^n]
|
||||
SFX L 0 lichem [^n]
|
||||
SFX L 0 lichen [^n]
|
||||
|
||||
|
||||
#SFX H N 2
|
||||
#SFX H 0 heit .
|
||||
#SFX H 0 heiten .
|
||||
|
||||
|
||||
#SFX K N 2
|
||||
#SFX K 0 keit .
|
||||
#SFX K 0 keiten .
|
||||
|
||||
|
||||
SFX M N 10
|
||||
SFX M 0 chen [^se]
|
||||
SFX M 0 chens [^se]
|
||||
SFX M ass ässchen ass
|
||||
SFX M ass ässchens ass
|
||||
SFX M oss össchen oss
|
||||
SFX M oss össchens oss
|
||||
SFX M uss üsschen uss
|
||||
SFX M uss üsschens uss
|
||||
SFX M e chen e
|
||||
SFX M e chens e
|
||||
|
||||
|
||||
SFX A Y 46
|
||||
SFX A 0 r e
|
||||
SFX A 0 n e
|
||||
SFX A 0 m e
|
||||
SFX A 0 s e
|
||||
SFX A 0 e [^elr]
|
||||
SFX A 0 er [^elr]
|
||||
SFX A 0 en [^elr]
|
||||
SFX A 0 em [^elr]
|
||||
SFX A 0 es [^elr]
|
||||
SFX A 0 e [^e][rl]
|
||||
SFX A 0 er [^e][rl]
|
||||
SFX A 0 en [^e][rl]
|
||||
SFX A 0 em [^e][rl]
|
||||
SFX A 0 es [^e][rl]
|
||||
SFX A 0 e [^u]er
|
||||
SFX A 0 er [^u]er
|
||||
SFX A 0 en [^u]er
|
||||
SFX A 0 em [^u]er
|
||||
SFX A 0 es [^u]er
|
||||
SFX A er re uer
|
||||
SFX A er rer uer
|
||||
SFX A er ren uer
|
||||
SFX A er rem uer
|
||||
SFX A er res uer
|
||||
SFX A 0 e [eil]el
|
||||
SFX A 0 er [eil]el
|
||||
SFX A 0 en [eil]el
|
||||
SFX A 0 em [eil]el
|
||||
SFX A 0 es [eil]el
|
||||
SFX A el le [^eil]el
|
||||
SFX A el ler [^eil]el
|
||||
SFX A el len [^eil]el
|
||||
SFX A el lem [^eil]el
|
||||
SFX A el les [^eil]el
|
||||
SFX A lig elig [^aeiouhlräüö]lig
|
||||
SFX A lig elige [^aeiouhlräüö]lig
|
||||
SFX A lig eliger [^aeiouhlräüö]lig
|
||||
SFX A lig eligen [^aeiouhlräüö]lig
|
||||
SFX A lig eligem [^aeiouhlräüö]lig
|
||||
SFX A lig eliges [^aeiouhlräüö]lig
|
||||
SFX A erig rig [^hi]erig
|
||||
SFX A erig rige [^hi]erig
|
||||
SFX A erig riger [^hi]erig
|
||||
SFX A erig rigen [^hi]erig
|
||||
SFX A erig rigem [^hi]erig
|
||||
SFX A erig riges [^hi]erig
|
||||
|
||||
|
||||
SFX C Y 88
|
||||
SFX C 0 ere [^elr]
|
||||
SFX C 0 erer [^elr]
|
||||
SFX C 0 eren [^elr]
|
||||
SFX C 0 erem [^elr]
|
||||
SFX C 0 eres [^elr]
|
||||
SFX C 0 re e
|
||||
SFX C 0 rer e
|
||||
SFX C 0 ren e
|
||||
SFX C 0 rem e
|
||||
SFX C 0 res e
|
||||
SFX C 0 ere [^e][lr]
|
||||
SFX C 0 erer [^e][lr]
|
||||
SFX C 0 eren [^e][lr]
|
||||
SFX C 0 erem [^e][lr]
|
||||
SFX C 0 eres [^e][lr]
|
||||
SFX C el lere el
|
||||
SFX C el lerer el
|
||||
SFX C el leren el
|
||||
SFX C el lerem el
|
||||
SFX C el leres el
|
||||
SFX C er rere uer
|
||||
SFX C er rerer uer
|
||||
SFX C er reren uer
|
||||
SFX C er rerem uer
|
||||
SFX C er reres uer
|
||||
SFX C 0 ere [^u]er
|
||||
SFX C 0 erer [^u]er
|
||||
SFX C 0 eren [^u]er
|
||||
SFX C 0 erem [^u]er
|
||||
SFX C 0 eres [^u]er
|
||||
SFX C lig eligere [^aeiouhlräüö]lig
|
||||
SFX C lig eligerer [^aeiouhlräüö]lig
|
||||
SFX C lig eligeren [^aeiouhlräüö]lig
|
||||
SFX C lig eligerem [^aeiouhlräüö]lig
|
||||
SFX C lig eligeres [^aeiouhlräüö]lig
|
||||
SFX C erig rigere [^hi]erig
|
||||
SFX C erig rigerer [^hi]erig
|
||||
SFX C erig rigeren [^hi]erig
|
||||
SFX C erig rigerem [^hi]erig
|
||||
SFX C erig rigeres [^hi]erig
|
||||
SFX C 0 est [kßsuxz]
|
||||
SFX C 0 este [kßsuxz]
|
||||
SFX C 0 ester [kßsuxz]
|
||||
SFX C 0 esten [kßsuxz]
|
||||
SFX C 0 estem [kßsuxz]
|
||||
SFX C 0 estes [kßsuxz]
|
||||
SFX C 0 st et
|
||||
SFX C 0 ste et
|
||||
SFX C 0 ster et
|
||||
SFX C 0 sten et
|
||||
SFX C 0 stem et
|
||||
SFX C 0 stes et
|
||||
SFX C 0 est [^e]t
|
||||
SFX C 0 este [^e]t
|
||||
SFX C 0 ester [^e]t
|
||||
SFX C 0 esten [^e]t
|
||||
SFX C 0 estem [^e]t
|
||||
SFX C 0 estes [^e]t
|
||||
SFX C 0 st [^kßstxz]
|
||||
SFX C 0 ste [^kßstxz]
|
||||
SFX C 0 ster [^kßstxz]
|
||||
SFX C 0 sten [^kßstxz]
|
||||
SFX C 0 stem [^kßstxz]
|
||||
SFX C 0 stes [^kßstxz]
|
||||
SFX C 0 st nd
|
||||
SFX C 0 ste nd
|
||||
SFX C 0 ster nd
|
||||
SFX C 0 sten nd
|
||||
SFX C 0 stem nd
|
||||
SFX C 0 stes nd
|
||||
SFX C 0 est [^n]d
|
||||
SFX C 0 este [^n]d
|
||||
SFX C 0 ester [^n]d
|
||||
SFX C 0 esten [^n]d
|
||||
SFX C 0 estem [^n]d
|
||||
SFX C 0 estes [^n]d
|
||||
SFX C lig eligst [^aeiouhlräüö]lig
|
||||
SFX C lig eligste [^aeiouhlräüö]lig
|
||||
SFX C lig eligster [^aeiouhlräüö]lig
|
||||
SFX C lig eligsten [^aeiouhlräüö]lig
|
||||
SFX C lig eligstem [^aeiouhlräüö]lig
|
||||
SFX C lig eligstes [^aeiouhlräüö]lig
|
||||
SFX C erig rigst [^hi]erig
|
||||
SFX C erig rigste [^hi]erig
|
||||
SFX C erig rigster [^hi]erig
|
||||
SFX C erig rigsten [^hi]erig
|
||||
SFX C erig rigstem [^hi]erig
|
||||
SFX C erig rigstes [^hi]erig
|
||||
|
||||
|
||||
SFX E Y 1
|
||||
SFX E 0 e .
|
||||
|
||||
|
||||
SFX f Y 4
|
||||
SFX f ph f ph
|
||||
SFX f ph fen ph
|
||||
SFX f phie fie phie
|
||||
SFX f phie fien phie
|
||||
|
||||
|
||||
SFX N Y 1
|
||||
SFX N 0 n .
|
||||
|
||||
|
||||
SFX P Y 1
|
||||
SFX P 0 en .
|
||||
|
||||
|
||||
SFX p Y 26
|
||||
SFX p auf äufe auf
|
||||
SFX p auf äufen auf
|
||||
SFX p aus äuser [hH]aus
|
||||
SFX p aus äusern [hH]aus
|
||||
SFX p arkt ärkte [mM]arkt
|
||||
SFX p arkt ärkten [mM]arkt
|
||||
SFX p ang änge ang
|
||||
SFX p ang ängen ang
|
||||
SFX p uß üße uß
|
||||
SFX p uß üßen uß
|
||||
SFX p oß öße oß
|
||||
SFX p oß ößen oß
|
||||
SFX p aum äume aum
|
||||
SFX p aum äumen aum
|
||||
SFX p ag äge ag
|
||||
SFX p ag ägen ag
|
||||
SFX p ug üge ug
|
||||
SFX p ug ügen ug
|
||||
SFX p all älle all
|
||||
SFX p all ällen all
|
||||
SFX p ass ässe ass
|
||||
SFX p ass ässen ass
|
||||
SFX p uss üsse uss
|
||||
SFX p uss üssen uss
|
||||
SFX p oss össe oss
|
||||
SFX p oss össen oss
|
||||
# last ...oss rules are for swiss de_CH only - but do not affect de_DE
|
||||
|
||||
|
||||
SFX R Y 3
|
||||
SFX R 0 er [^e]
|
||||
SFX R 0 ern [^e]
|
||||
SFX R 0 r e
|
||||
|
||||
|
||||
SFX S Y 1
|
||||
SFX S 0 s .
|
||||
|
||||
|
||||
SFX q Y 2
|
||||
SFX q 0 se s
|
||||
SFX q 0 sen s
|
||||
|
||||
|
||||
SFX Q Y 1
|
||||
SFX Q 0 ses s
|
||||
#SFX Q 0 se s
|
||||
#SFX Q 0 sen s
|
||||
|
||||
|
||||
SFX T Y 1
|
||||
SFX T 0 es .
|
||||
|
||||
|
||||
SFX J Y 12
|
||||
SFX J n ung [bgkpßsz]eln
|
||||
SFX J n ungen [bgkpßsz]eln
|
||||
SFX J eln lung eln
|
||||
SFX J n ung ern
|
||||
SFX J en ung en
|
||||
SFX J eln lungen eln
|
||||
SFX J n ungen ern
|
||||
SFX J en ungen en
|
||||
SFX J 0 ung [^n]
|
||||
SFX J 0 ungen [^n]
|
||||
SFX J el lung el
|
||||
SFX J el lungen el
|
||||
|
||||
|
||||
SFX B N 12
|
||||
SFX B n bar e[lr]n
|
||||
SFX B n bare e[lr]n
|
||||
SFX B n baren e[lr]n
|
||||
SFX B n barer e[lr]n
|
||||
SFX B n bares e[lr]n
|
||||
SFX B n barem e[lr]n
|
||||
SFX B en bar en
|
||||
SFX B en bare en
|
||||
SFX B en baren en
|
||||
SFX B en barer en
|
||||
SFX B en bares en
|
||||
SFX B en barem en
|
||||
|
||||
|
||||
SFX D Y 6
|
||||
SFX D 0 d n
|
||||
SFX D 0 de n
|
||||
SFX D 0 den n
|
||||
SFX D 0 der n
|
||||
SFX D 0 des n
|
||||
SFX D 0 dem n
|
||||
|
||||
|
||||
|
||||
SFX W Y 5
|
||||
SFX W en 0 en
|
||||
SFX W n 0 [^e]n
|
||||
SFX W st 0 [^s]st
|
||||
SFX W t 0 sst
|
||||
SFX W t 0 [^s]t
|
||||
|
||||
|
||||
SFX I Y 16
|
||||
SFX I n 0 en
|
||||
SFX I eln le eln
|
||||
SFX I n e eln
|
||||
SFX I ern re ern
|
||||
SFX I n e ern
|
||||
SFX I n t e[lr]n
|
||||
SFX I n t [dt]en
|
||||
SFX I en t [^dimnt]en
|
||||
SFX I en t eien
|
||||
SFX I n t [^e]ien
|
||||
SFX I n t chnen
|
||||
SFX I en t [^c]h[mn]en
|
||||
SFX I n t [^aäehilmnoöuür][mn]en
|
||||
SFX I en t [aäeilmnoöuür][mn]en
|
||||
SFX I n e un
|
||||
SFX I n t un
|
||||
|
||||
|
||||
SFX X Y 26
|
||||
SFX X n t e[lr]n
|
||||
SFX X n t [dtw]en
|
||||
SFX X en t eien
|
||||
SFX X n t [^e]ien
|
||||
SFX X en t [^ditmnw]en
|
||||
SFX X n t chnen
|
||||
SFX X en t [^c]h[mn]en
|
||||
SFX X n t [^aäehilmnoöuür][mn]en
|
||||
SFX X en t [aäeilmnoöuür][mn]en
|
||||
SFX X n t un
|
||||
SFX X st 0 tst
|
||||
SFX X n st e[lr]n
|
||||
SFX X n st [dtw]en
|
||||
SFX X en st [^dimnßstwzx]en
|
||||
SFX X en st eien
|
||||
SFX X n st [^e]ien
|
||||
SFX X n st chnen
|
||||
SFX X en st [^c]h[mn]en
|
||||
SFX X n st [^aäehilmnoöuür][mn]en
|
||||
SFX X en st [aäeilmnoöuür][mn]en
|
||||
SFX X n st un
|
||||
SFX X n st [ßsxz]en
|
||||
SFX X n st ssen
|
||||
SFX X n st schen
|
||||
SFX X t st [^sz]t
|
||||
SFX X t est zt
|
||||
|
||||
|
||||
SFX Y Y 36
|
||||
SFX Y n te e[lr]n
|
||||
SFX Y n te [dtw]en
|
||||
SFX Y en te [^dimntw]en
|
||||
SFX Y en te eien
|
||||
SFX Y n te [^e]ien
|
||||
SFX Y n te chnen
|
||||
SFX Y en te [^c]h[mn]en
|
||||
SFX Y n te [^aäehilmnoöuür][mn]en
|
||||
SFX Y en te [aäeilmnoöuür][mn]en
|
||||
SFX Y n test e[lr]n
|
||||
SFX Y n test [dtw]en
|
||||
SFX Y en test [^dimntw]en
|
||||
SFX Y en test eien
|
||||
SFX Y n test [^e]ien
|
||||
SFX Y n test chnen
|
||||
SFX Y en test [^c]h[mn]en
|
||||
SFX Y n test [^aäehilmnoöuür][mn]en
|
||||
SFX Y en test [aäeilmnoöuür][mn]en
|
||||
SFX Y n tet e[lr]n
|
||||
SFX Y n tet [dtw]en
|
||||
SFX Y en tet [^dimntw]en
|
||||
SFX Y en tet eien
|
||||
SFX Y n tet [^e]ien
|
||||
SFX Y n tet chnen
|
||||
SFX Y en tet [^c]h[mn]en
|
||||
SFX Y n tet [^aäehilmnoöuür][mn]en
|
||||
SFX Y en tet [aäeilmnoöuür][mn]en
|
||||
SFX Y n ten e[lr]n
|
||||
SFX Y n ten [dtw]en
|
||||
SFX Y en ten [^dimntw]en
|
||||
SFX Y en ten eien
|
||||
SFX Y n ten [^e]ien
|
||||
SFX Y n ten chnen
|
||||
SFX Y en ten [^c]h[mn]en
|
||||
SFX Y n ten [^aäehilmnoöuür][mn]en
|
||||
SFX Y en ten [aäeilmnoöuür][mn]en
|
||||
|
||||
|
||||
SFX Z Y 15
|
||||
SFX Z 0 st [^hßsz]
|
||||
SFX Z 0 st [^c]h
|
||||
SFX Z 0 st [^s]ch
|
||||
SFX Z 0 est [dfkstz]
|
||||
SFX Z 0 est ch
|
||||
SFX Z 0 est [au]ß
|
||||
SFX Z 0 est ieß
|
||||
SFX Z 0 est [io]ss
|
||||
SFX Z 0 t [^dt]
|
||||
SFX Z 0 et [dt]
|
||||
SFX Z 0 n e
|
||||
SFX Z 0 en ie
|
||||
SFX Z 0 en [^e]
|
||||
SFX Z 0 est iess
|
||||
SFX Z 0 est [au]ss
|
||||
# last two ...ss rules only used for swiss de_CH - but de_DE is unaffected
|
||||
|
||||
|
||||
SFX O Y 21
|
||||
SFX O n tes e[lr]n
|
||||
SFX O n tes [dtw]en
|
||||
SFX O en tes [^dmntw]en
|
||||
SFX O n tes chnen
|
||||
SFX O en tes [^c]h[mn]en
|
||||
SFX O n tes [^aäehilmnoöuür][mn]en
|
||||
SFX O en tes [aäeilmnoöuür][mn]en
|
||||
SFX O n ter e[lr]n
|
||||
SFX O n ter [dtw]en
|
||||
SFX O en ter [^dmntw]en
|
||||
SFX O n ter chnen
|
||||
SFX O en ter [^c]h[mn]en
|
||||
SFX O n ter [^aäehilmnoöuür][mn]en
|
||||
SFX O en ter [aäeilmnoöuür][mn]en
|
||||
SFX O n tem e[lr]n
|
||||
SFX O n tem [dtw]en
|
||||
SFX O en tem [^dmntw]en
|
||||
SFX O n tem chnen
|
||||
SFX O en tem [^c]h[mn]en
|
||||
SFX O n tem [^aäehilmnoöuür][mn]en
|
||||
SFX O en tem [aäeilmnoöuür][mn]en
|
||||
|
||||
REP 28
|
||||
REP f ph
|
||||
REP ph f
|
||||
REP ß ss
|
||||
REP ss ß
|
||||
REP s ss
|
||||
REP ss s
|
||||
REP i ie
|
||||
REP ie i
|
||||
REP ee e
|
||||
REP o oh
|
||||
REP oh o
|
||||
REP a ah
|
||||
REP ah a
|
||||
REP e eh
|
||||
REP eh e
|
||||
REP ae ä
|
||||
REP oe ö
|
||||
REP ue ü
|
||||
REP Ae Ä
|
||||
REP Oe Ö
|
||||
REP Ue Ü
|
||||
REP d t
|
||||
REP t d
|
||||
REP th t
|
||||
REP t th
|
||||
REP r rh
|
||||
REP ch k
|
||||
REP k ch
|
||||
#REP eee ee-E
|
||||
|
||||
|
||||
# this one will allow "-Eltern" - Hunspell 1.1.5 bug, but CHECKSHARPS obsoletes LANG de_DE
|
||||
#LANG de_DE
|
||||
CHECKSHARPS
|
||||
|
||||
|
||||
COMPOUNDBEGIN x
|
||||
COMPOUNDMIDDLE y
|
||||
COMPOUNDEND z
|
||||
FORBIDDENWORD d
|
||||
|
||||
# Prefixes are allowed at the beginning of compounds,
|
||||
# suffixes are allowed at the end of compounds by default:
|
||||
# (prefix)?(root)+(affix)?
|
||||
# Affixes with COMPOUNDPERMITFLAG may be inside of compounds.
|
||||
COMPOUNDPERMITFLAG c
|
||||
|
||||
ONLYINCOMPOUND o
|
||||
|
||||
# my PSEUDOROOT h(elper) flag
|
||||
NEEDAFFIX h
|
||||
|
||||
# forbid uppercase characters at compound word bounds
|
||||
# BUT I want to take care about it myself ;-)
|
||||
# CHECKCOMPOUNDCASE
|
||||
KEEPCASE w
|
||||
|
||||
# Affixes signed with CIRCUMFIX flag may be on a word when this word also has a prefix with CIRCUMFIX flag and vice versa.
|
||||
# for decapitalizing nouns with fogemorphemes
|
||||
CIRCUMFIX f
|
||||
|
||||
# this one would make a separate dict entry "Denkmalsschutz" invalidate the
|
||||
# compound of "Denkmal"+"schutz". We do not want this feature here...
|
||||
# CHECKCOMPOUNDREP
|
||||
|
||||
# make not all possible suggestions for typos of Flicken or some rare words
|
||||
NOSUGGEST n
|
||||
|
||||
WORDCHARS ß-.
|
||||
|
||||
# - setting this to 2 decreases performance by 1/10 but is needed for "öl" and "ei"
|
||||
# - setting this to 1 for handling Fuge-elements with dashes (Arbeits-) dash will
|
||||
# be a special word but - is handled as a affix now
|
||||
COMPOUNDMIN 2
|
||||
|
||||
# this ones are for Duden R36 (old orthography)
|
||||
#CHECKCOMPOUNDPATTERN 2 #oldspell
|
||||
#CHECKCOMPOUNDPATTERN ee e #oldspell
|
||||
#CHECKCOMPOUNDPATTERN oo o #oldspell
|
||||
# also need oo o
|
||||
|
||||
# this one needs to be flagable to be used for old orthography
|
||||
#CHECKCOMPOUNDTRIPLE
|
||||
|
||||
|
||||
PFX i Y 1
|
||||
PFX i 0 -/coyf .
|
||||
|
||||
SFX j Y 3
|
||||
SFX j 0 0/xoc .
|
||||
SFX j 0 -/zocf .
|
||||
SFX j 0 -/cz .
|
||||
|
||||
# Female forms for compound/Compound words:
|
||||
# attention: [^e][^n] does also filter out "...er" !
|
||||
SFX g Y 12
|
||||
SFX g 0 innen/xyoc [^n]
|
||||
SFX g en innen/xyoc en
|
||||
SFX g 0 Innen/xyoc [^n]
|
||||
SFX g en Innen/xyoc en
|
||||
SFX g 0 innen/xyocf [^n]
|
||||
SFX g en innen/xyocf en
|
||||
SFX g 0 Innen/xyocf [^n]
|
||||
SFX g en Innen/xyocf en
|
||||
SFX g 0 innen-/cz [^n]
|
||||
SFX g en innen-/cz en
|
||||
SFX g 0 Innen-/cz [^n]
|
||||
SFX g en Innen-/cz en
|
||||
|
||||
|
||||
PFX k Y 2
|
||||
PFX k 0 -/coxf .
|
||||
PFX k 0 0/coy .
|
||||
|
||||
SFX e Y 2
|
||||
SFX e 0 0/yoc .
|
||||
SFX e 0 -/zc .
|
||||
|
||||
# for Uppercased end-words to prepend - and lowercase: (Tier/EPSm) (EX: Bettbezüge und *-laken*)
|
||||
# AND
|
||||
# for lowercased end-words to prepend - and re-uppercase : (tier/EPSozm) (EX: Arbeits*-Tier*)
|
||||
#PFX m A -a/co A
|
||||
#PFX m a -/ a
|
||||
PFX m Y 58
|
||||
PFX m A -a A
|
||||
PFX m B -b B
|
||||
PFX m C -c C
|
||||
PFX m D -d D
|
||||
PFX m E -e E
|
||||
PFX m F -f F
|
||||
PFX m G -g G
|
||||
PFX m H -h H
|
||||
PFX m I -i I
|
||||
PFX m J -j J
|
||||
PFX m K -k K
|
||||
PFX m L -l L
|
||||
PFX m M -m M
|
||||
PFX m N -n N
|
||||
PFX m O -o O
|
||||
PFX m P -p P
|
||||
PFX m Q -q Q
|
||||
PFX m R -r R
|
||||
PFX m S -s S
|
||||
PFX m T -t T
|
||||
PFX m U -u U
|
||||
PFX m V -v V
|
||||
PFX m W -w W
|
||||
PFX m X -x X
|
||||
PFX m Y -y Y
|
||||
PFX m Z -z Z
|
||||
PFX m Ä -ä Ä
|
||||
PFX m Ö -ö Ö
|
||||
PFX m Ü -ü Ü
|
||||
PFX m a -A/co a
|
||||
PFX m b -B/co b
|
||||
PFX m c -C/co c
|
||||
PFX m d -D/co d
|
||||
PFX m e -E/co e
|
||||
PFX m f -F/co f
|
||||
PFX m g -G/co g
|
||||
PFX m h -H/co h
|
||||
PFX m i -I/co i
|
||||
PFX m j -J/co j
|
||||
PFX m k -K/co k
|
||||
PFX m l -L/co l
|
||||
PFX m m -M/co m
|
||||
PFX m n -N/co n
|
||||
PFX m o -O/co o
|
||||
PFX m p -P/co p
|
||||
PFX m q -Q/co q
|
||||
PFX m r -R/co r
|
||||
PFX m s -S/co s
|
||||
PFX m t -T/co t
|
||||
PFX m u -U/co u
|
||||
PFX m v -V/co v
|
||||
PFX m w -W/co w
|
||||
PFX m x -X/co x
|
||||
PFX m y -Y/co y
|
||||
PFX m z -Z/co z
|
||||
PFX m ä -Ä/co ä
|
||||
PFX m ö -Ö/co ö
|
||||
PFX m ü -Ü/co ü
|
||||
|
||||
|
||||
# Decapitalizing: (not used ATM... )
|
||||
# /co(f) : compound permit, in coumpount only, (decapitalizing with fogemorphemes)
|
||||
#PFX l Y 29
|
||||
#PFX l A a/co A
|
||||
#PFX l Ä ä/co Ä
|
||||
#PFX l B b/co B
|
||||
#PFX l C c/co C
|
||||
#PFX l D d/co D
|
||||
#PFX l E e/co E
|
||||
#PFX l F f/co F
|
||||
#PFX l G g/co G
|
||||
#PFX l H h/co H
|
||||
#PFX l I i/co I
|
||||
#PFX l J j/co J
|
||||
#PFX l K k/co K
|
||||
#PFX l L l/co L
|
||||
#PFX l M m/co M
|
||||
#PFX l N n/co N
|
||||
#PFX l O o/co O
|
||||
#PFX l Ö ö/co Ö
|
||||
#PFX l P p/co P
|
||||
#PFX l Q q/co Q
|
||||
#PFX l R r/co R
|
||||
#PFX l S s/co S
|
||||
#PFX l T t/co T
|
||||
#PFX l U u/co U
|
||||
#PFX l Ü ü/co Ü
|
||||
#PFX l V v/co V
|
||||
#PFX l W w/co W
|
||||
#PFX l X x/co X
|
||||
#PFX l Y y/co Y
|
||||
#PFX l Z z/co Z
|
||||
|
||||
# private hunspell flags:
|
||||
# --x : not for capmain (rare words)
|
||||
|
||||
# With "BREAK -" some wrong forms are accepted but that is needed for US-Wirtschaft etc.
|
||||
# So enabling this is the lesser evil. No perfect solution found so far...
|
||||
BREAK 2
|
||||
BREAK -
|
||||
BREAK .
|
||||
|
||||
219899
NodeJsProjects/SpellChecker/Dictionaries/de_CH/de_CH.dic
Normal file
219899
NodeJsProjects/SpellChecker/Dictionaries/de_CH/de_CH.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,45 @@
|
||||
|
||||
COMMENT OF THE EXTENSION OWNER
|
||||
|
||||
|
||||
Compatibility
|
||||
=============
|
||||
This extension is compatible with:
|
||||
- ApacheOpenOffice (Version 3.4)
|
||||
- LibreOffice (Versions 3.3, 3.4, 3.5)
|
||||
- OpenOffice.org (Versions 3.0 or later)
|
||||
|
||||
Spell checking
|
||||
==============
|
||||
de-CH_frami
|
||||
Version: 2012-06-09
|
||||
Author: Franz Michael Baumann <fm.baumann@uni-muenster.de>
|
||||
Based on igerman98 dictionary:
|
||||
Version: 2012-06-07
|
||||
Author: Björn Jacke <bjoern@j3e.de>
|
||||
Download: http://www.j3e.de/ispell/igerman98/dict/
|
||||
License: GNU GPL Version 2 or GPL Version 3 or OASIS 0.1
|
||||
|
||||
The frami dictionary contains the complete word list of igerman98
|
||||
and in addition numerous supplements by Franz Michael Baumann according to
|
||||
the reform of 2006-08-01.
|
||||
|
||||
Hyphenation
|
||||
===========
|
||||
Version: 2012-06-09
|
||||
Enhanced blacklist to improve the hyphenation module by Karl Zeiler
|
||||
Authors: Marco Huggenberger <marco@by-night.ch>
|
||||
Daniel Naber <naber@danielnaber.de>
|
||||
License: GNU LGPL Version 2.1 or later
|
||||
|
||||
Thesaurus
|
||||
=========
|
||||
OpenThesaurus - Deutscher Thesaurus - Synonyme und Assoziationen
|
||||
Version: 2012-06-15 CH
|
||||
License: GNU LGPL Version 2.1 or later
|
||||
http://www.openthesaurus.de
|
||||
|
||||
Please note
|
||||
===========
|
||||
Detecting errors or missing words, please contact the extension owner:
|
||||
Karl Zeiler <karl.zeiler@t-online.de>
|
||||
717
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE.aff
Normal file
717
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE.aff
Normal file
@@ -0,0 +1,717 @@
|
||||
# this is the affix file of the de_DE Hunspell dictionary
|
||||
# derived from the igerman98 dictionary
|
||||
#
|
||||
# Version: 20090107+frami20090221 (build 20090221)
|
||||
#
|
||||
# Copyright (C) 1998-2009 Bjoern Jacke <bjoern@j3e.de>
|
||||
#
|
||||
# License: GPLv2, GPLv3 or OASIS distribution license agreement
|
||||
# There should be a copy of both of this licenses included
|
||||
# with every distribution of this dictionary. Modified
|
||||
# versions using the GPL may only include the GPL
|
||||
|
||||
SET ISO8859-1
|
||||
TRY esijanrtolcdugmphbyfvkwqxzäüößáéêàâñESIJANRTOLCDUGMPHBYFVKWQXZÄÜÖÉ-.
|
||||
|
||||
PFX U Y 1
|
||||
PFX U 0 un .
|
||||
|
||||
PFX V Y 1
|
||||
PFX V 0 ver .
|
||||
|
||||
SFX F Y 35
|
||||
SFX F 0 nen in
|
||||
SFX F e in e
|
||||
SFX F e innen e
|
||||
SFX F 0 in [^i]n
|
||||
SFX F 0 innen [^i]n
|
||||
SFX F 0 in [^enr]
|
||||
SFX F 0 innen [^enr]
|
||||
SFX F 0 in [^e]r
|
||||
SFX F 0 innen [^e]r
|
||||
SFX F 0 in [^r]er
|
||||
SFX F 0 innen [^r]er
|
||||
SFX F 0 in [^e]rer
|
||||
SFX F 0 innen [^e]rer
|
||||
SFX F 0 in ierer
|
||||
SFX F 0 innen ierer
|
||||
SFX F er in [^i]erer
|
||||
SFX F er innen [^i]erer
|
||||
SFX F in In in
|
||||
SFX F in Innen in
|
||||
SFX F e In e
|
||||
SFX F e Innen e
|
||||
SFX F 0 In [^i]n
|
||||
SFX F 0 Innen [^i]n
|
||||
SFX F 0 In [^en]
|
||||
SFX F 0 Innen [^en]
|
||||
SFX F 0 In [^e]r
|
||||
SFX F 0 Innen [^e]r
|
||||
SFX F 0 In [^r]er
|
||||
SFX F 0 Innen [^r]er
|
||||
SFX F 0 In [^e]rer
|
||||
SFX F 0 Innen [^e]rer
|
||||
SFX F 0 In ierer
|
||||
SFX F 0 Innen ierer
|
||||
SFX F er In [^i]erer
|
||||
SFX F er Innen [^i]erer
|
||||
#SFX F en innen en
|
||||
#SFX F en Innen en
|
||||
|
||||
|
||||
SFX L N 12
|
||||
SFX L 0 tlich n
|
||||
SFX L 0 tliche n
|
||||
SFX L 0 tlicher n
|
||||
SFX L 0 tliches n
|
||||
SFX L 0 tlichem n
|
||||
SFX L 0 tlichen n
|
||||
SFX L 0 lich [^n]
|
||||
SFX L 0 liche [^n]
|
||||
SFX L 0 licher [^n]
|
||||
SFX L 0 liches [^n]
|
||||
SFX L 0 lichem [^n]
|
||||
SFX L 0 lichen [^n]
|
||||
|
||||
|
||||
#SFX H N 2
|
||||
#SFX H 0 heit .
|
||||
#SFX H 0 heiten .
|
||||
|
||||
|
||||
#SFX K N 2
|
||||
#SFX K 0 keit .
|
||||
#SFX K 0 keiten .
|
||||
|
||||
|
||||
SFX M N 10
|
||||
SFX M 0 chen [^se]
|
||||
SFX M 0 chens [^se]
|
||||
SFX M ass ässchen ass
|
||||
SFX M ass ässchens ass
|
||||
SFX M oss össchen oss
|
||||
SFX M oss össchens oss
|
||||
SFX M uss üsschen uss
|
||||
SFX M uss üsschens uss
|
||||
SFX M e chen e
|
||||
SFX M e chens e
|
||||
|
||||
|
||||
SFX A Y 46
|
||||
SFX A 0 r e
|
||||
SFX A 0 n e
|
||||
SFX A 0 m e
|
||||
SFX A 0 s e
|
||||
SFX A 0 e [^elr]
|
||||
SFX A 0 er [^elr]
|
||||
SFX A 0 en [^elr]
|
||||
SFX A 0 em [^elr]
|
||||
SFX A 0 es [^elr]
|
||||
SFX A 0 e [^e][rl]
|
||||
SFX A 0 er [^e][rl]
|
||||
SFX A 0 en [^e][rl]
|
||||
SFX A 0 em [^e][rl]
|
||||
SFX A 0 es [^e][rl]
|
||||
SFX A 0 e [^u]er
|
||||
SFX A 0 er [^u]er
|
||||
SFX A 0 en [^u]er
|
||||
SFX A 0 em [^u]er
|
||||
SFX A 0 es [^u]er
|
||||
SFX A er re uer
|
||||
SFX A er rer uer
|
||||
SFX A er ren uer
|
||||
SFX A er rem uer
|
||||
SFX A er res uer
|
||||
SFX A 0 e [eil]el
|
||||
SFX A 0 er [eil]el
|
||||
SFX A 0 en [eil]el
|
||||
SFX A 0 em [eil]el
|
||||
SFX A 0 es [eil]el
|
||||
SFX A el le [^eil]el
|
||||
SFX A el ler [^eil]el
|
||||
SFX A el len [^eil]el
|
||||
SFX A el lem [^eil]el
|
||||
SFX A el les [^eil]el
|
||||
SFX A lig elig [^aeiouhlräüö]lig
|
||||
SFX A lig elige [^aeiouhlräüö]lig
|
||||
SFX A lig eliger [^aeiouhlräüö]lig
|
||||
SFX A lig eligen [^aeiouhlräüö]lig
|
||||
SFX A lig eligem [^aeiouhlräüö]lig
|
||||
SFX A lig eliges [^aeiouhlräüö]lig
|
||||
SFX A erig rig [^hi]erig
|
||||
SFX A erig rige [^hi]erig
|
||||
SFX A erig riger [^hi]erig
|
||||
SFX A erig rigen [^hi]erig
|
||||
SFX A erig rigem [^hi]erig
|
||||
SFX A erig riges [^hi]erig
|
||||
|
||||
|
||||
SFX C Y 88
|
||||
SFX C 0 ere [^elr]
|
||||
SFX C 0 erer [^elr]
|
||||
SFX C 0 eren [^elr]
|
||||
SFX C 0 erem [^elr]
|
||||
SFX C 0 eres [^elr]
|
||||
SFX C 0 re e
|
||||
SFX C 0 rer e
|
||||
SFX C 0 ren e
|
||||
SFX C 0 rem e
|
||||
SFX C 0 res e
|
||||
SFX C 0 ere [^e][lr]
|
||||
SFX C 0 erer [^e][lr]
|
||||
SFX C 0 eren [^e][lr]
|
||||
SFX C 0 erem [^e][lr]
|
||||
SFX C 0 eres [^e][lr]
|
||||
SFX C el lere el
|
||||
SFX C el lerer el
|
||||
SFX C el leren el
|
||||
SFX C el lerem el
|
||||
SFX C el leres el
|
||||
SFX C er rere uer
|
||||
SFX C er rerer uer
|
||||
SFX C er reren uer
|
||||
SFX C er rerem uer
|
||||
SFX C er reres uer
|
||||
SFX C 0 ere [^u]er
|
||||
SFX C 0 erer [^u]er
|
||||
SFX C 0 eren [^u]er
|
||||
SFX C 0 erem [^u]er
|
||||
SFX C 0 eres [^u]er
|
||||
SFX C lig eligere [^aeiouhlräüö]lig
|
||||
SFX C lig eligerer [^aeiouhlräüö]lig
|
||||
SFX C lig eligeren [^aeiouhlräüö]lig
|
||||
SFX C lig eligerem [^aeiouhlräüö]lig
|
||||
SFX C lig eligeres [^aeiouhlräüö]lig
|
||||
SFX C erig rigere [^hi]erig
|
||||
SFX C erig rigerer [^hi]erig
|
||||
SFX C erig rigeren [^hi]erig
|
||||
SFX C erig rigerem [^hi]erig
|
||||
SFX C erig rigeres [^hi]erig
|
||||
SFX C 0 est [kßsuxz]
|
||||
SFX C 0 este [kßsuxz]
|
||||
SFX C 0 ester [kßsuxz]
|
||||
SFX C 0 esten [kßsuxz]
|
||||
SFX C 0 estem [kßsuxz]
|
||||
SFX C 0 estes [kßsuxz]
|
||||
SFX C 0 st et
|
||||
SFX C 0 ste et
|
||||
SFX C 0 ster et
|
||||
SFX C 0 sten et
|
||||
SFX C 0 stem et
|
||||
SFX C 0 stes et
|
||||
SFX C 0 est [^e]t
|
||||
SFX C 0 este [^e]t
|
||||
SFX C 0 ester [^e]t
|
||||
SFX C 0 esten [^e]t
|
||||
SFX C 0 estem [^e]t
|
||||
SFX C 0 estes [^e]t
|
||||
SFX C 0 st [^kßstxz]
|
||||
SFX C 0 ste [^kßstxz]
|
||||
SFX C 0 ster [^kßstxz]
|
||||
SFX C 0 sten [^kßstxz]
|
||||
SFX C 0 stem [^kßstxz]
|
||||
SFX C 0 stes [^kßstxz]
|
||||
SFX C 0 st nd
|
||||
SFX C 0 ste nd
|
||||
SFX C 0 ster nd
|
||||
SFX C 0 sten nd
|
||||
SFX C 0 stem nd
|
||||
SFX C 0 stes nd
|
||||
SFX C 0 est [^n]d
|
||||
SFX C 0 este [^n]d
|
||||
SFX C 0 ester [^n]d
|
||||
SFX C 0 esten [^n]d
|
||||
SFX C 0 estem [^n]d
|
||||
SFX C 0 estes [^n]d
|
||||
SFX C lig eligst [^aeiouhlräüö]lig
|
||||
SFX C lig eligste [^aeiouhlräüö]lig
|
||||
SFX C lig eligster [^aeiouhlräüö]lig
|
||||
SFX C lig eligsten [^aeiouhlräüö]lig
|
||||
SFX C lig eligstem [^aeiouhlräüö]lig
|
||||
SFX C lig eligstes [^aeiouhlräüö]lig
|
||||
SFX C erig rigst [^hi]erig
|
||||
SFX C erig rigste [^hi]erig
|
||||
SFX C erig rigster [^hi]erig
|
||||
SFX C erig rigsten [^hi]erig
|
||||
SFX C erig rigstem [^hi]erig
|
||||
SFX C erig rigstes [^hi]erig
|
||||
|
||||
|
||||
SFX E Y 1
|
||||
SFX E 0 e .
|
||||
|
||||
|
||||
SFX f Y 4
|
||||
SFX f ph f ph
|
||||
SFX f ph fen ph
|
||||
SFX f phie fie phie
|
||||
SFX f phie fien phie
|
||||
|
||||
|
||||
SFX N Y 1
|
||||
SFX N 0 n .
|
||||
|
||||
|
||||
SFX P Y 1
|
||||
SFX P 0 en .
|
||||
|
||||
|
||||
SFX p Y 26
|
||||
SFX p auf äufe auf
|
||||
SFX p auf äufen auf
|
||||
SFX p aus äuser [hH]aus
|
||||
SFX p aus äusern [hH]aus
|
||||
SFX p arkt ärkte [mM]arkt
|
||||
SFX p arkt ärkten [mM]arkt
|
||||
SFX p ang änge ang
|
||||
SFX p ang ängen ang
|
||||
SFX p uß üße uß
|
||||
SFX p uß üßen uß
|
||||
SFX p oß öße oß
|
||||
SFX p oß ößen oß
|
||||
SFX p aum äume aum
|
||||
SFX p aum äumen aum
|
||||
SFX p ag äge ag
|
||||
SFX p ag ägen ag
|
||||
SFX p ug üge ug
|
||||
SFX p ug ügen ug
|
||||
SFX p all älle all
|
||||
SFX p all ällen all
|
||||
SFX p ass ässe ass
|
||||
SFX p ass ässen ass
|
||||
SFX p uss üsse uss
|
||||
SFX p uss üssen uss
|
||||
SFX p oss össe oss
|
||||
SFX p oss össen oss
|
||||
# last ...oss rules are for swiss de_CH only - but do not affect de_DE
|
||||
|
||||
|
||||
SFX R Y 3
|
||||
SFX R 0 er [^e]
|
||||
SFX R 0 ern [^e]
|
||||
SFX R 0 r e
|
||||
|
||||
|
||||
SFX S Y 1
|
||||
SFX S 0 s .
|
||||
|
||||
|
||||
SFX q Y 2
|
||||
SFX q 0 se s
|
||||
SFX q 0 sen s
|
||||
|
||||
|
||||
SFX Q Y 1
|
||||
SFX Q 0 ses s
|
||||
#SFX Q 0 se s
|
||||
#SFX Q 0 sen s
|
||||
|
||||
|
||||
SFX T Y 1
|
||||
SFX T 0 es .
|
||||
|
||||
|
||||
SFX J Y 12
|
||||
SFX J n ung [bgkpßsz]eln
|
||||
SFX J n ungen [bgkpßsz]eln
|
||||
SFX J eln lung eln
|
||||
SFX J n ung ern
|
||||
SFX J en ung en
|
||||
SFX J eln lungen eln
|
||||
SFX J n ungen ern
|
||||
SFX J en ungen en
|
||||
SFX J 0 ung [^n]
|
||||
SFX J 0 ungen [^n]
|
||||
SFX J el lung el
|
||||
SFX J el lungen el
|
||||
|
||||
|
||||
SFX B N 12
|
||||
SFX B n bar e[lr]n
|
||||
SFX B n bare e[lr]n
|
||||
SFX B n baren e[lr]n
|
||||
SFX B n barer e[lr]n
|
||||
SFX B n bares e[lr]n
|
||||
SFX B n barem e[lr]n
|
||||
SFX B en bar en
|
||||
SFX B en bare en
|
||||
SFX B en baren en
|
||||
SFX B en barer en
|
||||
SFX B en bares en
|
||||
SFX B en barem en
|
||||
|
||||
|
||||
SFX D Y 6
|
||||
SFX D 0 d n
|
||||
SFX D 0 de n
|
||||
SFX D 0 den n
|
||||
SFX D 0 der n
|
||||
SFX D 0 des n
|
||||
SFX D 0 dem n
|
||||
|
||||
|
||||
|
||||
SFX W Y 5
|
||||
SFX W en 0 en
|
||||
SFX W n 0 [^e]n
|
||||
SFX W st 0 [^s]st
|
||||
SFX W t 0 sst
|
||||
SFX W t 0 [^s]t
|
||||
|
||||
|
||||
SFX I Y 16
|
||||
SFX I n 0 en
|
||||
SFX I eln le eln
|
||||
SFX I n e eln
|
||||
SFX I ern re ern
|
||||
SFX I n e ern
|
||||
SFX I n t e[lr]n
|
||||
SFX I n t [dt]en
|
||||
SFX I en t [^dimnt]en
|
||||
SFX I en t eien
|
||||
SFX I n t [^e]ien
|
||||
SFX I n t chnen
|
||||
SFX I en t [^c]h[mn]en
|
||||
SFX I n t [^aäehilmnoöuür][mn]en
|
||||
SFX I en t [aäeilmnoöuür][mn]en
|
||||
SFX I n e un
|
||||
SFX I n t un
|
||||
|
||||
|
||||
SFX X Y 26
|
||||
SFX X n t e[lr]n
|
||||
SFX X n t [dtw]en
|
||||
SFX X en t eien
|
||||
SFX X n t [^e]ien
|
||||
SFX X en t [^ditmnw]en
|
||||
SFX X n t chnen
|
||||
SFX X en t [^c]h[mn]en
|
||||
SFX X n t [^aäehilmnoöuür][mn]en
|
||||
SFX X en t [aäeilmnoöuür][mn]en
|
||||
SFX X n t un
|
||||
SFX X st 0 tst
|
||||
SFX X n st e[lr]n
|
||||
SFX X n st [dtw]en
|
||||
SFX X en st [^dimnßstwzx]en
|
||||
SFX X en st eien
|
||||
SFX X n st [^e]ien
|
||||
SFX X n st chnen
|
||||
SFX X en st [^c]h[mn]en
|
||||
SFX X n st [^aäehilmnoöuür][mn]en
|
||||
SFX X en st [aäeilmnoöuür][mn]en
|
||||
SFX X n st un
|
||||
SFX X n st [ßsxz]en
|
||||
SFX X n st ssen
|
||||
SFX X n st schen
|
||||
SFX X t st [^sz]t
|
||||
SFX X t est zt
|
||||
|
||||
|
||||
SFX Y Y 36
|
||||
SFX Y n te e[lr]n
|
||||
SFX Y n te [dtw]en
|
||||
SFX Y en te [^dimntw]en
|
||||
SFX Y en te eien
|
||||
SFX Y n te [^e]ien
|
||||
SFX Y n te chnen
|
||||
SFX Y en te [^c]h[mn]en
|
||||
SFX Y n te [^aäehilmnoöuür][mn]en
|
||||
SFX Y en te [aäeilmnoöuür][mn]en
|
||||
SFX Y n test e[lr]n
|
||||
SFX Y n test [dtw]en
|
||||
SFX Y en test [^dimntw]en
|
||||
SFX Y en test eien
|
||||
SFX Y n test [^e]ien
|
||||
SFX Y n test chnen
|
||||
SFX Y en test [^c]h[mn]en
|
||||
SFX Y n test [^aäehilmnoöuür][mn]en
|
||||
SFX Y en test [aäeilmnoöuür][mn]en
|
||||
SFX Y n tet e[lr]n
|
||||
SFX Y n tet [dtw]en
|
||||
SFX Y en tet [^dimntw]en
|
||||
SFX Y en tet eien
|
||||
SFX Y n tet [^e]ien
|
||||
SFX Y n tet chnen
|
||||
SFX Y en tet [^c]h[mn]en
|
||||
SFX Y n tet [^aäehilmnoöuür][mn]en
|
||||
SFX Y en tet [aäeilmnoöuür][mn]en
|
||||
SFX Y n ten e[lr]n
|
||||
SFX Y n ten [dtw]en
|
||||
SFX Y en ten [^dimntw]en
|
||||
SFX Y en ten eien
|
||||
SFX Y n ten [^e]ien
|
||||
SFX Y n ten chnen
|
||||
SFX Y en ten [^c]h[mn]en
|
||||
SFX Y n ten [^aäehilmnoöuür][mn]en
|
||||
SFX Y en ten [aäeilmnoöuür][mn]en
|
||||
|
||||
|
||||
SFX Z Y 15
|
||||
SFX Z 0 st [^hßsz]
|
||||
SFX Z 0 st [^c]h
|
||||
SFX Z 0 st [^s]ch
|
||||
SFX Z 0 est [dfkstz]
|
||||
SFX Z 0 est ch
|
||||
SFX Z 0 est [au]ß
|
||||
SFX Z 0 est ieß
|
||||
SFX Z 0 est [io]ss
|
||||
SFX Z 0 t [^dt]
|
||||
SFX Z 0 et [dt]
|
||||
SFX Z 0 n e
|
||||
SFX Z 0 en ie
|
||||
SFX Z 0 en [^e]
|
||||
SFX Z 0 est iess
|
||||
SFX Z 0 est [au]ss
|
||||
# last two ...ss rules only used for swiss de_CH - but de_DE is unaffected
|
||||
|
||||
|
||||
SFX O Y 21
|
||||
SFX O n tes e[lr]n
|
||||
SFX O n tes [dtw]en
|
||||
SFX O en tes [^dmntw]en
|
||||
SFX O n tes chnen
|
||||
SFX O en tes [^c]h[mn]en
|
||||
SFX O n tes [^aäehilmnoöuür][mn]en
|
||||
SFX O en tes [aäeilmnoöuür][mn]en
|
||||
SFX O n ter e[lr]n
|
||||
SFX O n ter [dtw]en
|
||||
SFX O en ter [^dmntw]en
|
||||
SFX O n ter chnen
|
||||
SFX O en ter [^c]h[mn]en
|
||||
SFX O n ter [^aäehilmnoöuür][mn]en
|
||||
SFX O en ter [aäeilmnoöuür][mn]en
|
||||
SFX O n tem e[lr]n
|
||||
SFX O n tem [dtw]en
|
||||
SFX O en tem [^dmntw]en
|
||||
SFX O n tem chnen
|
||||
SFX O en tem [^c]h[mn]en
|
||||
SFX O n tem [^aäehilmnoöuür][mn]en
|
||||
SFX O en tem [aäeilmnoöuür][mn]en
|
||||
|
||||
REP 28
|
||||
REP f ph
|
||||
REP ph f
|
||||
REP ß ss
|
||||
REP ss ß
|
||||
REP s ss
|
||||
REP ss s
|
||||
REP i ie
|
||||
REP ie i
|
||||
REP ee e
|
||||
REP o oh
|
||||
REP oh o
|
||||
REP a ah
|
||||
REP ah a
|
||||
REP e eh
|
||||
REP eh e
|
||||
REP ae ä
|
||||
REP oe ö
|
||||
REP ue ü
|
||||
REP Ae Ä
|
||||
REP Oe Ö
|
||||
REP Ue Ü
|
||||
REP d t
|
||||
REP t d
|
||||
REP th t
|
||||
REP t th
|
||||
REP r rh
|
||||
REP ch k
|
||||
REP k ch
|
||||
#REP eee ee-E
|
||||
|
||||
|
||||
# this one will allow "-Eltern" - Hunspell 1.1.5 bug, but CHECKSHARPS obsoletes LANG de_DE
|
||||
#LANG de_DE
|
||||
CHECKSHARPS
|
||||
|
||||
|
||||
COMPOUNDBEGIN x
|
||||
COMPOUNDMIDDLE y
|
||||
COMPOUNDEND z
|
||||
FORBIDDENWORD d
|
||||
|
||||
# Prefixes are allowed at the beginning of compounds,
|
||||
# suffixes are allowed at the end of compounds by default:
|
||||
# (prefix)?(root)+(affix)?
|
||||
# Affixes with COMPOUNDPERMITFLAG may be inside of compounds.
|
||||
COMPOUNDPERMITFLAG c
|
||||
|
||||
ONLYINCOMPOUND o
|
||||
|
||||
# my PSEUDOROOT h(elper) flag
|
||||
NEEDAFFIX h
|
||||
|
||||
# forbid uppercase characters at compound word bounds
|
||||
# BUT I want to take care about it myself ;-)
|
||||
# CHECKCOMPOUNDCASE
|
||||
KEEPCASE w
|
||||
|
||||
# Affixes signed with CIRCUMFIX flag may be on a word when this word also has a prefix with CIRCUMFIX flag and vice versa.
|
||||
# for decapitalizing nouns with fogemorphemes
|
||||
CIRCUMFIX f
|
||||
|
||||
# this one would make a separate dict entry "Denkmalsschutz" invalidate the
|
||||
# compound of "Denkmal"+"schutz". We do not want this feature here...
|
||||
# CHECKCOMPOUNDREP
|
||||
|
||||
# make not all possible suggestions for typos of Flicken or some rare words
|
||||
NOSUGGEST n
|
||||
|
||||
WORDCHARS ß-.
|
||||
|
||||
# - setting this to 2 decreases performance by 1/10 but is needed for "öl" and "ei"
|
||||
# - setting this to 1 for handling Fuge-elements with dashes (Arbeits-) dash will
|
||||
# be a special word but - is handled as a affix now
|
||||
COMPOUNDMIN 2
|
||||
|
||||
# this ones are for Duden R36 (old orthography)
|
||||
#CHECKCOMPOUNDPATTERN 2
|
||||
#CHECKCOMPOUNDPATTERN ee e
|
||||
#CHECKCOMPOUNDPATTERN oo o
|
||||
# also need oo o
|
||||
|
||||
# this one needs to be flagable to be used for old orthography
|
||||
#CHECKCOMPOUNDTRIPLE
|
||||
|
||||
|
||||
PFX i Y 1
|
||||
PFX i 0 -/coyf .
|
||||
|
||||
SFX j Y 3
|
||||
SFX j 0 0/xoc .
|
||||
SFX j 0 -/zocf .
|
||||
SFX j 0 -/cz .
|
||||
|
||||
# Female forms for compound/Compound words:
|
||||
# attention: [^e][^n] does also filter out "...er" !
|
||||
SFX g Y 12
|
||||
SFX g 0 innen/xyoc [^n]
|
||||
SFX g en innen/xyoc en
|
||||
SFX g 0 Innen/xyoc [^n]
|
||||
SFX g en Innen/xyoc en
|
||||
SFX g 0 innen/xyocf [^n]
|
||||
SFX g en innen/xyocf en
|
||||
SFX g 0 Innen/xyocf [^n]
|
||||
SFX g en Innen/xyocf en
|
||||
SFX g 0 innen-/cz [^n]
|
||||
SFX g en innen-/cz en
|
||||
SFX g 0 Innen-/cz [^n]
|
||||
SFX g en Innen-/cz en
|
||||
|
||||
|
||||
PFX k Y 2
|
||||
PFX k 0 -/coxf .
|
||||
PFX k 0 0/coy .
|
||||
|
||||
SFX e Y 2
|
||||
SFX e 0 0/yoc .
|
||||
SFX e 0 -/zc .
|
||||
|
||||
# for Uppercased end-words to prepend - and lowercase: (Tier/EPSm) (EX: Bettbezüge und *-laken*)
|
||||
# AND
|
||||
# for lowercased end-words to prepend - and re-uppercase : (tier/EPSozm) (EX: Arbeits*-Tier*)
|
||||
#PFX m A -a/co A
|
||||
#PFX m a -/ a
|
||||
PFX m Y 58
|
||||
PFX m A -a A
|
||||
PFX m B -b B
|
||||
PFX m C -c C
|
||||
PFX m D -d D
|
||||
PFX m E -e E
|
||||
PFX m F -f F
|
||||
PFX m G -g G
|
||||
PFX m H -h H
|
||||
PFX m I -i I
|
||||
PFX m J -j J
|
||||
PFX m K -k K
|
||||
PFX m L -l L
|
||||
PFX m M -m M
|
||||
PFX m N -n N
|
||||
PFX m O -o O
|
||||
PFX m P -p P
|
||||
PFX m Q -q Q
|
||||
PFX m R -r R
|
||||
PFX m S -s S
|
||||
PFX m T -t T
|
||||
PFX m U -u U
|
||||
PFX m V -v V
|
||||
PFX m W -w W
|
||||
PFX m X -x X
|
||||
PFX m Y -y Y
|
||||
PFX m Z -z Z
|
||||
PFX m Ä -ä Ä
|
||||
PFX m Ö -ö Ö
|
||||
PFX m Ü -ü Ü
|
||||
PFX m a -A/co a
|
||||
PFX m b -B/co b
|
||||
PFX m c -C/co c
|
||||
PFX m d -D/co d
|
||||
PFX m e -E/co e
|
||||
PFX m f -F/co f
|
||||
PFX m g -G/co g
|
||||
PFX m h -H/co h
|
||||
PFX m i -I/co i
|
||||
PFX m j -J/co j
|
||||
PFX m k -K/co k
|
||||
PFX m l -L/co l
|
||||
PFX m m -M/co m
|
||||
PFX m n -N/co n
|
||||
PFX m o -O/co o
|
||||
PFX m p -P/co p
|
||||
PFX m q -Q/co q
|
||||
PFX m r -R/co r
|
||||
PFX m s -S/co s
|
||||
PFX m t -T/co t
|
||||
PFX m u -U/co u
|
||||
PFX m v -V/co v
|
||||
PFX m w -W/co w
|
||||
PFX m x -X/co x
|
||||
PFX m y -Y/co y
|
||||
PFX m z -Z/co z
|
||||
PFX m ä -Ä/co ä
|
||||
PFX m ö -Ö/co ö
|
||||
PFX m ü -Ü/co ü
|
||||
|
||||
|
||||
# Decapitalizing: (not used ATM... )
|
||||
# /co(f) : compound permit, in coumpount only, (decapitalizing with fogemorphemes)
|
||||
#PFX l Y 29
|
||||
#PFX l A a/co A
|
||||
#PFX l Ä ä/co Ä
|
||||
#PFX l B b/co B
|
||||
#PFX l C c/co C
|
||||
#PFX l D d/co D
|
||||
#PFX l E e/co E
|
||||
#PFX l F f/co F
|
||||
#PFX l G g/co G
|
||||
#PFX l H h/co H
|
||||
#PFX l I i/co I
|
||||
#PFX l J j/co J
|
||||
#PFX l K k/co K
|
||||
#PFX l L l/co L
|
||||
#PFX l M m/co M
|
||||
#PFX l N n/co N
|
||||
#PFX l O o/co O
|
||||
#PFX l Ö ö/co Ö
|
||||
#PFX l P p/co P
|
||||
#PFX l Q q/co Q
|
||||
#PFX l R r/co R
|
||||
#PFX l S s/co S
|
||||
#PFX l T t/co T
|
||||
#PFX l U u/co U
|
||||
#PFX l Ü ü/co Ü
|
||||
#PFX l V v/co V
|
||||
#PFX l W w/co W
|
||||
#PFX l X x/co X
|
||||
#PFX l Y y/co Y
|
||||
#PFX l Z z/co Z
|
||||
|
||||
# private hunspell flags:
|
||||
# --x : not for capmain (rare words)
|
||||
|
||||
# With "BREAK -" some wrong forms are accepted but that is needed for US-Wirtschaft etc.
|
||||
# So enabling this is the lesser evil. No perfect solution found so far...
|
||||
BREAK 2
|
||||
BREAK -
|
||||
BREAK .
|
||||
|
||||
133394
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE.dic
Normal file
133394
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE.dic
Normal file
File diff suppressed because it is too large
Load Diff
7500
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE_hyph.dic
Normal file
7500
NodeJsProjects/SpellChecker/Dictionaries/de_DE/de_DE_hyph.dic
Normal file
File diff suppressed because it is too large
Load Diff
820
NodeJsProjects/SpellChecker/Dictionaries/el_GR/el_GR.aff
Normal file
820
NodeJsProjects/SpellChecker/Dictionaries/el_GR/el_GR.aff
Normal file
@@ -0,0 +1,820 @@
|
||||
# el_GR.aff
|
||||
# greek affix file
|
||||
# for MySpell (pspell)
|
||||
# GPL
|
||||
#
|
||||
#
|
||||
# LOG etc:
|
||||
# --------
|
||||
# Minor errors detected by Kevin Hendricks <kevin.hendricks@sympatico.ca>
|
||||
# and corrected by me 08/06/02 (evris)
|
||||
#
|
||||
# Fix the TRY order to be more useful. Added character mappings so the vowels
|
||||
# that have the same pronunciation be closely related to each other. Added a
|
||||
# replacement table to better describe the phonetic rules. 13/05/2004 (steve)
|
||||
#
|
||||
# Added 59 REP rules and one more letter for the TRY (patch by Nick Demou)
|
||||
#
|
||||
# Steve Stavropoulos <steve@math.upatras.gr> 01/05/2004
|
||||
#
|
||||
# Based on an older job :
|
||||
# Papakostas Evripidis evris@source.gr ep@rocketmail.com 27/01/02
|
||||
# Vryonis Panayotis vrypan@yassou.net 27/01/02
|
||||
#
|
||||
# Based on an older job :
|
||||
# greek.aff file
|
||||
# for ispell
|
||||
# Papakostas Evripidis evris@source.gr ep@rocketmail.com 1999
|
||||
#
|
||||
# Based on an older job :
|
||||
# ellhnika.aff for Greek language by Μήταλας Γιάννης and Σερασκέρης Νίκος
|
||||
# Καρλόβασι, Σάμος ,24-9-97
|
||||
|
||||
SET UTF-8
|
||||
# You are likely to forget the accent, so accented characters come first. If
|
||||
# you don't forget the accent, this order won't do any harm because it is higly
|
||||
# unlikely for a word that differs in one accented char plus some other mistake
|
||||
# to pop up in the possible suggestions (there has to be a closer match granted
|
||||
# that the word you are looking for exists).
|
||||
TRY άόίϊΐέήύϋΰώιηυωοεατνρσκμπλςγδθφβζξψχ
|
||||
|
||||
MAP 5
|
||||
MAP αά
|
||||
MAP εέ
|
||||
MAP ωώοό
|
||||
MAP ηήύϋυιίϊΐ
|
||||
MAP σς
|
||||
|
||||
# Do we have to put the accented characters in here or the MAP above is enough?
|
||||
# ANSWER: Looks like it is not! Maybe the map is only useful for the
|
||||
# suggestion order...
|
||||
#
|
||||
# Because of the automatic generation of the following REP there are some
|
||||
# combinations of letters that the greek language never uses, but I don't
|
||||
# think they will do any harm.
|
||||
REP 523
|
||||
REP α ά
|
||||
REP ά α
|
||||
REP γκ γγ
|
||||
REP γγ γκ
|
||||
REP πσ ψ
|
||||
REP ψ πσ
|
||||
REP κσ ξ
|
||||
REP ξ κσ
|
||||
REP άΰ άΰ
|
||||
REP άΰ άβ
|
||||
REP άΰ άυ
|
||||
REP άΰ άϋ
|
||||
REP άΰ άύ
|
||||
REP άΰ αΰ
|
||||
REP άΰ αβ
|
||||
REP άΰ αυ
|
||||
REP άΰ αϋ
|
||||
REP άΰ αύ
|
||||
REP άβ άΰ
|
||||
REP άβ άβ
|
||||
REP άβ άυ
|
||||
REP άβ άϋ
|
||||
REP άβ άύ
|
||||
REP άβ αΰ
|
||||
REP άβ αβ
|
||||
REP άβ αυ
|
||||
REP άβ αϋ
|
||||
REP άβ αύ
|
||||
REP άυ άΰ
|
||||
REP άυ άβ
|
||||
REP άυ άυ
|
||||
REP άυ άϋ
|
||||
REP άυ άύ
|
||||
REP άυ αΰ
|
||||
REP άυ αβ
|
||||
REP άυ αυ
|
||||
REP άυ αϋ
|
||||
REP άυ αύ
|
||||
REP άϋ άΰ
|
||||
REP άϋ άβ
|
||||
REP άϋ άυ
|
||||
REP άϋ άϋ
|
||||
REP άϋ άύ
|
||||
REP άϋ αΰ
|
||||
REP άϋ αβ
|
||||
REP άϋ αυ
|
||||
REP άϋ αϋ
|
||||
REP άϋ αύ
|
||||
REP άύ άΰ
|
||||
REP άύ άβ
|
||||
REP άύ άυ
|
||||
REP άύ άϋ
|
||||
REP άύ άύ
|
||||
REP άύ αΰ
|
||||
REP άύ αβ
|
||||
REP άύ αυ
|
||||
REP άύ αϋ
|
||||
REP άύ αύ
|
||||
REP αΰ άΰ
|
||||
REP αΰ άβ
|
||||
REP αΰ άυ
|
||||
REP αΰ άϋ
|
||||
REP αΰ άύ
|
||||
REP αΰ αΰ
|
||||
REP αΰ αβ
|
||||
REP αΰ αυ
|
||||
REP αΰ αϋ
|
||||
REP αΰ αύ
|
||||
REP αβ άΰ
|
||||
REP αβ άβ
|
||||
REP αβ άυ
|
||||
REP αβ άϋ
|
||||
REP αβ άύ
|
||||
REP αβ αΰ
|
||||
REP αβ αβ
|
||||
REP αβ αυ
|
||||
REP αβ αϋ
|
||||
REP αβ αύ
|
||||
REP αυ άΰ
|
||||
REP αυ άβ
|
||||
REP αυ άυ
|
||||
REP αυ άϋ
|
||||
REP αυ άύ
|
||||
REP αυ αΰ
|
||||
REP αυ αβ
|
||||
REP αυ αυ
|
||||
REP αυ αϋ
|
||||
REP αυ αύ
|
||||
REP αϋ άΰ
|
||||
REP αϋ άβ
|
||||
REP αϋ άυ
|
||||
REP αϋ άϋ
|
||||
REP αϋ άύ
|
||||
REP αϋ αΰ
|
||||
REP αϋ αβ
|
||||
REP αϋ αυ
|
||||
REP αϋ αϋ
|
||||
REP αϋ αύ
|
||||
REP αύ άΰ
|
||||
REP αύ άβ
|
||||
REP αύ άυ
|
||||
REP αύ άϋ
|
||||
REP αύ άύ
|
||||
REP αύ αΰ
|
||||
REP αύ αβ
|
||||
REP αύ αυ
|
||||
REP αύ αϋ
|
||||
REP αύ αύ
|
||||
REP ι ί
|
||||
REP ί ι
|
||||
REP ι ϊ
|
||||
REP ϊ ι
|
||||
REP ι ΐ
|
||||
REP ΐ ι
|
||||
REP ι η
|
||||
REP η ι
|
||||
REP ι ή
|
||||
REP ή ι
|
||||
REP ι υ
|
||||
REP υ ι
|
||||
REP ι ύ
|
||||
REP ύ ι
|
||||
REP ι ϋ
|
||||
REP ϋ ι
|
||||
REP ι ΰ
|
||||
REP ΰ ι
|
||||
REP ί ϊ
|
||||
REP ϊ ί
|
||||
REP ί ΐ
|
||||
REP ΐ ί
|
||||
REP ί η
|
||||
REP η ί
|
||||
REP ί ή
|
||||
REP ή ί
|
||||
REP ί υ
|
||||
REP υ ί
|
||||
REP ί ύ
|
||||
REP ύ ί
|
||||
REP ί ϋ
|
||||
REP ϋ ί
|
||||
REP ί ΰ
|
||||
REP ΰ ί
|
||||
REP ϊ ΐ
|
||||
REP ΐ ϊ
|
||||
REP ϊ η
|
||||
REP η ϊ
|
||||
REP ϊ ή
|
||||
REP ή ϊ
|
||||
REP ϊ υ
|
||||
REP υ ϊ
|
||||
REP ϊ ύ
|
||||
REP ύ ϊ
|
||||
REP ϊ ϋ
|
||||
REP ϋ ϊ
|
||||
REP ϊ ΰ
|
||||
REP ΰ ϊ
|
||||
REP ΐ η
|
||||
REP η ΐ
|
||||
REP ΐ ή
|
||||
REP ή ΐ
|
||||
REP ΐ υ
|
||||
REP υ ΐ
|
||||
REP ΐ ύ
|
||||
REP ύ ΐ
|
||||
REP ΐ ϋ
|
||||
REP ϋ ΐ
|
||||
REP ΐ ΰ
|
||||
REP ΰ ΐ
|
||||
REP η ή
|
||||
REP ή η
|
||||
REP η υ
|
||||
REP υ η
|
||||
REP η ύ
|
||||
REP ύ η
|
||||
REP η ϋ
|
||||
REP ϋ η
|
||||
REP η ΰ
|
||||
REP ΰ η
|
||||
REP ή υ
|
||||
REP υ ή
|
||||
REP ή ύ
|
||||
REP ύ ή
|
||||
REP ή ϋ
|
||||
REP ϋ ή
|
||||
REP ή ΰ
|
||||
REP ΰ ή
|
||||
REP υ ύ
|
||||
REP ύ υ
|
||||
REP υ ϋ
|
||||
REP ϋ υ
|
||||
REP υ ΰ
|
||||
REP ΰ υ
|
||||
REP ύ ϋ
|
||||
REP ϋ ύ
|
||||
REP ύ ΰ
|
||||
REP ΰ ύ
|
||||
REP ϋ ΰ
|
||||
REP ΰ ϋ
|
||||
REP ο ό
|
||||
REP ό ο
|
||||
REP ο ω
|
||||
REP ω ο
|
||||
REP ο ώ
|
||||
REP ώ ο
|
||||
REP ό ω
|
||||
REP ω ό
|
||||
REP ό ώ
|
||||
REP ώ ό
|
||||
REP ω ώ
|
||||
REP ώ ω
|
||||
REP έΰ έΰ
|
||||
REP έΰ έβ
|
||||
REP έΰ έυ
|
||||
REP έΰ έϋ
|
||||
REP έΰ έύ
|
||||
REP έΰ εΰ
|
||||
REP έΰ εβ
|
||||
REP έΰ ευ
|
||||
REP έΰ εϋ
|
||||
REP έΰ εύ
|
||||
REP έβ έΰ
|
||||
REP έβ έβ
|
||||
REP έβ έυ
|
||||
REP έβ έϋ
|
||||
REP έβ έύ
|
||||
REP έβ εΰ
|
||||
REP έβ εβ
|
||||
REP έβ ευ
|
||||
REP έβ εϋ
|
||||
REP έβ εύ
|
||||
REP έυ έΰ
|
||||
REP έυ έβ
|
||||
REP έυ έυ
|
||||
REP έυ έϋ
|
||||
REP έυ έύ
|
||||
REP έυ εΰ
|
||||
REP έυ εβ
|
||||
REP έυ ευ
|
||||
REP έυ εϋ
|
||||
REP έυ εύ
|
||||
REP έϋ έΰ
|
||||
REP έϋ έβ
|
||||
REP έϋ έυ
|
||||
REP έϋ έϋ
|
||||
REP έϋ έύ
|
||||
REP έϋ εΰ
|
||||
REP έϋ εβ
|
||||
REP έϋ ευ
|
||||
REP έϋ εϋ
|
||||
REP έϋ εύ
|
||||
REP έύ έΰ
|
||||
REP έύ έβ
|
||||
REP έύ έυ
|
||||
REP έύ έϋ
|
||||
REP έύ έύ
|
||||
REP έύ εΰ
|
||||
REP έύ εβ
|
||||
REP έύ ευ
|
||||
REP έύ εϋ
|
||||
REP έύ εύ
|
||||
REP εΰ έΰ
|
||||
REP εΰ έβ
|
||||
REP εΰ έυ
|
||||
REP εΰ έϋ
|
||||
REP εΰ έύ
|
||||
REP εΰ εΰ
|
||||
REP εΰ εβ
|
||||
REP εΰ ευ
|
||||
REP εΰ εϋ
|
||||
REP εΰ εύ
|
||||
REP εβ έΰ
|
||||
REP εβ έβ
|
||||
REP εβ έυ
|
||||
REP εβ έϋ
|
||||
REP εβ έύ
|
||||
REP εβ εΰ
|
||||
REP εβ εβ
|
||||
REP εβ ευ
|
||||
REP εβ εϋ
|
||||
REP εβ εύ
|
||||
REP ευ έΰ
|
||||
REP ευ έβ
|
||||
REP ευ έυ
|
||||
REP ευ έϋ
|
||||
REP ευ έύ
|
||||
REP ευ εΰ
|
||||
REP ευ εβ
|
||||
REP ευ ευ
|
||||
REP ευ εϋ
|
||||
REP ευ εύ
|
||||
REP εϋ έΰ
|
||||
REP εϋ έβ
|
||||
REP εϋ έυ
|
||||
REP εϋ έϋ
|
||||
REP εϋ έύ
|
||||
REP εϋ εΰ
|
||||
REP εϋ εβ
|
||||
REP εϋ ευ
|
||||
REP εϋ εϋ
|
||||
REP εϋ εύ
|
||||
REP εύ έΰ
|
||||
REP εύ έβ
|
||||
REP εύ έυ
|
||||
REP εύ έϋ
|
||||
REP εύ έύ
|
||||
REP εύ εΰ
|
||||
REP εύ εβ
|
||||
REP εύ ευ
|
||||
REP εύ εϋ
|
||||
REP εύ εύ
|
||||
REP έΐ έΐ
|
||||
REP έΐ έί
|
||||
REP έΐ έι
|
||||
REP έΐ έϊ
|
||||
REP έΐ εΐ
|
||||
REP έΐ εί
|
||||
REP έΐ ει
|
||||
REP έΐ εϊ
|
||||
REP έί έΐ
|
||||
REP έί έί
|
||||
REP έί έι
|
||||
REP έί έϊ
|
||||
REP έί εΐ
|
||||
REP έί εί
|
||||
REP έί ει
|
||||
REP έί εϊ
|
||||
REP έι έΐ
|
||||
REP έι έί
|
||||
REP έι έι
|
||||
REP έι έϊ
|
||||
REP έι εΐ
|
||||
REP έι εί
|
||||
REP έι ει
|
||||
REP έι εϊ
|
||||
REP έϊ έΐ
|
||||
REP έϊ έί
|
||||
REP έϊ έι
|
||||
REP έϊ έϊ
|
||||
REP έϊ εΐ
|
||||
REP έϊ εί
|
||||
REP έϊ ει
|
||||
REP έϊ εϊ
|
||||
REP εΐ έΐ
|
||||
REP εΐ έί
|
||||
REP εΐ έι
|
||||
REP εΐ έϊ
|
||||
REP εΐ εΐ
|
||||
REP εΐ εί
|
||||
REP εΐ ει
|
||||
REP εΐ εϊ
|
||||
REP εί έΐ
|
||||
REP εί έί
|
||||
REP εί έι
|
||||
REP εί έϊ
|
||||
REP εί εΐ
|
||||
REP εί εί
|
||||
REP εί ει
|
||||
REP εί εϊ
|
||||
REP ει έΐ
|
||||
REP ει έί
|
||||
REP ει έι
|
||||
REP ει έϊ
|
||||
REP ει εΐ
|
||||
REP ει εί
|
||||
REP ει ει
|
||||
REP ει εϊ
|
||||
REP εϊ έΐ
|
||||
REP εϊ έί
|
||||
REP εϊ έι
|
||||
REP εϊ έϊ
|
||||
REP εϊ εΐ
|
||||
REP εϊ εί
|
||||
REP εϊ ει
|
||||
REP εϊ εϊ
|
||||
REP άΐ άΐ
|
||||
REP άΐ άί
|
||||
REP άΐ άι
|
||||
REP άΐ άϊ
|
||||
REP άΐ αΐ
|
||||
REP άΐ αί
|
||||
REP άΐ αι
|
||||
REP άΐ αϊ
|
||||
REP άί άΐ
|
||||
REP άί άί
|
||||
REP άί άι
|
||||
REP άί άϊ
|
||||
REP άί αΐ
|
||||
REP άί αί
|
||||
REP άί αι
|
||||
REP άί αϊ
|
||||
REP άι άΐ
|
||||
REP άι άί
|
||||
REP άι άι
|
||||
REP άι άϊ
|
||||
REP άι αΐ
|
||||
REP άι αί
|
||||
REP άι αι
|
||||
REP άι αϊ
|
||||
REP άϊ άΐ
|
||||
REP άϊ άί
|
||||
REP άϊ άι
|
||||
REP άϊ άϊ
|
||||
REP άϊ αΐ
|
||||
REP άϊ αί
|
||||
REP άϊ αι
|
||||
REP άϊ αϊ
|
||||
REP αΐ άΐ
|
||||
REP αΐ άί
|
||||
REP αΐ άι
|
||||
REP αΐ άϊ
|
||||
REP αΐ αΐ
|
||||
REP αΐ αί
|
||||
REP αΐ αι
|
||||
REP αΐ αϊ
|
||||
REP αί άΐ
|
||||
REP αί άί
|
||||
REP αί άι
|
||||
REP αί άϊ
|
||||
REP αί αΐ
|
||||
REP αί αί
|
||||
REP αί αι
|
||||
REP αί αϊ
|
||||
REP αι άΐ
|
||||
REP αι άί
|
||||
REP αι άι
|
||||
REP αι άϊ
|
||||
REP αι αΐ
|
||||
REP αι αί
|
||||
REP αι αι
|
||||
REP αι αϊ
|
||||
REP αϊ άΐ
|
||||
REP αϊ άί
|
||||
REP αϊ άι
|
||||
REP αϊ άϊ
|
||||
REP αϊ αΐ
|
||||
REP αϊ αί
|
||||
REP αϊ αι
|
||||
REP αϊ αϊ
|
||||
REP άί έ
|
||||
REP άί ε
|
||||
REP άι έ
|
||||
REP άι ε
|
||||
REP έ άί
|
||||
REP έ άι
|
||||
REP έ αΐ
|
||||
REP έ αί
|
||||
REP έ αι
|
||||
REP έ αϊ
|
||||
REP έ ε
|
||||
REP αΐ έ
|
||||
REP αΐ ε
|
||||
REP αί έ
|
||||
REP αί ε
|
||||
REP αι έ
|
||||
REP αι ε
|
||||
REP αϊ έ
|
||||
REP αϊ ε
|
||||
REP ε άί
|
||||
REP ε άι
|
||||
REP ε έ
|
||||
REP ε αΐ
|
||||
REP ε αί
|
||||
REP ε αι
|
||||
REP ε αϊ
|
||||
REP ή ει
|
||||
REP ή οι
|
||||
REP ί ει
|
||||
REP ί οι
|
||||
REP εί η
|
||||
REP εί ι
|
||||
REP εί οι
|
||||
REP εί υ
|
||||
REP ει ή
|
||||
REP ει ί
|
||||
REP ει η
|
||||
REP ει ι
|
||||
REP ει οί
|
||||
REP ει οι
|
||||
REP ει υ
|
||||
REP ει ύ
|
||||
REP η εί
|
||||
REP η ει
|
||||
REP η οί
|
||||
REP η οι
|
||||
REP ηβ ηυ
|
||||
REP ηυ ηβ
|
||||
REP ι εί
|
||||
REP ι ει
|
||||
REP ι οί
|
||||
REP ι οι
|
||||
REP κ κκ
|
||||
REP κκ κ
|
||||
REP λ λλ
|
||||
REP λλ λ
|
||||
REP μ μμ
|
||||
REP μμ μ
|
||||
REP οί ει
|
||||
REP οί η
|
||||
REP οί ι
|
||||
REP οί υ
|
||||
REP οι ή
|
||||
REP οι ί
|
||||
REP οι εί
|
||||
REP οι ει
|
||||
REP οι η
|
||||
REP οι ι
|
||||
REP οι υ
|
||||
REP οι ύ
|
||||
REP π ππ
|
||||
REP ππ π
|
||||
REP ρ ρρ
|
||||
REP ρρ ρ
|
||||
REP σ σσ
|
||||
REP σσ σ
|
||||
REP τ ττ
|
||||
REP ττ τ
|
||||
REP υ εί
|
||||
REP υ ει
|
||||
REP υ οί
|
||||
REP υ οι
|
||||
REP υ ϋ υ
|
||||
REP ύ ει
|
||||
REP ύ οι
|
||||
|
||||
|
||||
# prefix rules
|
||||
|
||||
|
||||
PFX A Y 1
|
||||
PFX A 0 α . # βάσιμος > αβάσιμος
|
||||
|
||||
PFX B Y 1
|
||||
PFX B 0 ξανα . # ζητώ > ξαναζητώ
|
||||
|
||||
PFX C Y 1
|
||||
PFX C 0 απο . # σύνθεση > αποσύνθεση
|
||||
|
||||
PFX D Y 1
|
||||
PFX D 0 κατα . # στροφή > καταστροφή
|
||||
|
||||
PFX E Y 1
|
||||
PFX E 0 παρα . # βλέπω > παραβλέπω
|
||||
|
||||
|
||||
# suffix rules
|
||||
|
||||
SFX F Y 4
|
||||
SFX F ώ ά . # αγαπώ > αγαπά
|
||||
SFX F ός ά . # καλός > καλά
|
||||
SFX F ό ά . # βουνό > βουνά
|
||||
SFX F άς ά . # σφουγγαράς > σφουγγαρά
|
||||
|
||||
SFX G Y 7
|
||||
SFX G ώ άς . # αγαπώ > αγαπάς
|
||||
SFX G 0 ς ά # καρδιά > καρδιάς
|
||||
SFX G ός ού . # ουρανός > ουρανού
|
||||
SFX G ό ού . # βουνό > βουνού
|
||||
SFX G ούς ού . # παππούς > παππού
|
||||
SFX G ω εις . # δένω > δένεις
|
||||
SFX G η εις . # σκέψη > σκέψεις
|
||||
|
||||
SFX H Y 3
|
||||
SFX H 0 ς [ώω] # Αργυρώ > Αργυρώς Δέσπω > Δέσπως
|
||||
SFX H ός ώς . # καλός > καλώς τελευταίος τελευταίως
|
||||
SFX H ής ώς . # # συνεχής > συνεχώς
|
||||
|
||||
SFX I Y 5
|
||||
SFX I ώ είς . # αγαπηθώ > αγαπηθείς
|
||||
SFX I ος α . # ωραίος > ωραία
|
||||
SFX I ο α . # βιβλίο > βιβλία
|
||||
SFX I ης α . # ζηλιάρης > ζηλιάρα
|
||||
SFX I ας α . # αγώνας > αγώνα
|
||||
|
||||
SFX J Y 5
|
||||
SFX J ώ εί . # αγαπηθώ > αγαπηθεί
|
||||
SFX J ός έ . # ουρανός > ουρανέ
|
||||
SFX J ές έ . # καφές > καφέ
|
||||
SFX J ύς ιούς . # βαθύς > βαθιούς
|
||||
SFX J ω οντας . # δένω > δένοντας
|
||||
|
||||
SFX K Y 4
|
||||
SFX K ώ ούμε . # αγαπώ > αγαπούμε
|
||||
SFX K ός οί . # ουρανός > ουρανοί
|
||||
SFX K ές έδες . # καφές > καφέδες
|
||||
SFX K 0 ς η # νίκη > νίκης
|
||||
|
||||
SFX L Y 5
|
||||
SFX L ός ών . # ουρανός > ουρανών
|
||||
SFX L ής ών . # νικητής > νικητών
|
||||
SFX L ά ών . # καρδιά > καρδιών
|
||||
SFX L ή ών . # ψυχή > ψυχών
|
||||
SFX L ό ών . # βουνό > βουνών
|
||||
|
||||
SFX M Y 4
|
||||
SFX M ώ ούν . # αγαπώ > αγαπούν
|
||||
SFX M ός ούς . # ουρανός > ουρανούς
|
||||
SFX M ώς ώτων . # καθεστώς > καθεστώτων
|
||||
SFX M ί ιού . # πουλί > πουλιού
|
||||
|
||||
SFX N Y 5
|
||||
SFX N ούς ούδων . # παππούς > παππούδων
|
||||
SFX N ας ες . # αγώνας > αγώνες
|
||||
SFX N α ες . # ώρα > ώρες
|
||||
SFX N η ες . # νίκη > νίκες
|
||||
SFX N ης ες . # ναύτης > ναύτες
|
||||
|
||||
SFX O Y 5
|
||||
SFX O ώ άμε . # αγαπώ > αγαπάμε
|
||||
SFX O ός ιά . # γλυκός > γλυκιά
|
||||
SFX O ής ιά . # σταχτής > σταχτιά
|
||||
SFX O ί ιά . # πουλί > πουλιά
|
||||
SFX O ύς ιά . # βαθύς > βαθιά
|
||||
|
||||
SFX P Y 4
|
||||
SFX P ώ άτε . # αγαπώ > αγαπάτε
|
||||
SFX P ός ότος . # γεγονός > γεγονότος
|
||||
SFX P ω ετε . # δένω > δένετε
|
||||
SFX P η εως . # σκέψη > σκέψεως
|
||||
|
||||
SFX Q Y 5
|
||||
SFX Q ώ άστε . # λυπώ > λυπάστε
|
||||
SFX Q ας ων . # αγώνας > αγώνων
|
||||
SFX Q ος ων . # δρόμος > δρόμων
|
||||
SFX Q ο ων . # σίδερο > σίδερων
|
||||
SFX Q ύς ύ . # βαθύς > βαθύ
|
||||
|
||||
|
||||
SFX R Y 4
|
||||
SFX R ώ ιέμαι . # αγαπώ > αγαπιέμαι
|
||||
SFX R ής άδες . # πραματευτής > πραματευτάδες
|
||||
SFX R άς άδες . # σφουγγαράς > σφουγγαράδες
|
||||
SFX R ω ομαι . # δένω > δένομαι
|
||||
|
||||
|
||||
SFX S Y 4
|
||||
SFX S ώ ιέσαι . # αγαπώ > αγαπιέσαι
|
||||
SFX S ής άδων . # πραματευτής > πραματευτάδων
|
||||
SFX S άς άδων . # σφουγγαράς > σφουγγαράδων
|
||||
SFX S ω εσαι . # δένω > δένεσαι
|
||||
|
||||
SFX T Y 4
|
||||
SFX T ώ άν . # αγαπώ > αγαπάν
|
||||
SFX T ός ότα . # γεγονός > γεγονότα
|
||||
SFX T ω ουν . # δένω > δένουν
|
||||
SFX T ας ατα . # κρέας > κρέατα
|
||||
|
||||
|
||||
SFX U Y 4
|
||||
SFX U ώ ιέται . # αγαπώ > αγαπιέται
|
||||
SFX U ής ήδες . # μπαλωματής > μπαλωματήδες
|
||||
SFX U ί ιών . # πουλί > πουλιών
|
||||
SFX U ύς ιών . # βαθύς > βαθιών
|
||||
|
||||
|
||||
SFX V Y 5
|
||||
SFX V ώ ιέστε . # αγαπώ > αγαπιέστε
|
||||
SFX V ούς ούδες . # παππούς > παππούδες
|
||||
SFX V ής ί . # σταχτής > σταχτί
|
||||
SFX V ω εστε . # δένω > δένεστε
|
||||
SFX V 0 τα μα # κύμα > κύματα
|
||||
|
||||
SFX W Y 5
|
||||
SFX W ώ ιούνται . # αγαπώ > αγαπιούνται
|
||||
SFX W ώς ώτα . # καθεστώς > καθεστώτα
|
||||
SFX W ω ονται . # δένω > δένονται
|
||||
SFX W 0 τος μα # κύμα > κύματος
|
||||
SFX W 0 ς ή # ψυχή > ψυχής
|
||||
|
||||
SFX X Y 5
|
||||
SFX X ώ ιόμουν . # αγαπώ > αγαπιόμουν
|
||||
SFX X ός ή . # καλός > καλή
|
||||
SFX X ος η . # δάσος > δάση
|
||||
SFX X ής ή . # νικητής > νικητή
|
||||
SFX X ης η . # ναύτης > ναύτη
|
||||
|
||||
SFX Y Y 4
|
||||
SFX Y ώ ιόσουν . # αγαπώ > αγαπιόσουν
|
||||
SFX Y όμουν όσουν . # δενόμουν > δενόσουν
|
||||
SFX Y ω ουμε . # δένω > δένουμε
|
||||
SFX Y η εων . # σκέψη > σκέψεων
|
||||
|
||||
|
||||
SFX Z Y 3
|
||||
SFX Z ώ ιόταν . # αγαπώ > αγαπιόταν
|
||||
SFX Z μουν ταν όμουν # δενόμουν > δενόταν
|
||||
SFX Z ς δων ές # καφές > καφέδων
|
||||
|
||||
SFX a Y 4
|
||||
SFX a ώ ιόμαστε . # αγαπώ > αγαπιόμαστε
|
||||
SFX a ός ό . # καλός > καλό
|
||||
SFX a ω αμε . # δένω > δέναμε
|
||||
SFX a 0 με α # αγαπούσα > αγαπούσαμε
|
||||
|
||||
|
||||
SFX b Y 4
|
||||
SFX b ώ ιόσαστε . # αγαπώ > αγαπιόσαστε
|
||||
SFX b ω ατε . # δένω > δένατε
|
||||
SFX b με τε αμε # αγαπήσαμε > αγαπήσατε
|
||||
SFX b 0 τε α # αγαπούσα > αγαπούσατε
|
||||
|
||||
SFX c Y 3
|
||||
SFX c ώ ιόνταν . # αγαπώ > αγαπιόνταν
|
||||
SFX c όμουν όνταν . # θυμόμουν > θυμόνταν
|
||||
SFX c ω ονταν . # δένω > δένονταν
|
||||
|
||||
SFX d Y 4
|
||||
SFX d ώ ιούνταν . # αγαπώ > αγαπιούνταν
|
||||
SFX d ω ου . # δένω > δένου
|
||||
SFX d 0 υ ο # σίδερο > σίδερου
|
||||
SFX d ς υ ος # δρόμος > δρόμου
|
||||
|
||||
SFX e Y 4
|
||||
SFX e ώ ούνται . # λυπώ > λυπούνται
|
||||
SFX e ω ε . # δένω > δένε
|
||||
SFX e ος ε . # δρόμος > δρόμε
|
||||
SFX e α ε . # αγαπούσα > αγαπούσε
|
||||
|
||||
SFX f Y 3
|
||||
SFX f ώ άσαι . # λυπώ > λυπάσαι
|
||||
SFX f ί ιού . # πουλί > πουλιού
|
||||
SFX f ς δες ης # νοικοκύρης > νοικοκύρηδες
|
||||
|
||||
SFX g Y 4
|
||||
SFX g ώ άται . # λυπώ > λυπάται
|
||||
SFX g ός ότων . # γεγονός γεγονότων
|
||||
SFX g ης ηδων . # νοικοκύρης > νοικοκύρηδων
|
||||
SFX g α αν . # αγαπούσα > αγαπούσαν
|
||||
|
||||
SFX h Y 4
|
||||
SFX h ώ ούμαστε . # λυπώ > λυπούμαστε
|
||||
SFX h ώς ώτος . # καθεστώς > καθεστώτος
|
||||
SFX h όμουν όμαστε . # δενόμουν > δενόμαστε
|
||||
SFX h α ας . # ώρα > ώρας
|
||||
|
||||
SFX i Y 4
|
||||
SFX i ώ ώντας . # αγαπώ > αγαπώντας
|
||||
SFX i ής ές . # νικητής > νικητές
|
||||
SFX i ά ές . # καρδιά > καρδιές
|
||||
SFX i ή ές . # ψυχή > ψυχές
|
||||
|
||||
SFX j Y 3
|
||||
SFX j ης ικο . # ζηλιάρης > ζηλιάρικο
|
||||
SFX j ω τε . # δέσω > δέστε
|
||||
SFX j ος ους . # δρόμος > δρόμους
|
||||
|
||||
SFX k Y 3
|
||||
SFX k ω εται . # δένω > δένεται
|
||||
SFX k ος οι . # δρόμος > δρόμοι
|
||||
SFX k ας ατος . # κρέας > κρέατος
|
||||
|
||||
SFX l Y 4
|
||||
SFX l υ ια . # βράδυ > βράδια
|
||||
SFX l ι ια . # καλοκαίρι > καλοκαίρια
|
||||
SFX l ώ ούμαι . # λυπώ > λυπούμαι
|
||||
SFX l ής ήδων . # μπαλωματής > μπαλωματήδων
|
||||
|
||||
SFX m Y 3
|
||||
SFX m ώ άει . # αγαπώ > αγαπάει
|
||||
SFX m όμουν όσαστε . # δενόμουν > δενόσαστε
|
||||
SFX m ω ει . # δένω > δένει
|
||||
|
||||
SFX n Y 3
|
||||
SFX n ύς ιοί . # βαθύς > βαθιοί
|
||||
SFX n ώ είτε . # αγαπηθώ > αγαπηθείτε
|
||||
SFX n ος ο . # δρόμος > δρόμο
|
||||
575134
NodeJsProjects/SpellChecker/Dictionaries/el_GR/el_GR.dic
Normal file
575134
NodeJsProjects/SpellChecker/Dictionaries/el_GR/el_GR.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,58 @@
|
||||
name : el_GR 0.7 version of the greek dictionary
|
||||
dd/mm/yyyy: 15/09/2006
|
||||
License : MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
contact : Steve Stavropoulos
|
||||
URL : http://elspell.math.upatras.gr
|
||||
|
||||
This release added the MPL and LGPL to the available licences and an
|
||||
update to the .aff file (by Nick Demou).
|
||||
The dictionary is triple licenced now and it is based on earlier work
|
||||
done by Evripidis Papakostas. [mentioned below]
|
||||
The new licence is also mentioned below.
|
||||
|
||||
Steve Stavropoulos
|
||||
|
||||
==================
|
||||
|
||||
name : el_GR (v.003) Enhanced Version
|
||||
dd/mm/yyyy: 08/02/2002
|
||||
License : GNU GPL
|
||||
contact : evris@source.gr
|
||||
URL : ispell.source.gr
|
||||
-----------------------------------------------
|
||||
This dictionary is based on greek wordlist and affixes used by ispell
|
||||
(which based on older work of Mitalas and Seraskeris). Many thanks to
|
||||
Voula Sanida (voulariba@source.gr) and Panayotis Vryonis (vrypan@yassou.net)
|
||||
for their help in converting the affix rules and to all the people that
|
||||
contributed words to the vocabulary.
|
||||
Evripidis Papakostas (evris@source.gr)
|
||||
|
||||
==================
|
||||
|
||||
The new Licence:
|
||||
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
|
||||
2832
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US.aff
Normal file
2832
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US.aff
Normal file
File diff suppressed because it is too large
Load Diff
52891
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US.dic
Normal file
52891
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US.dic
Normal file
File diff suppressed because it is too large
Load Diff
9843
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_hyph.dic
Normal file
9843
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_hyph.dic
Normal file
File diff suppressed because it is too large
Load Diff
347243
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_thes.dat
Normal file
347243
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_thes.dat
Normal file
File diff suppressed because it is too large
Load Diff
142691
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_thes.idx
Normal file
142691
NodeJsProjects/SpellChecker/Dictionaries/en_US/en_US_thes.idx
Normal file
File diff suppressed because it is too large
Load Diff
6822
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES.aff
Normal file
6822
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES.aff
Normal file
File diff suppressed because it is too large
Load Diff
71166
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES.dic
Normal file
71166
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES.dic
Normal file
File diff suppressed because it is too large
Load Diff
165
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_LGPLv3.txt
Normal file
165
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_LGPLv3.txt
Normal file
@@ -0,0 +1,165 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
470
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_MPL-1.1.txt
Normal file
470
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_MPL-1.1.txt
Normal file
@@ -0,0 +1,470 @@
|
||||
MOZILLA PUBLIC LICENSE
|
||||
Version 1.1
|
||||
|
||||
---------------
|
||||
|
||||
1. Definitions.
|
||||
|
||||
1.0.1. "Commercial Use" means distribution or otherwise making the
|
||||
Covered Code available to a third party.
|
||||
|
||||
1.1. "Contributor" means each entity that creates or contributes to
|
||||
the creation of Modifications.
|
||||
|
||||
1.2. "Contributor Version" means the combination of the Original
|
||||
Code, prior Modifications used by a Contributor, and the Modifications
|
||||
made by that particular Contributor.
|
||||
|
||||
1.3. "Covered Code" means the Original Code or Modifications or the
|
||||
combination of the Original Code and Modifications, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
||||
accepted in the software development community for the electronic
|
||||
transfer of data.
|
||||
|
||||
1.5. "Executable" means Covered Code in any form other than Source
|
||||
Code.
|
||||
|
||||
1.6. "Initial Developer" means the individual or entity identified
|
||||
as the Initial Developer in the Source Code notice required by Exhibit
|
||||
A.
|
||||
|
||||
1.7. "Larger Work" means a work which combines Covered Code or
|
||||
portions thereof with code not governed by the terms of this License.
|
||||
|
||||
1.8. "License" means this document.
|
||||
|
||||
1.8.1. "Licensable" means having the right to grant, to the maximum
|
||||
extent possible, whether at the time of the initial grant or
|
||||
subsequently acquired, any and all of the rights conveyed herein.
|
||||
|
||||
1.9. "Modifications" means any addition to or deletion from the
|
||||
substance or structure of either the Original Code or any previous
|
||||
Modifications. When Covered Code is released as a series of files, a
|
||||
Modification is:
|
||||
A. Any addition to or deletion from the contents of a file
|
||||
containing Original Code or previous Modifications.
|
||||
|
||||
B. Any new file that contains any part of the Original Code or
|
||||
previous Modifications.
|
||||
|
||||
1.10. "Original Code" means Source Code of computer software code
|
||||
which is described in the Source Code notice required by Exhibit A as
|
||||
Original Code, and which, at the time of its release under this
|
||||
License is not already Covered Code governed by this License.
|
||||
|
||||
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
||||
hereafter acquired, including without limitation, method, process,
|
||||
and apparatus claims, in any patent Licensable by grantor.
|
||||
|
||||
1.11. "Source Code" means the preferred form of the Covered Code for
|
||||
making modifications to it, including all modules it contains, plus
|
||||
any associated interface definition files, scripts used to control
|
||||
compilation and installation of an Executable, or source code
|
||||
differential comparisons against either the Original Code or another
|
||||
well known, available Covered Code of the Contributor's choice. The
|
||||
Source Code can be in a compressed or archival form, provided the
|
||||
appropriate decompression or de-archiving software is widely available
|
||||
for no charge.
|
||||
|
||||
1.12. "You" (or "Your") means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms of, this
|
||||
License or a future version of this License issued under Section 6.1.
|
||||
For legal entities, "You" includes any entity which controls, is
|
||||
controlled by, or is under common control with You. For purposes of
|
||||
this definition, "control" means (a) the power, direct or indirect,
|
||||
to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (b) ownership of more than fifty percent
|
||||
(50%) of the outstanding shares or beneficial ownership of such
|
||||
entity.
|
||||
|
||||
2. Source Code License.
|
||||
|
||||
2.1. The Initial Developer Grant.
|
||||
The Initial Developer hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license, subject to third party intellectual property
|
||||
claims:
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Initial Developer to use, reproduce,
|
||||
modify, display, perform, sublicense and distribute the Original
|
||||
Code (or portions thereof) with or without Modifications, and/or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patents Claims infringed by the making, using or
|
||||
selling of Original Code, to make, have made, use, practice,
|
||||
sell, and offer for sale, and/or otherwise dispose of the
|
||||
Original Code (or portions thereof).
|
||||
|
||||
(c) the licenses granted in this Section 2.1(a) and (b) are
|
||||
effective on the date Initial Developer first distributes
|
||||
Original Code under the terms of this License.
|
||||
|
||||
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||
granted: 1) for code that You delete from the Original Code; 2)
|
||||
separate from the Original Code; or 3) for infringements caused
|
||||
by: i) the modification of the Original Code or ii) the
|
||||
combination of the Original Code with other software or devices.
|
||||
|
||||
2.2. Contributor Grant.
|
||||
Subject to third party intellectual property claims, each Contributor
|
||||
hereby grants You a world-wide, royalty-free, non-exclusive license
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Contributor, to use, reproduce, modify,
|
||||
display, perform, sublicense and distribute the Modifications
|
||||
created by such Contributor (or portions thereof) either on an
|
||||
unmodified basis, with other Modifications, as Covered Code
|
||||
and/or as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using, or
|
||||
selling of Modifications made by that Contributor either alone
|
||||
and/or in combination with its Contributor Version (or portions
|
||||
of such combination), to make, use, sell, offer for sale, have
|
||||
made, and/or otherwise dispose of: 1) Modifications made by that
|
||||
Contributor (or portions thereof); and 2) the combination of
|
||||
Modifications made by that Contributor with its Contributor
|
||||
Version (or portions of such combination).
|
||||
|
||||
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||
effective on the date Contributor first makes Commercial Use of
|
||||
the Covered Code.
|
||||
|
||||
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||
granted: 1) for any code that Contributor has deleted from the
|
||||
Contributor Version; 2) separate from the Contributor Version;
|
||||
3) for infringements caused by: i) third party modifications of
|
||||
Contributor Version or ii) the combination of Modifications made
|
||||
by that Contributor with other software (except as part of the
|
||||
Contributor Version) or other devices; or 4) under Patent Claims
|
||||
infringed by Covered Code in the absence of Modifications made by
|
||||
that Contributor.
|
||||
|
||||
3. Distribution Obligations.
|
||||
|
||||
3.1. Application of License.
|
||||
The Modifications which You create or to which You contribute are
|
||||
governed by the terms of this License, including without limitation
|
||||
Section 2.2. The Source Code version of Covered Code may be
|
||||
distributed only under the terms of this License or a future version
|
||||
of this License released under Section 6.1, and You must include a
|
||||
copy of this License with every copy of the Source Code You
|
||||
distribute. You may not offer or impose any terms on any Source Code
|
||||
version that alters or restricts the applicable version of this
|
||||
License or the recipients' rights hereunder. However, You may include
|
||||
an additional document offering the additional rights described in
|
||||
Section 3.5.
|
||||
|
||||
3.2. Availability of Source Code.
|
||||
Any Modification which You create or to which You contribute must be
|
||||
made available in Source Code form under the terms of this License
|
||||
either on the same media as an Executable version or via an accepted
|
||||
Electronic Distribution Mechanism to anyone to whom you made an
|
||||
Executable version available; and if made available via Electronic
|
||||
Distribution Mechanism, must remain available for at least twelve (12)
|
||||
months after the date it initially became available, or at least six
|
||||
(6) months after a subsequent version of that particular Modification
|
||||
has been made available to such recipients. You are responsible for
|
||||
ensuring that the Source Code version remains available even if the
|
||||
Electronic Distribution Mechanism is maintained by a third party.
|
||||
|
||||
3.3. Description of Modifications.
|
||||
You must cause all Covered Code to which You contribute to contain a
|
||||
file documenting the changes You made to create that Covered Code and
|
||||
the date of any change. You must include a prominent statement that
|
||||
the Modification is derived, directly or indirectly, from Original
|
||||
Code provided by the Initial Developer and including the name of the
|
||||
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
||||
Executable version or related documentation in which You describe the
|
||||
origin or ownership of the Covered Code.
|
||||
|
||||
3.4. Intellectual Property Matters
|
||||
(a) Third Party Claims.
|
||||
If Contributor has knowledge that a license under a third party's
|
||||
intellectual property rights is required to exercise the rights
|
||||
granted by such Contributor under Sections 2.1 or 2.2,
|
||||
Contributor must include a text file with the Source Code
|
||||
distribution titled "LEGAL" which describes the claim and the
|
||||
party making the claim in sufficient detail that a recipient will
|
||||
know whom to contact. If Contributor obtains such knowledge after
|
||||
the Modification is made available as described in Section 3.2,
|
||||
Contributor shall promptly modify the LEGAL file in all copies
|
||||
Contributor makes available thereafter and shall take other steps
|
||||
(such as notifying appropriate mailing lists or newsgroups)
|
||||
reasonably calculated to inform those who received the Covered
|
||||
Code that new knowledge has been obtained.
|
||||
|
||||
(b) Contributor APIs.
|
||||
If Contributor's Modifications include an application programming
|
||||
interface and Contributor has knowledge of patent licenses which
|
||||
are reasonably necessary to implement that API, Contributor must
|
||||
also include this information in the LEGAL file.
|
||||
|
||||
(c) Representations.
|
||||
Contributor represents that, except as disclosed pursuant to
|
||||
Section 3.4(a) above, Contributor believes that Contributor's
|
||||
Modifications are Contributor's original creation(s) and/or
|
||||
Contributor has sufficient rights to grant the rights conveyed by
|
||||
this License.
|
||||
|
||||
3.5. Required Notices.
|
||||
You must duplicate the notice in Exhibit A in each file of the Source
|
||||
Code. If it is not possible to put such notice in a particular Source
|
||||
Code file due to its structure, then You must include such notice in a
|
||||
location (such as a relevant directory) where a user would be likely
|
||||
to look for such a notice. If You created one or more Modification(s)
|
||||
You may add your name as a Contributor to the notice described in
|
||||
Exhibit A. You must also duplicate this License in any documentation
|
||||
for the Source Code where You describe recipients' rights or ownership
|
||||
rights relating to Covered Code. You may choose to offer, and to
|
||||
charge a fee for, warranty, support, indemnity or liability
|
||||
obligations to one or more recipients of Covered Code. However, You
|
||||
may do so only on Your own behalf, and not on behalf of the Initial
|
||||
Developer or any Contributor. You must make it absolutely clear than
|
||||
any such warranty, support, indemnity or liability obligation is
|
||||
offered by You alone, and You hereby agree to indemnify the Initial
|
||||
Developer and every Contributor for any liability incurred by the
|
||||
Initial Developer or such Contributor as a result of warranty,
|
||||
support, indemnity or liability terms You offer.
|
||||
|
||||
3.6. Distribution of Executable Versions.
|
||||
You may distribute Covered Code in Executable form only if the
|
||||
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
||||
and if You include a notice stating that the Source Code version of
|
||||
the Covered Code is available under the terms of this License,
|
||||
including a description of how and where You have fulfilled the
|
||||
obligations of Section 3.2. The notice must be conspicuously included
|
||||
in any notice in an Executable version, related documentation or
|
||||
collateral in which You describe recipients' rights relating to the
|
||||
Covered Code. You may distribute the Executable version of Covered
|
||||
Code or ownership rights under a license of Your choice, which may
|
||||
contain terms different from this License, provided that You are in
|
||||
compliance with the terms of this License and that the license for the
|
||||
Executable version does not attempt to limit or alter the recipient's
|
||||
rights in the Source Code version from the rights set forth in this
|
||||
License. If You distribute the Executable version under a different
|
||||
license You must make it absolutely clear that any terms which differ
|
||||
from this License are offered by You alone, not by the Initial
|
||||
Developer or any Contributor. You hereby agree to indemnify the
|
||||
Initial Developer and every Contributor for any liability incurred by
|
||||
the Initial Developer or such Contributor as a result of any such
|
||||
terms You offer.
|
||||
|
||||
3.7. Larger Works.
|
||||
You may create a Larger Work by combining Covered Code with other code
|
||||
not governed by the terms of this License and distribute the Larger
|
||||
Work as a single product. In such a case, You must make sure the
|
||||
requirements of this License are fulfilled for the Covered Code.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation.
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Code due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description
|
||||
must be included in the LEGAL file described in Section 3.4 and must
|
||||
be included with all distributions of the Source Code. Except to the
|
||||
extent prohibited by statute or regulation, such description must be
|
||||
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||
understand it.
|
||||
|
||||
5. Application of this License.
|
||||
|
||||
This License applies to code to which the Initial Developer has
|
||||
attached the notice in Exhibit A and to related Covered Code.
|
||||
|
||||
6. Versions of the License.
|
||||
|
||||
6.1. New Versions.
|
||||
Netscape Communications Corporation ("Netscape") may publish revised
|
||||
and/or new versions of the License from time to time. Each version
|
||||
will be given a distinguishing version number.
|
||||
|
||||
6.2. Effect of New Versions.
|
||||
Once Covered Code has been published under a particular version of the
|
||||
License, You may always continue to use it under the terms of that
|
||||
version. You may also choose to use such Covered Code under the terms
|
||||
of any subsequent version of the License published by Netscape. No one
|
||||
other than Netscape has the right to modify the terms applicable to
|
||||
Covered Code created under this License.
|
||||
|
||||
6.3. Derivative Works.
|
||||
If You create or use a modified version of this License (which you may
|
||||
only do in order to apply it to code which is not already Covered Code
|
||||
governed by this License), You must (a) rename Your license so that
|
||||
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
||||
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
||||
license (except to note that your license differs from this License)
|
||||
and (b) otherwise make it clear that Your version of the license
|
||||
contains terms which differ from the Mozilla Public License and
|
||||
Netscape Public License. (Filling in the name of the Initial
|
||||
Developer, Original Code or Contributor in the notice described in
|
||||
Exhibit A shall not of themselves be deemed to be modifications of
|
||||
this License.)
|
||||
|
||||
7. DISCLAIMER OF WARRANTY.
|
||||
|
||||
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
||||
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
||||
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
||||
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
||||
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
||||
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
||||
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||
|
||||
8. TERMINATION.
|
||||
|
||||
8.1. This License and the rights granted hereunder will terminate
|
||||
automatically if You fail to comply with terms herein and fail to cure
|
||||
such breach within 30 days of becoming aware of the breach. All
|
||||
sublicenses to the Covered Code which are properly granted shall
|
||||
survive any termination of this License. Provisions which, by their
|
||||
nature, must remain in effect beyond the termination of this License
|
||||
shall survive.
|
||||
|
||||
8.2. If You initiate litigation by asserting a patent infringement
|
||||
claim (excluding declatory judgment actions) against Initial Developer
|
||||
or a Contributor (the Initial Developer or Contributor against whom
|
||||
You file such action is referred to as "Participant") alleging that:
|
||||
|
||||
(a) such Participant's Contributor Version directly or indirectly
|
||||
infringes any patent, then any and all rights granted by such
|
||||
Participant to You under Sections 2.1 and/or 2.2 of this License
|
||||
shall, upon 60 days notice from Participant terminate prospectively,
|
||||
unless if within 60 days after receipt of notice You either: (i)
|
||||
agree in writing to pay Participant a mutually agreeable reasonable
|
||||
royalty for Your past and future use of Modifications made by such
|
||||
Participant, or (ii) withdraw Your litigation claim with respect to
|
||||
the Contributor Version against such Participant. If within 60 days
|
||||
of notice, a reasonable royalty and payment arrangement are not
|
||||
mutually agreed upon in writing by the parties or the litigation claim
|
||||
is not withdrawn, the rights granted by Participant to You under
|
||||
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
||||
the 60 day notice period specified above.
|
||||
|
||||
(b) any software, hardware, or device, other than such Participant's
|
||||
Contributor Version, directly or indirectly infringes any patent, then
|
||||
any rights granted to You by such Participant under Sections 2.1(b)
|
||||
and 2.2(b) are revoked effective as of the date You first made, used,
|
||||
sold, distributed, or had made, Modifications made by that
|
||||
Participant.
|
||||
|
||||
8.3. If You assert a patent infringement claim against Participant
|
||||
alleging that such Participant's Contributor Version directly or
|
||||
indirectly infringes any patent where such claim is resolved (such as
|
||||
by license or settlement) prior to the initiation of patent
|
||||
infringement litigation, then the reasonable value of the licenses
|
||||
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
||||
into account in determining the amount or value of any payment or
|
||||
license.
|
||||
|
||||
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
||||
all end user license agreements (excluding distributors and resellers)
|
||||
which have been validly granted by You or any distributor hereunder
|
||||
prior to termination shall survive termination.
|
||||
|
||||
9. LIMITATION OF LIABILITY.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
||||
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
||||
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
||||
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
||||
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
||||
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
||||
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
||||
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
10. U.S. GOVERNMENT END USERS.
|
||||
|
||||
The Covered Code is a "commercial item," as that term is defined in
|
||||
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
||||
software" and "commercial computer software documentation," as such
|
||||
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
||||
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
||||
all U.S. Government End Users acquire Covered Code with only those
|
||||
rights set forth herein.
|
||||
|
||||
11. MISCELLANEOUS.
|
||||
|
||||
This License represents the complete agreement concerning subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. This License shall be governed by
|
||||
California law provisions (except to the extent applicable law, if
|
||||
any, provides otherwise), excluding its conflict-of-law provisions.
|
||||
With respect to disputes in which at least one party is a citizen of,
|
||||
or an entity chartered or registered to do business in the United
|
||||
States of America, any litigation relating to this License shall be
|
||||
subject to the jurisdiction of the Federal Courts of the Northern
|
||||
District of California, with venue lying in Santa Clara County,
|
||||
California, with the losing party responsible for costs, including
|
||||
without limitation, court costs and reasonable attorneys' fees and
|
||||
expenses. The application of the United Nations Convention on
|
||||
Contracts for the International Sale of Goods is expressly excluded.
|
||||
Any law or regulation which provides that the language of a contract
|
||||
shall be construed against the drafter shall not apply to this
|
||||
License.
|
||||
|
||||
12. RESPONSIBILITY FOR CLAIMS.
|
||||
|
||||
As between Initial Developer and the Contributors, each party is
|
||||
responsible for claims and damages arising, directly or indirectly,
|
||||
out of its utilization of rights under this License and You agree to
|
||||
work with Initial Developer and Contributors to distribute such
|
||||
responsibility on an equitable basis. Nothing herein is intended or
|
||||
shall be deemed to constitute any admission of liability.
|
||||
|
||||
13. MULTIPLE-LICENSED CODE.
|
||||
|
||||
Initial Developer may designate portions of the Covered Code as
|
||||
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
||||
Developer permits you to utilize portions of the Covered Code under
|
||||
Your choice of the NPL or the alternative licenses, if any, specified
|
||||
by the Initial Developer in the file described in Exhibit A.
|
||||
|
||||
EXHIBIT A -Mozilla Public License.
|
||||
|
||||
``The contents of this file are subject to the Mozilla Public License
|
||||
Version 1.1 (the "License"); you may not use this file except in
|
||||
compliance with the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS"
|
||||
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific language governing rights and limitations
|
||||
under the License.
|
||||
|
||||
The Original Code is ______________________________________.
|
||||
|
||||
The Initial Developer of the Original Code is ________________________.
|
||||
Portions created by ______________________ are Copyright (C) ______
|
||||
_______________________. All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms
|
||||
of the _____ license (the "[___] License"), in which case the
|
||||
provisions of [______] License are applicable instead of those
|
||||
above. If you wish to allow use of your version of this file only
|
||||
under the terms of the [____] License and not to allow others to use
|
||||
your version of this file under the MPL, indicate your decision by
|
||||
deleting the provisions above and replace them with the notice and
|
||||
other provisions required by the [___] License. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file
|
||||
under either the MPL or the [___] License."
|
||||
|
||||
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
||||
the notices in the Source Code files of the Original Code. You should
|
||||
use the text of this Exhibit A rather than the text found in the
|
||||
Original Code Source Code for Your Modifications.]
|
||||
|
||||
877
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_hyph.dic
Normal file
877
NodeJsProjects/SpellChecker/Dictionaries/es_ES/es_ES_hyph.dic
Normal file
@@ -0,0 +1,877 @@
|
||||
ISO8859-1
|
||||
1b2ra
|
||||
1b2rá
|
||||
1b2re
|
||||
1b2ré
|
||||
1b2ri
|
||||
1b2rí
|
||||
1b2ro
|
||||
1b2ró
|
||||
1b2ru
|
||||
1b2rú
|
||||
1b2la
|
||||
1b2lá
|
||||
1b2le
|
||||
1b2lé
|
||||
1b2li
|
||||
1b2lí
|
||||
1b2lo
|
||||
1b2ló
|
||||
1b2lu
|
||||
1b2lú
|
||||
1c2ra
|
||||
1c2rá
|
||||
1c2re
|
||||
1c2ré
|
||||
1c2ri
|
||||
1c2rí
|
||||
1c2ro
|
||||
1c2ró
|
||||
1c2ru
|
||||
1c2rú
|
||||
1c2la
|
||||
1c2lá
|
||||
1c2le
|
||||
1c2lé
|
||||
1c2li
|
||||
1c2lí
|
||||
1c2lo
|
||||
1c2ló
|
||||
1c2lu
|
||||
1c2lú
|
||||
1d2ra
|
||||
1d2rá
|
||||
1d2re
|
||||
1d2ré
|
||||
1d2ri
|
||||
1d2rí
|
||||
1d2ro
|
||||
1d2ró
|
||||
1d2ru
|
||||
1d2rú
|
||||
1f2ra
|
||||
1d2rá
|
||||
1d2re
|
||||
1d2ré
|
||||
1d2ri
|
||||
1d2rí
|
||||
1d2ro
|
||||
1d2ró
|
||||
1d2ru
|
||||
1d2rú
|
||||
1f2la
|
||||
1f2lá
|
||||
1f2le
|
||||
1f2lé
|
||||
1f2li
|
||||
1f2lí
|
||||
1f2lo
|
||||
1f2ló
|
||||
1f2lu
|
||||
1f2lú
|
||||
1f2ra
|
||||
1f2rá
|
||||
1f2re
|
||||
1f2ré
|
||||
1f2ri
|
||||
1f2rí
|
||||
1f2ro
|
||||
1f2ró
|
||||
1f2ru
|
||||
1f2rú
|
||||
1g2ra
|
||||
1g2rá
|
||||
1g2re
|
||||
1g2ré
|
||||
1g2ri
|
||||
1g2rí
|
||||
1g2ro
|
||||
1g2ró
|
||||
1g2ru
|
||||
1g2rú
|
||||
1g2la
|
||||
1g2lá
|
||||
1g2le
|
||||
1g2lé
|
||||
1g2li
|
||||
1g2lí
|
||||
1g2lo
|
||||
1g2ló
|
||||
1g2lu
|
||||
1g2lú
|
||||
1k2ra
|
||||
1k2rá
|
||||
1k2re
|
||||
1k2ré
|
||||
1k2ri
|
||||
1k2rí
|
||||
1k2ro
|
||||
1k2ró
|
||||
1k2ru
|
||||
1k2rú
|
||||
1l2la
|
||||
1l2lá
|
||||
1l2le
|
||||
1l2lé
|
||||
1l2li
|
||||
1l2lí
|
||||
1l2lo
|
||||
1l2ló
|
||||
1l2lu
|
||||
1l2lú
|
||||
1p2ra
|
||||
1p2rá
|
||||
1p2re
|
||||
1p2ré
|
||||
1p2ri
|
||||
1p2rí
|
||||
1p2ro
|
||||
1p2ró
|
||||
1p2ru
|
||||
1p2rú
|
||||
1p2la
|
||||
1p2lá
|
||||
1p2le
|
||||
1p2lé
|
||||
1p2li
|
||||
1p2lí
|
||||
1p2lo
|
||||
1p2ló
|
||||
1p2lu
|
||||
1p2lú
|
||||
1t2ra
|
||||
1t2rá
|
||||
1t2re
|
||||
1t2ré
|
||||
1t2ri
|
||||
1t2rí
|
||||
1t2ro
|
||||
1t2ró
|
||||
1t2ru
|
||||
1t2rú
|
||||
1r2ra
|
||||
1r2rá
|
||||
1r2re
|
||||
1r2ré
|
||||
1r2ri
|
||||
1r2rí
|
||||
1r2ro
|
||||
1r2ró
|
||||
1r2ru
|
||||
1r2rú
|
||||
1c2ha
|
||||
1c2há
|
||||
1c2he
|
||||
1c2hé
|
||||
1c2hi
|
||||
1c2hí
|
||||
1c2ho
|
||||
1c2hó
|
||||
1c2hu
|
||||
1c2hú
|
||||
|
||||
1ba
|
||||
1bá
|
||||
1be
|
||||
1bé
|
||||
1bi
|
||||
1bí
|
||||
1bo
|
||||
1bó
|
||||
1bu
|
||||
1bú
|
||||
1bü
|
||||
1ca
|
||||
1cá
|
||||
1ce
|
||||
1cé
|
||||
1ci
|
||||
1cí
|
||||
1co
|
||||
1có
|
||||
1cu
|
||||
1cú
|
||||
1cü
|
||||
1da
|
||||
1dá
|
||||
1de
|
||||
1dé
|
||||
1di
|
||||
1dí
|
||||
1do
|
||||
1dó
|
||||
1du
|
||||
1dú
|
||||
1dü
|
||||
1fa
|
||||
1fá
|
||||
1fe
|
||||
1fé
|
||||
1fi
|
||||
1fí
|
||||
1fo
|
||||
1fó
|
||||
1fu
|
||||
1fú
|
||||
1fü
|
||||
1ga
|
||||
1gá
|
||||
1ge
|
||||
1gé
|
||||
1gi
|
||||
1gí
|
||||
1go
|
||||
1gó
|
||||
1gu
|
||||
1gú
|
||||
1gü
|
||||
1ja
|
||||
1já
|
||||
1je
|
||||
1jé
|
||||
1ji
|
||||
1jí
|
||||
1jo
|
||||
1jó
|
||||
1ju
|
||||
1jú
|
||||
1jü
|
||||
1ka
|
||||
1ká
|
||||
1ke
|
||||
1ké
|
||||
1ki
|
||||
1kí
|
||||
1ko
|
||||
1kó
|
||||
1ku
|
||||
1kú
|
||||
1kü
|
||||
1la
|
||||
1lá
|
||||
1le
|
||||
1lé
|
||||
1li
|
||||
1lí
|
||||
1lo
|
||||
1ló
|
||||
1lu
|
||||
1lú
|
||||
1lü
|
||||
1ma
|
||||
1má
|
||||
1me
|
||||
1mé
|
||||
1mi
|
||||
1mí
|
||||
1mo
|
||||
1mó
|
||||
1mu
|
||||
1mú
|
||||
1mü
|
||||
1na
|
||||
1ná
|
||||
1ne
|
||||
1né
|
||||
1ni
|
||||
1ní
|
||||
1no
|
||||
1nó
|
||||
1nu
|
||||
1nú
|
||||
1nü
|
||||
1ña
|
||||
1ñá
|
||||
1ñe
|
||||
1ñé
|
||||
1ñi
|
||||
1ñí
|
||||
1ño
|
||||
1ñó
|
||||
1ñu
|
||||
1ñú
|
||||
1ñü
|
||||
1pa
|
||||
1pá
|
||||
1pe
|
||||
1pé
|
||||
1pi
|
||||
1pí
|
||||
1po
|
||||
1pó
|
||||
1pu
|
||||
1pú
|
||||
1pü
|
||||
1qa
|
||||
1qá
|
||||
1qe
|
||||
1qé
|
||||
1qi
|
||||
1qí
|
||||
1qo
|
||||
1qó
|
||||
1qú
|
||||
1qü
|
||||
1ra
|
||||
1rá
|
||||
1re
|
||||
1ré
|
||||
1ri
|
||||
1rí
|
||||
1ro
|
||||
1ró
|
||||
1ru
|
||||
1rú
|
||||
1rü
|
||||
1sa
|
||||
1sá
|
||||
1se
|
||||
1sé
|
||||
1si
|
||||
1sí
|
||||
1so
|
||||
1só
|
||||
1su
|
||||
1sú
|
||||
1sü
|
||||
1ta
|
||||
1tá
|
||||
1te
|
||||
1té
|
||||
1ti
|
||||
1tí
|
||||
1to
|
||||
1tó
|
||||
1tu
|
||||
1tú
|
||||
1tü
|
||||
1va
|
||||
1vá
|
||||
1ve
|
||||
1vé
|
||||
1vi
|
||||
1ví
|
||||
1vo
|
||||
1vó
|
||||
1vu
|
||||
1vú
|
||||
1vü
|
||||
1wa
|
||||
1wá
|
||||
1we
|
||||
1wé
|
||||
1wi
|
||||
1wí
|
||||
1wo
|
||||
1wó
|
||||
1wu
|
||||
1wú
|
||||
1wü
|
||||
1xa
|
||||
1xá
|
||||
1xe
|
||||
1xé
|
||||
1xi
|
||||
1xí
|
||||
1xo
|
||||
1xó
|
||||
1xu
|
||||
1xú
|
||||
1xü
|
||||
1ya
|
||||
1yá
|
||||
1ye
|
||||
1yé
|
||||
1yi
|
||||
1yí
|
||||
1yo
|
||||
1yó
|
||||
1yu
|
||||
1yú
|
||||
1yü
|
||||
1za
|
||||
1zá
|
||||
1ze
|
||||
1zé
|
||||
1zi
|
||||
1zí
|
||||
1zo
|
||||
1zó
|
||||
1zu
|
||||
1zú
|
||||
1zü
|
||||
h1b
|
||||
h1c
|
||||
h1d
|
||||
h1f
|
||||
h1g
|
||||
h1h
|
||||
h1j
|
||||
h1k
|
||||
h1l
|
||||
h1m
|
||||
h1n
|
||||
h1ñ
|
||||
h1p
|
||||
h1q
|
||||
h1r
|
||||
h1s
|
||||
h1t
|
||||
h1v
|
||||
h1w
|
||||
h1x
|
||||
h1y
|
||||
h1z
|
||||
1ai
|
||||
1au
|
||||
1ei
|
||||
1eu
|
||||
1io
|
||||
1ou
|
||||
1ia
|
||||
1ua
|
||||
1ie
|
||||
1ue
|
||||
1oi
|
||||
1uo
|
||||
1ui
|
||||
1iu
|
||||
1ay
|
||||
1ey
|
||||
1oy
|
||||
a1a
|
||||
a1e
|
||||
a1o
|
||||
e1a
|
||||
e1e
|
||||
e1o
|
||||
o1a
|
||||
o1e
|
||||
o1o
|
||||
|
||||
a1ha
|
||||
a1há
|
||||
á1ha
|
||||
a1he
|
||||
a1hé
|
||||
á1he
|
||||
a1ho
|
||||
a1hó
|
||||
á1ho
|
||||
e1ha
|
||||
e1há
|
||||
é1ha
|
||||
e1he
|
||||
e1hé
|
||||
é1he
|
||||
e1ho
|
||||
e1hó
|
||||
é1ho
|
||||
o1ha
|
||||
o1há
|
||||
ó1ha
|
||||
o1he
|
||||
o1hé
|
||||
ó1he
|
||||
o1ho
|
||||
o1hó
|
||||
ó1ho
|
||||
|
||||
1ahy
|
||||
1ehy
|
||||
1ohy
|
||||
1iai
|
||||
1iei
|
||||
1uai
|
||||
1uei
|
||||
1uau
|
||||
1iau
|
||||
1uay
|
||||
1uey
|
||||
|
||||
1guay
|
||||
|
||||
1gua
|
||||
1güa
|
||||
1gue
|
||||
1güe
|
||||
1gui
|
||||
1güi
|
||||
1guo
|
||||
1güo
|
||||
|
||||
1bai
|
||||
1cai
|
||||
1dai
|
||||
1fai
|
||||
1gai
|
||||
1jai
|
||||
1kai
|
||||
1lai
|
||||
1mai
|
||||
1nai
|
||||
1ñai
|
||||
1pai
|
||||
1rai
|
||||
1sai
|
||||
1tai
|
||||
1vai
|
||||
1wai
|
||||
1xai
|
||||
1zai
|
||||
1bau
|
||||
1cau
|
||||
1dau
|
||||
1fau
|
||||
1gau
|
||||
1jau
|
||||
1kau
|
||||
1lau
|
||||
1mau
|
||||
1nau
|
||||
1ñau
|
||||
1pau
|
||||
1rau
|
||||
1sau
|
||||
1tau
|
||||
1vau
|
||||
1wau
|
||||
1xau
|
||||
1zau
|
||||
1bei
|
||||
1cei
|
||||
1dei
|
||||
1fei
|
||||
1gei
|
||||
1jei
|
||||
1kei
|
||||
1lei
|
||||
1mei
|
||||
1nei
|
||||
1ñei
|
||||
1pei
|
||||
1rei
|
||||
1sei
|
||||
1tei
|
||||
1vei
|
||||
1wei
|
||||
1xei
|
||||
1zei
|
||||
1beu
|
||||
1ceu
|
||||
1deu
|
||||
1feu
|
||||
1geu
|
||||
1jeu
|
||||
1keu
|
||||
1leu
|
||||
1meu
|
||||
1neu
|
||||
1ñeu
|
||||
1peu
|
||||
1reu
|
||||
1seu
|
||||
1teu
|
||||
1veu
|
||||
1weu
|
||||
1xeu
|
||||
1zeu
|
||||
1bio
|
||||
1cio
|
||||
1dio
|
||||
1fio
|
||||
1gio
|
||||
1jio
|
||||
1kio
|
||||
1lio
|
||||
1mio
|
||||
1nio
|
||||
1ñio
|
||||
1pio
|
||||
1rio
|
||||
1sio
|
||||
1tio
|
||||
1vio
|
||||
1wio
|
||||
1xio
|
||||
1zio
|
||||
1bou
|
||||
1cou
|
||||
1dou
|
||||
1fou
|
||||
1gou
|
||||
1jou
|
||||
1kou
|
||||
1lou
|
||||
1mou
|
||||
1nou
|
||||
1ñou
|
||||
1pou
|
||||
1rou
|
||||
1sou
|
||||
1tou
|
||||
1vou
|
||||
1wou
|
||||
1xou
|
||||
1zou
|
||||
1bia
|
||||
1cia
|
||||
1dia
|
||||
1fia
|
||||
1gia
|
||||
1jia
|
||||
1kia
|
||||
1lia
|
||||
1mia
|
||||
1nia
|
||||
1ñia
|
||||
1pia
|
||||
1ria
|
||||
1sia
|
||||
1tia
|
||||
1via
|
||||
1wia
|
||||
1xia
|
||||
1zia
|
||||
1bua
|
||||
1cua
|
||||
1dua
|
||||
1fua
|
||||
|
||||
1jua
|
||||
1kua
|
||||
1lua
|
||||
1mua
|
||||
1nua
|
||||
1ñua
|
||||
1pua
|
||||
1qua
|
||||
1rua
|
||||
1sua
|
||||
1tua
|
||||
1vua
|
||||
1wua
|
||||
1xua
|
||||
1zua
|
||||
1bie
|
||||
1cie
|
||||
1die
|
||||
1fie
|
||||
1gie
|
||||
1jie
|
||||
1kie
|
||||
1lie
|
||||
1mie
|
||||
1nie
|
||||
1ñie
|
||||
1pie
|
||||
1rie
|
||||
1sie
|
||||
1tie
|
||||
1vie
|
||||
1wie
|
||||
1xie
|
||||
1zie
|
||||
1bue
|
||||
1cue
|
||||
1due
|
||||
1fue
|
||||
|
||||
1jue
|
||||
1kue
|
||||
1lue
|
||||
1mue
|
||||
1nue
|
||||
1ñue
|
||||
1pue
|
||||
1que
|
||||
1qué
|
||||
1rue
|
||||
1sue
|
||||
1tue
|
||||
1vue
|
||||
1wue
|
||||
1xue
|
||||
1zue
|
||||
1boi
|
||||
1coi
|
||||
1doi
|
||||
1foi
|
||||
1goi
|
||||
1joi
|
||||
1koi
|
||||
1loi
|
||||
1moi
|
||||
1noi
|
||||
1ñoi
|
||||
1poi
|
||||
1roi
|
||||
1soi
|
||||
1toi
|
||||
1voi
|
||||
1woi
|
||||
1xoi
|
||||
1zoi
|
||||
1buo
|
||||
1cuo
|
||||
1duo
|
||||
1fuo
|
||||
|
||||
1juo
|
||||
1kuo
|
||||
1luo
|
||||
1muo
|
||||
1nuo
|
||||
1ñuo
|
||||
1puo
|
||||
1quo
|
||||
1ruo
|
||||
1suo
|
||||
1tuo
|
||||
1vuo
|
||||
1wuo
|
||||
1xuo
|
||||
1zuo
|
||||
1bui
|
||||
1cui
|
||||
1dui
|
||||
1fui
|
||||
|
||||
1jui
|
||||
1kui
|
||||
1lui
|
||||
1mui
|
||||
1nui
|
||||
1ñui
|
||||
1pui
|
||||
1qui
|
||||
1rui
|
||||
1sui
|
||||
1tui
|
||||
1vui
|
||||
1wui
|
||||
1xui
|
||||
1zui
|
||||
1biu
|
||||
1ciu
|
||||
1diu
|
||||
1fiu
|
||||
1giu
|
||||
1jiu
|
||||
1kiu
|
||||
1liu
|
||||
1miu
|
||||
1niu
|
||||
1ñiu
|
||||
1piu
|
||||
1riu
|
||||
1siu
|
||||
1tiu
|
||||
1viu
|
||||
1wiu
|
||||
1xiu
|
||||
1ziu
|
||||
1bay
|
||||
1cay
|
||||
1day
|
||||
1fay
|
||||
1gay
|
||||
1jay
|
||||
1kay
|
||||
1lay
|
||||
1may
|
||||
1nay
|
||||
1ñay
|
||||
1pay
|
||||
1ray
|
||||
1say
|
||||
1tay
|
||||
1vay
|
||||
1way
|
||||
1xay
|
||||
1zay
|
||||
1bey
|
||||
1cey
|
||||
1dey
|
||||
1fey
|
||||
1gey
|
||||
1jey
|
||||
1key
|
||||
1ley
|
||||
1mey
|
||||
1ney
|
||||
1ñey
|
||||
1pey
|
||||
1rey
|
||||
1sey
|
||||
1tey
|
||||
1vey
|
||||
1wey
|
||||
1xey
|
||||
1zey
|
||||
1boy
|
||||
1coy
|
||||
1doy
|
||||
1foy
|
||||
1goy
|
||||
1joy
|
||||
1koy
|
||||
1loy
|
||||
1moy
|
||||
1noy
|
||||
1ñoy
|
||||
1poy
|
||||
1roy
|
||||
1soy
|
||||
1toy
|
||||
1voy
|
||||
1woy
|
||||
1xoy
|
||||
1zoy
|
||||
|
||||
í1a
|
||||
a1í
|
||||
a1ú
|
||||
ú1a
|
||||
e1í
|
||||
í1e
|
||||
e1ú
|
||||
ú1e
|
||||
í1o
|
||||
o1í
|
||||
o1ú
|
||||
ú1o
|
||||
ú1i
|
||||
í1u
|
||||
|
||||
quei
|
||||
quéi
|
||||
queí
|
||||
queu
|
||||
quéu
|
||||
queú
|
||||
quio
|
||||
quío
|
||||
quió
|
||||
quia
|
||||
quía
|
||||
quiá
|
||||
quie
|
||||
quíe
|
||||
quié
|
||||
|
||||
guei
|
||||
guéi
|
||||
gueí
|
||||
gueu
|
||||
guéu
|
||||
gueú
|
||||
guio
|
||||
guío
|
||||
guió
|
||||
guia
|
||||
guía
|
||||
guiá
|
||||
guie
|
||||
guíe
|
||||
guié
|
||||
12012
NodeJsProjects/SpellChecker/Dictionaries/fr_FR/fr_FR.aff
Normal file
12012
NodeJsProjects/SpellChecker/Dictionaries/fr_FR/fr_FR.aff
Normal file
File diff suppressed because it is too large
Load Diff
75342
NodeJsProjects/SpellChecker/Dictionaries/fr_FR/fr_FR.dic
Normal file
75342
NodeJsProjects/SpellChecker/Dictionaries/fr_FR/fr_FR.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,72 @@
|
||||
_______________________________________________________________________________
|
||||
|
||||
DICTIONNAIRES ORTHOGRAPHIQUES FRANÇAIS
|
||||
version 4.11
|
||||
|
||||
Olivier R. - dicollecte<at>free<dot>fr
|
||||
Dicollecte : http://www.dicollecte.org/
|
||||
|
||||
Licence :
|
||||
MPL : Mozilla Public License
|
||||
version 2.0 -- http://www.mozilla.org/MPL/2.0/
|
||||
|
||||
Ce dictionnaire ne peut fonctionner qu’avec un logiciel utilisant le
|
||||
correcteur Hunspell : OpenOffice.org 3.2+, Firefox 4+, Thunderbird 5+
|
||||
|
||||
Principaux contributeurs :
|
||||
- Sylvain P. ;
|
||||
- Laurent Dubois ;
|
||||
- Jean-Luc T. ;
|
||||
- Pierre Poisson ;
|
||||
- Dominique Pellé ;
|
||||
- Pierre-Yves ;
|
||||
- Leywen ;
|
||||
- Romain Muller et Serge Bibauw, de l’association RENOUVO, grâce à qui
|
||||
la nouvelle orthographe et ses anciennes variantes ont pu être établies ;
|
||||
- Chantal Contant, pour ses recherches sur la réforme de 1990 ;
|
||||
- Benoît Sagot, qui nous a autorisé à comparer notre lexique avec Lefff,
|
||||
ce qui a mis en évidence des dizaines d’erreurs d’étiquetage grammatical ;
|
||||
- Philipp Burgess, pour la normalisation Unicode avec Hunspell.
|
||||
|
||||
Merci aussi à tous ceux qui ont apporté leur pierre à l’édifice.
|
||||
http://www.dicollecte.org/members.php?prj=fr
|
||||
|
||||
Pour participer à l’amélioration du dictionnaire, allez sur :
|
||||
http://www.dicollecte.org/home.php?prj=fr
|
||||
|
||||
_______________________________________________________________________________
|
||||
|
||||
À propos des différents dictionnaires français
|
||||
_______________________________________________________________________________
|
||||
|
||||
En 1990, le Conseil supérieur à la langue française et l’Académie française
|
||||
ont proposé une réforme de l’orthographe qui concerne plusieurs milliers de
|
||||
mots. L’emploi des nouvelles graphies n’est pas obligatoire. Les anciennes
|
||||
comme les nouvelles sont considérées comme correctes.
|
||||
|
||||
Pour en savoir plus sur la réforme de 1990 :
|
||||
http://www.renouvo.org/regles.php
|
||||
http://www.orthographe-recommandee.info/
|
||||
|
||||
Malgré les rectifications modestes apportées par cette réforme, la nouvelle
|
||||
orthographe suscite beaucoup de polémiques. Afin de satisfaire les exigences
|
||||
de chacun, quatre dictionnaires existent, respectant différemment cette
|
||||
réforme.
|
||||
|
||||
Dictionnaire «Moderne»
|
||||
Ce dictionnaire propose une sélection des graphies classiques et
|
||||
réformées, suivant la lente évolution de l’orthographe actuelle. Ce
|
||||
dictionnaire contient les graphies les moins polémiques de la réforme.
|
||||
|
||||
Dictionnaire «Classique» [recommandé]
|
||||
Ce dictionnaire est une extension du dictionnaire «Moderne» et propose
|
||||
en sus des graphies alternatives, parfois encore très usitées, parfois
|
||||
tombées en désuétude.
|
||||
|
||||
Dictionnaire «Réforme 1990»
|
||||
Ce dictionnaire ne connaît que les graphies nouvelles des mots concernés
|
||||
par la réforme de 1990.
|
||||
|
||||
Dictionnaire «Toutes variantes»
|
||||
Ce dictionnaire contient les nouvelles et les anciennes graphies des
|
||||
mots concernés par la réforme de 1990.
|
||||
48609
NodeJsProjects/SpellChecker/Dictionaries/hu_HU/hu_HU.aff
Normal file
48609
NodeJsProjects/SpellChecker/Dictionaries/hu_HU/hu_HU.aff
Normal file
File diff suppressed because it is too large
Load Diff
88880
NodeJsProjects/SpellChecker/Dictionaries/hu_HU/hu_HU.dic
Normal file
88880
NodeJsProjects/SpellChecker/Dictionaries/hu_HU/hu_HU.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,37 @@
|
||||
Magyar Ispell helyesírási szótár – 1.6.1-es szótárállományok morfológiai adatokkal
|
||||
|
||||
Követelmény: Hunspell helyesírás-ellenőrző 1.1.3-as vagy újabb változata
|
||||
|
||||
A következő nyílt forráskódú licencek bármelyike alapján
|
||||
szabadon felhasználható, de mindenféle garancia nélkül:
|
||||
|
||||
GNU GPL 2.0, GNU LGPL 2.1 vagy MPL 1.1
|
||||
|
||||
(c) Németh László és Godó Ferenc, 2010
|
||||
|
||||
Honlap: http://magyarispell.sf.net
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
Hungarian Hunspell dictionaries version 1.6.1 with morphological data
|
||||
|
||||
Requirements: Hunspell 1.1.3 or newer
|
||||
|
||||
License
|
||||
|
||||
GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
|
||||
|
||||
The contents of this software may be used under the terms of
|
||||
the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL",
|
||||
see COPYING.LGPL) or (excepting the LGPLed GNU gettext library in the
|
||||
intl/ directory) the Mozilla Public License Version 1.1 or later
|
||||
(the "MPL", see COPYING.MPL).
|
||||
|
||||
Software distributed under these licenses is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the licences
|
||||
for the specific language governing rights and limitations under the licenses.
|
||||
|
||||
2010 (c) László Németh & Ferenc Godó
|
||||
|
||||
Home: http://magyarispell.sf.net
|
||||
3408
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.aff
Normal file
3408
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.aff
Normal file
File diff suppressed because it is too large
Load Diff
95186
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.dic
Normal file
95186
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.dic
Normal file
File diff suppressed because it is too large
Load Diff
447
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.txt
Normal file
447
NodeJsProjects/SpellChecker/Dictionaries/it_IT/it_IT.txt
Normal file
@@ -0,0 +1,447 @@
|
||||
Version 2.4 (01/09/2007) (dd/mm/yyyy)
|
||||
|
||||
Home page: http://linguistico.sf.net/wiki
|
||||
|
||||
For English Readers: please see the text at the end of this document
|
||||
|
||||
**********************************
|
||||
*********** Italiano ***********
|
||||
**********************************
|
||||
|
||||
Il dizionario italiano
|
||||
|
||||
SOMMARIO
|
||||
|
||||
1. Licenza
|
||||
2. Avvertenze importanti (leggere assolutamente)
|
||||
3. Modalità d'installazione in OpenOffice.org
|
||||
4. Integrazione con altri prodotti
|
||||
5. Altri correttori ortografici che fanno uso di questo dizionario
|
||||
6. Ringraziamenti
|
||||
|
||||
|
||||
**********
|
||||
1. Licenza
|
||||
|
||||
Il file affix e il dizionario italiano per il correttore ortografico MySpell
|
||||
usato da OpenOffice.org sono rilasciati da Davide Prina
|
||||
davideprina<at>yahoo<dot>com (sostituire <at> con @ e <dot> con . per il
|
||||
contatto via E-Mail) sotto i termini e le condizioni della GNU General Public
|
||||
License (GPL) 3.0 o successiva. Una volta accettata la licenza per
|
||||
l'uso, la distribuzione e la modifica di questo prodotto, l'accettante dovrà
|
||||
rispettare tutti i termini e le condizioni riportate nella licenza scelta.
|
||||
|
||||
La copia della licenza applicabile a questo lavoro è disponibile presso il sito
|
||||
del progetto GNU:
|
||||
|
||||
http://www.gnu.org/
|
||||
|
||||
La licenza è anche allegata nel file it_IT_COPYING
|
||||
|
||||
************************************************
|
||||
2. Avvertenze importanti (leggere assolutamente)
|
||||
|
||||
A partire da OpenOffice.org 1.1, il dizionario italiano per la correzione
|
||||
ortografica è direttamente integrato nella suite e perciò non necessita più di
|
||||
alcuna installazione manuale. L'unico problema è che non è aggiornato all'ultima
|
||||
versione e quindi è consigliato effettuare l'aggiornamento manuale o automatico
|
||||
ad ogni nuova versione rilasciata, come è indicato di seguito.
|
||||
|
||||
È opportuno verificare che il dizionario sia attivo, selezionando dalla barra
|
||||
dei menù Strumenti->Opzioni->Impostazione Lingua->Lingue e controllando che
|
||||
sotto lingue standard/Occidentale, l'opzione di scelta "Italiano (Italia)" sia
|
||||
selezionata e abbia al suo fianco un segno di spunta sormontato dalle lettere
|
||||
ABC.
|
||||
|
||||
Nel caso il correttore non risultasse attivo, è sufficiente scegliere dalla
|
||||
barra dei menù Strumenti->Opzioni->Impostazione Lingua->Linguistica e dopo avere
|
||||
premuto sul pulsante "Modifica" della finestra di dialogo, attivarlo seleziondo
|
||||
l'apposita voce.
|
||||
|
||||
Se tuttavia il correttore non risultasse ancora attivo o nell'eventualità che si
|
||||
voglia aggiornare la versione del dizionario installata è possibile utilizzare
|
||||
le procedure di installazione indicate oltre.
|
||||
|
||||
È vivamente consigliato l'aggiornamento del dizionario perché le ultime versioni
|
||||
contengono molte correzioni rispetto alle precedenti e sono meno esose di
|
||||
risorse.
|
||||
|
||||
******************************************************************************
|
||||
3. Modalità d'installazione (procedura corretta a partire dalla versione 641c)
|
||||
|
||||
Ulteriore documentazione può essere trovata qui:
|
||||
http://linguistico.sourceforge.net/wiki
|
||||
|
||||
Esistono principalmente due modalità per installare il dizionario italiano:
|
||||
|
||||
a) in automatico, grazie a due comodi installer creati da membri della comunità
|
||||
che si occupano di tutte le fasi dell'installazione.
|
||||
|
||||
Nota: non è detto che l'aggiornamento automatico prelevi l'ultima versione del
|
||||
dizionario, in alcuni casi potrebbe addirittura installare una versione
|
||||
più vecchia rispetto a quella presente sul proprio sistema.
|
||||
L'installazione manuale/semimanuale è quella sempre corretta ed è molto
|
||||
semplice da effettuare.
|
||||
|
||||
La versione per MS Windows si trova su
|
||||
|
||||
http://www.ooodocs.org/dictinstall/
|
||||
|
||||
Mentre la versione per Linux è reperibile presso
|
||||
|
||||
http://www.deadletterdrop.worldonline.co.uk/OOo/
|
||||
|
||||
oppure
|
||||
|
||||
http://ooodi.sourceforge.net/
|
||||
|
||||
Nelle ultime versioni l'installatore dei dizionari è già inserito in OOo e
|
||||
quindi è possibile effettuare un'installazine semiautomatica seguendo i seguenti
|
||||
punti:
|
||||
* scaricare l'ultima versione del dizionario da
|
||||
http://sourceforge.net/projects/linguistico/
|
||||
andando sulla sezione download
|
||||
|
||||
Nota: è possibile prendere il file più recente contenuto in:
|
||||
- Strumenti Linguistici DicOOo <- contiene sia il dizionario che il
|
||||
thesaurus, però bisogna scegliere il
|
||||
pacchetto corretto rispetto alla
|
||||
propria versione di OOo (2.0 o 1.1.x)
|
||||
|
||||
* aprire qualsiasi documento di OOo od il contenitore soffice
|
||||
* dal menù: File->Pilota automatico->Installa nuovi dizionari
|
||||
Nota: il documento contiene una macro necessaria per l'installazione
|
||||
automatica
|
||||
* selezionare l'italiano
|
||||
* premere il bottone Avvia DicOOo
|
||||
* mettere il check su "Installazione pacchetto linguistico off-line"
|
||||
* premere sul bottone "sfoglia", cercare e selezionare il file scaricato nel
|
||||
primo punto
|
||||
* selezionare gli strumeti linguistici che si vogliono installare
|
||||
|
||||
b) manualmente
|
||||
I nuovi dizionari sono scaricabili da qui:
|
||||
http://sourceforge.net/projects/linguistico/
|
||||
nella sezione download -> "Dizionario italiano per OOo"
|
||||
|
||||
Scompattate il file compresso (.zip, tar.gz, bzip,...) nella directory/cartella
|
||||
corretta; tale directory dipende dal sistema operativo usato e dalla propria
|
||||
versione di OOo (per visualizzare la propria versione è sufficiente aprire un
|
||||
documento di OOo, aprire il menù ? e selezionare la voce "Informazioni su
|
||||
OpenOffice.org ...)
|
||||
|
||||
Per Debian GNU/Linux: /usr/share/myspell/dict
|
||||
|
||||
Per le versioni ufficiali Sun:
|
||||
* per le versioni maggiori o uguale alla 1.0.1 la directory su windows è:
|
||||
<Directory di installazione di OpenOffice.org>/share/dict/ooo
|
||||
* per le versioni inferiori alla versione 1.0.1 la directory è:
|
||||
<Directory di installazione di OpenOffice.org>/user/wordbook/
|
||||
|
||||
Se il vostro sistema operativo è differente e/o non riuscite a trovare la
|
||||
directory in cui effettuare l'installazione, allora è possibile cercare il file
|
||||
dictionary.lst; la directory dove trovare questo file è quella in cui dovete
|
||||
installare il dizionario.
|
||||
|
||||
Aprite in un qualsiasi editor di testo il file dictionary.lst che troverete
|
||||
nella cartella citata precedentemente, in modo da poter inserire il codice
|
||||
della lingua e della regione che vi interessa.
|
||||
|
||||
Per esempio:
|
||||
nel vostro editor di testo aggiungete questa linea al file dictionary.lst:
|
||||
|
||||
DICT it IT it_IT
|
||||
|
||||
ATTENZIONE: la riga sopra indicata non deve iniziare con il simbolo #,
|
||||
altrimenti l'istruzione è commentata e di conseguenza non è eseguita.
|
||||
È indispensabile che siano rispettati i caratteri maiuscoli e minuscoli come
|
||||
riportato nell'esempio, altrimenti non funziona. Inoltre è consigliabile
|
||||
controllare che tale riga sia presente una sola volta nel file, altrimenti il
|
||||
dizionario verrà caricato più volte (una volta per ogni riga presente) causando
|
||||
uno spreco di memoria RAM e l'inconveniente di fornire più volte gli stessi
|
||||
suggerimenti alle parole errate.
|
||||
|
||||
Quindi salvate il file con le vostre modifiche.
|
||||
I significati dei vari campi sono:
|
||||
|
||||
Campo 1: Tipo di stringa: "DICT" , al momento è l'unica voce disponibile.
|
||||
Campo 2: Codice linguistico "it" o "de" o "en" ...(vedi Codici Linguistici ISO)
|
||||
Campo 3: Codice Regionale "IT" o"DE" o "US" ... (vedi Codici Regionali ISO)
|
||||
Campo 4: Il nome del dizionario da utilizzare "it_IT" o "it_CH" o ...
|
||||
Senza aggiungere le estensioni .aff o .dic dei files. Questa voce è
|
||||
particolarmente utile se vogliamo creare i nostri dizionari
|
||||
specialistici. Per esempio it_INFORMATICA o it_DIRITTO. Sarà
|
||||
sufficiente aggiungere un'altra linea al file dictionary.lst cambiando
|
||||
solo il nome del dizionario e il correttore ortografico di
|
||||
OpenOffice.org controllerà i vostri documenti usando in successione
|
||||
tutti i dizionari elencati e presenti nella cartella wordbook per la
|
||||
lingua italiana.
|
||||
|
||||
Ora è necessario chiudere tutte le applicazione di OpenOffice.org attive,
|
||||
compreso il quick start. Questo passo serve per permettere ad OOo di vedere le
|
||||
modifiche apportate e di utilizzarle.
|
||||
|
||||
Successivamente :
|
||||
|
||||
1) Aprite un nuovo documento di OpenOffice.org e scegliete dalla barra dei menù
|
||||
il comando:
|
||||
Strumenti->Opzioni->Impostazioni Lingua->Lingue
|
||||
(Tools->Options->Language settings->Languages nella versione inglese)
|
||||
2) Impostate nell'elenco a discesa che vedete sulla destra la lingua italiana
|
||||
quale linguaggio di default per i vostri documenti
|
||||
3) selezionando l'elemento Linguistica (Writing Aids) che troverete nella
|
||||
sezione Impostazioni Lingua (Language Settings) e premendo il tasto di
|
||||
modifica della sezione Moduli Linguistici Disponibili (Available language
|
||||
modules) collocato sulla destra della finestra di dialogo, potrete accedere
|
||||
alla sezione che vi permetterà di impostare il correttore in italiano. Sarà
|
||||
sufficiente scegliere la nostra lingua dall'elenco a discesa che mostra tutti
|
||||
i dizionari disponibili nella Suite, facendo attenzione a selezionare con un
|
||||
segno di spunta, la funzione di correzione ortografica nel riquadro
|
||||
immediatamente sottostante l'elenco a discesa.
|
||||
|
||||
Attenzione: La denominazione dei comandi di menù o delle finestre può subire
|
||||
modifiche o la loro collocazione può essere modificata nel passaggio da una
|
||||
versione ad un'altra.
|
||||
|
||||
Attenzione: gli utenti di OpenOffice.org per MS Windows, devono riavviare anche
|
||||
il quickstarter della Suite, la piccola icona con i gabbiani (versione 1.0 o
|
||||
superiore) che dovrebbe apparire sulla System Tray nell'angolo in basso a destra
|
||||
dello schermo, proprio a fianco dell'orologio di sistema. È sufficiente cliccare
|
||||
col tasto destro del mouse sull'icona e scegliere esci o exit dal menù di
|
||||
contesto. Successivamente, si dovrà effettuare l'installazione del dizionario,
|
||||
mantenendo disattivato il quickstarter durante tutta la procedura, chiudere il
|
||||
documento dal quale si sono modificate le opzioni generali e riaprirne uno nuovo
|
||||
per verificare il funzionamento del correttore italiano.
|
||||
|
||||
Questo è tutto, il correttore ortografico in italiano dovrebbe funzionare in
|
||||
modo adeguato.
|
||||
|
||||
|
||||
**********************************
|
||||
4. Integrazione con altri prodotti
|
||||
|
||||
Il dizionario italiano può essere usato con vari programmi.
|
||||
Qui di seguito ne vengono riportati alcuni:
|
||||
* OpenOffice.org: in modo nativo
|
||||
Caratteristiche: controllo ortografico durante la digitazione o su richiesta
|
||||
http://it.openoffice.org
|
||||
|
||||
* Mozilla-ThunderBird (è un client di posta): in modo nativo
|
||||
Caratteristiche: controllo ortografico solo su richiesta)
|
||||
http://www.mozilla.org/products/thunderbird/
|
||||
* Mozilla (browser con client di posta): in modo nativo
|
||||
Caratteristiche: controllo ortografico solo su richiesta
|
||||
http://www.mozilla.org
|
||||
* Mozilla-FireFox (è un browser): con l'estensione SpellBound
|
||||
Caratteristiche: controllo ortografico durante la digitazione o su richiesta
|
||||
Nota: il dizionario è installato in una directory differente
|
||||
http://spellbound.sourceforge.net/
|
||||
* Mozilla-ThunderBird (è un client di posta): con l'estensione Thunderbird
|
||||
In-Line SpellChecker
|
||||
Caratteristiche: controllo ortografico durante la digitazione
|
||||
http://www.supportware.net/mozilla/#ext8
|
||||
|
||||
* vim: è possibile convertire un dizionario per MySpell in modo da poter essere
|
||||
usato direttamente anche da vim. Per ora tale funzionalità è disponibile solo
|
||||
sulla versione in sviluppo di vim.
|
||||
|
||||
* gaim
|
||||
|
||||
Nota: è possibile scaricarsi i dizionari anche dal sito di mozilla (ma non è
|
||||
detto che siano aggiornati all'ultima versione): http://www.mozdev.org/
|
||||
|
||||
* ...
|
||||
|
||||
|
||||
******************************************************************
|
||||
5. Altri correttori ortografici che fanno uso di questo dizionario
|
||||
|
||||
Questo dizionario può essere usato dai seguenti programmi di correzione
|
||||
ortografica:
|
||||
* MySpell. http://lingucomponent.openoffice.org
|
||||
* Aspell. http://aspell.net
|
||||
* HunSpell. http://hunspell.sf.net
|
||||
|
||||
|
||||
************************************************
|
||||
6. Ringraziamenti
|
||||
|
||||
Gli utenti di un elaboratore di testi, come di qualunque altra applicazione
|
||||
software che utilizzi un correttore ortografico, spesso sottovalutano il lavoro
|
||||
necessario per produrre questo strumento fondamentale. I problemi sono molti:
|
||||
la lingua italiana non è statica, ma in continua evoluzione; semplici errori di
|
||||
digitazione in un dizionario digitale possono portare a gravi conseguenze sul
|
||||
funzionamento del correttore; ciò che si usa correntemente nella lingua parlata
|
||||
non sempre è corretto in quella scritta.
|
||||
|
||||
Proprio per ovviare a tali difficoltà, i volontari della Comunità OpenOffice.org
|
||||
hanno partecipato attivamente al controllo di qualità del contenuto dell'attuale
|
||||
dizionario per la correzione ortografica. Con questa sezione si vuole rendere
|
||||
merito a tutti coloro che hanno collaborato in questa attività.
|
||||
|
||||
È possibile vedere l'elenco dei volontari all'interno del file AUTHOURS
|
||||
|
||||
|
||||
**********************************
|
||||
*********** English ************
|
||||
**********************************
|
||||
|
||||
The Italian dictionary.
|
||||
|
||||
INDEX
|
||||
|
||||
1. License
|
||||
2. Warnings (to read absolutely)
|
||||
3. How to install it in OpenOffice.org
|
||||
4. Others product that can use this dictionary
|
||||
5. Other spell checking program that can use this dictionary
|
||||
6. Thanks
|
||||
|
||||
|
||||
**********
|
||||
1. License
|
||||
|
||||
The Italian dictionary and affix file for the MySpell spell-checker used by
|
||||
OpenOffice.org are released by Davide Prina davideprina<at>yahoo<dot>com (please
|
||||
change <at> with @ and <dot> with . in order to contact the authors) under the
|
||||
terms and conditions of the GNU General Public License (GPL) version 3.0 or
|
||||
above. The user, distributor and/or programmer after accept this license when
|
||||
he/she uses, distributes and/or modifies these files. He/she must agree with
|
||||
every term and condition included in the chosen license.
|
||||
|
||||
A copy of the licenses applicable to this work is available at:
|
||||
|
||||
http://www.gnu.org/
|
||||
|
||||
A copy of the license is in the GPL.txt file
|
||||
|
||||
|
||||
********************************
|
||||
2. Warnings (to read absolutely)
|
||||
|
||||
Warning: Since the release of OpenOffice.org 1.1 the Italian dictionary is
|
||||
directly integrated into the applications and so it doesn't need any manual
|
||||
installation. Probably in OpenOffice.org there is not the last version so it is
|
||||
better to install it as show below. It is a good norm to verify that the
|
||||
dictionary has been activate. You can do so simply by selecting from the menu
|
||||
bar Tools->Options->Language Settings->Languages and by checking that the item
|
||||
"Italian (italy)" is selected and a slash with the letters ABC is displayed to
|
||||
its side.
|
||||
|
||||
If the dictionary is not activated yet, you can perform this action by selecting
|
||||
from the menu bar Tools->Options->Language Settings->Writing Aids and by
|
||||
clicking on the "Edit..." button you will find in the dialog window. In the new
|
||||
dialog that will appear, you can activate the dictionary.
|
||||
|
||||
In the case the dictionary doesn't still work or you wish to upgarde the version
|
||||
of your installed dictionary you can follow the procedures explained below.
|
||||
|
||||
|
||||
**************************************
|
||||
3. How to install it in OpenOffice.org
|
||||
|
||||
Note: new dictionary versions are avaiable from here:
|
||||
http://sourceforge.net/projects/linguistico/
|
||||
|
||||
a) To install these dictionaries in OOo build 641c and greater:
|
||||
A. Unzip the dictionary files, *.aff and *.dic,
|
||||
into your <OpenOffice.org>\user\wordbook\*.* directory
|
||||
|
||||
Attention: since OpenOffice.org 1.0.1 the right folder for the dictionary is
|
||||
<OpenOffice.org>\share\dict\ooo
|
||||
|
||||
B. Edit the dictionary.lst file that is in that same directory
|
||||
using any text editor to register a dictionary for a specific
|
||||
locale (the same dictionary can be registered for multiple locales).
|
||||
|
||||
For example:
|
||||
To add the it_IT.zip dictionary under the Italian (Italy) locale to OOo you
|
||||
would:
|
||||
cd <OpenOffice.org641>\user\wordbook (or <OpenOffice.org>\share\dict\ooo)
|
||||
unzip it_IT.zip
|
||||
|
||||
|
||||
b) And then, using any text editor, add the following line to dictionary.lst:
|
||||
DICT it IT it_IT
|
||||
|
||||
This line tells OOo to register the affix file it_IT.aff and the wordlist
|
||||
it_IT.dic to the locale it IT, which is Italian (Italy). The specific fields of
|
||||
this line are:
|
||||
|
||||
Field 1: Entry Type "DICT" is the only supported entry type so far
|
||||
Field 2: Language code from Locale "en" or "it" or "pt" ...
|
||||
(see {ISO Language Code} page)
|
||||
Field 3: Country code from Locale "IT" ...
|
||||
(see {ISO Country Code} page)
|
||||
Field 4: Root name of Dictionary "italian" or "it_it" ...
|
||||
(do not add the .aff or .dic extensions to the name)
|
||||
|
||||
|
||||
c) Start up OpenOffice.org. and go to:
|
||||
|
||||
Tools->Options->LanguageSettings->WritingAids
|
||||
|
||||
Hit "Edit" and use the pull down menu to select your locale, Italy,
|
||||
and then make sure to check the MySpell SpellChecker for that locale.
|
||||
|
||||
That it! Your dictionary is installed and registered for that language.
|
||||
|
||||
|
||||
**********************************************
|
||||
4. Others product that can use this dictionary
|
||||
|
||||
The Italian dictionary can be used with many programs.
|
||||
Here is some programs that can use this dictionary:
|
||||
|
||||
* OpenOffice.org
|
||||
spell checking when you type or upon request
|
||||
http://it.openoffice.org
|
||||
|
||||
* Mozilla-ThunderBird
|
||||
spell checking only upon request
|
||||
http://www.mozilla.org/products/thunderbird/
|
||||
* Mozilla con il client di posta: in modo nativo
|
||||
spell checking only upon request
|
||||
http://www.mozilla.org
|
||||
* Mozilla-FireFox: with SpellBound extension
|
||||
spell checking when you type or upon request
|
||||
Note: the dictionary is installed under a different directory
|
||||
http://spellbound.sourceforge.net/
|
||||
* Mozilla-ThunderBird: with "Thunderbird In-Line SpellChecker" extension
|
||||
spell checking when you type
|
||||
http://www.supportware.net/mozilla/#ext8
|
||||
|
||||
* vim: the MySpell dictionary can be converted and used with the last vim
|
||||
version
|
||||
|
||||
Note: you can download dictionary at mozilla site: http://www.mozdev.org/
|
||||
|
||||
* ...
|
||||
|
||||
|
||||
************************************************************
|
||||
5. Other spell checking program that can use this dictionary
|
||||
|
||||
This dictionary can be used with different spell checking programs:
|
||||
* MySpell. http://lingucomponent.openoffice.org
|
||||
* Aspell. http://aspell.net
|
||||
* HunSpell. http://hunspell.sf.net
|
||||
|
||||
|
||||
*********
|
||||
6. Thanks
|
||||
|
||||
The users of a word processor, like of whatever application that utilizes a
|
||||
spell checker, often underestimate the work needed to produce this basic tool.
|
||||
There are a lot of problems: the Italian language is not static, but always
|
||||
evolving; simple misspelled words in a digital dictionary can cause several
|
||||
problems to the spell checker; what is commonly used in the spoken language, it
|
||||
is not always right in the written one.
|
||||
|
||||
Just to overcome such difficulties, the volunteers of the OpenOffice.org
|
||||
Community have actively took part into the quality check of this dictionary
|
||||
content. With this section, we want to give the right credit to all people who
|
||||
have collaborated in this activity.
|
||||
|
||||
You can read the volunteers names in the file AUTHOURS
|
||||
|
||||
78256
NodeJsProjects/SpellChecker/Dictionaries/ko_KR/ko_KR.aff
Normal file
78256
NodeJsProjects/SpellChecker/Dictionaries/ko_KR/ko_KR.aff
Normal file
File diff suppressed because it is too large
Load Diff
260085
NodeJsProjects/SpellChecker/Dictionaries/ko_KR/ko_KR.dic
Normal file
260085
NodeJsProjects/SpellChecker/Dictionaries/ko_KR/ko_KR.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,35 @@
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Hunspell Korean spellchecking dictionary.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Changwoo Ryu.
|
||||
Portions created by the Initial Developer are Copyright (C) 2008
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s): Changwoo Ryu <cwryu@debian.org>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
@@ -0,0 +1,339 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
||||
@@ -0,0 +1,510 @@
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations
|
||||
below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it
|
||||
becomes a de-facto standard. To achieve this, non-free programs must
|
||||
be allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control
|
||||
compilation and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at least
|
||||
three years, to give the same user the materials specified in
|
||||
Subsection 6a, above, for a charge no more than the cost of
|
||||
performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply, and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License
|
||||
may add an explicit geographical distribution limitation excluding those
|
||||
countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms
|
||||
of the ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library.
|
||||
It is safest to attach them to the start of each source file to most
|
||||
effectively convey the exclusion of warranty; and each file should
|
||||
have at least the "copyright" line and a pointer to where the full
|
||||
notice is found.
|
||||
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or
|
||||
your school, if any, to sign a "copyright disclaimer" for the library,
|
||||
if necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James
|
||||
Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
||||
@@ -0,0 +1,567 @@
|
||||
MOZILLA PUBLIC LICENSE
|
||||
Version 1.1
|
||||
|
||||
---------------
|
||||
|
||||
1. Definitions.
|
||||
|
||||
1.0.1. "Commercial Use" means distribution or otherwise making the
|
||||
Covered Code available to a third party.
|
||||
|
||||
1.1. "Contributor" means each entity that creates or contributes to
|
||||
the creation of Modifications.
|
||||
|
||||
1.2. "Contributor Version" means the combination of the Original
|
||||
Code, prior Modifications used by a Contributor, and the Modifications
|
||||
made by that particular Contributor.
|
||||
|
||||
1.3. "Covered Code" means the Original Code or Modifications or the
|
||||
combination of the Original Code and Modifications, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
||||
accepted in the software development community for the electronic
|
||||
transfer of data.
|
||||
|
||||
1.5. "Executable" means Covered Code in any form other than Source
|
||||
Code.
|
||||
|
||||
1.6. "Initial Developer" means the individual or entity identified
|
||||
as the Initial Developer in the Source Code notice required by Exhibit
|
||||
A.
|
||||
|
||||
1.7. "Larger Work" means a work which combines Covered Code or
|
||||
portions thereof with code not governed by the terms of this License.
|
||||
|
||||
1.8. "License" means this document.
|
||||
|
||||
1.8.1. "Licensable" means having the right to grant, to the maximum
|
||||
extent possible, whether at the time of the initial grant or
|
||||
subsequently acquired, any and all of the rights conveyed herein.
|
||||
|
||||
1.9. "Modifications" means any addition to or deletion from the
|
||||
substance or structure of either the Original Code or any previous
|
||||
Modifications. When Covered Code is released as a series of files, a
|
||||
Modification is:
|
||||
A. Any addition to or deletion from the contents of a file
|
||||
containing Original Code or previous Modifications.
|
||||
|
||||
B. Any new file that contains any part of the Original Code or
|
||||
previous Modifications.
|
||||
|
||||
1.10. "Original Code" means Source Code of computer software code
|
||||
which is described in the Source Code notice required by Exhibit A as
|
||||
Original Code, and which, at the time of its release under this
|
||||
License is not already Covered Code governed by this License.
|
||||
|
||||
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
||||
hereafter acquired, including without limitation, method, process,
|
||||
and apparatus claims, in any patent Licensable by grantor.
|
||||
|
||||
1.11. "Source Code" means the preferred form of the Covered Code for
|
||||
making modifications to it, including all modules it contains, plus
|
||||
any associated interface definition files, scripts used to control
|
||||
compilation and installation of an Executable, or source code
|
||||
differential comparisons against either the Original Code or another
|
||||
well known, available Covered Code of the Contributor's choice. The
|
||||
Source Code can be in a compressed or archival form, provided the
|
||||
appropriate decompression or de-archiving software is widely available
|
||||
for no charge.
|
||||
|
||||
1.12. "You" (or "Your") means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms of, this
|
||||
License or a future version of this License issued under Section 6.1.
|
||||
For legal entities, "You" includes any entity which controls, is
|
||||
controlled by, or is under common control with You. For purposes of
|
||||
this definition, "control" means (a) the power, direct or indirect,
|
||||
to cause the direction or management of such entity, whether by
|
||||
contract or otherwise, or (b) ownership of more than fifty percent
|
||||
(50%) of the outstanding shares or beneficial ownership of such
|
||||
entity.
|
||||
|
||||
2. Source Code License.
|
||||
|
||||
2.1. The Initial Developer Grant.
|
||||
The Initial Developer hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license, subject to third party intellectual property
|
||||
claims:
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Initial Developer to use, reproduce,
|
||||
modify, display, perform, sublicense and distribute the Original
|
||||
Code (or portions thereof) with or without Modifications, and/or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patents Claims infringed by the making, using or
|
||||
selling of Original Code, to make, have made, use, practice,
|
||||
sell, and offer for sale, and/or otherwise dispose of the
|
||||
Original Code (or portions thereof).
|
||||
|
||||
(c) the licenses granted in this Section 2.1(a) and (b) are
|
||||
effective on the date Initial Developer first distributes
|
||||
Original Code under the terms of this License.
|
||||
|
||||
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||
granted: 1) for code that You delete from the Original Code; 2)
|
||||
separate from the Original Code; or 3) for infringements caused
|
||||
by: i) the modification of the Original Code or ii) the
|
||||
combination of the Original Code with other software or devices.
|
||||
|
||||
2.2. Contributor Grant.
|
||||
Subject to third party intellectual property claims, each Contributor
|
||||
hereby grants You a world-wide, royalty-free, non-exclusive license
|
||||
|
||||
(a) under intellectual property rights (other than patent or
|
||||
trademark) Licensable by Contributor, to use, reproduce, modify,
|
||||
display, perform, sublicense and distribute the Modifications
|
||||
created by such Contributor (or portions thereof) either on an
|
||||
unmodified basis, with other Modifications, as Covered Code
|
||||
and/or as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims infringed by the making, using, or
|
||||
selling of Modifications made by that Contributor either alone
|
||||
and/or in combination with its Contributor Version (or portions
|
||||
of such combination), to make, use, sell, offer for sale, have
|
||||
made, and/or otherwise dispose of: 1) Modifications made by that
|
||||
Contributor (or portions thereof); and 2) the combination of
|
||||
Modifications made by that Contributor with its Contributor
|
||||
Version (or portions of such combination).
|
||||
|
||||
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||
effective on the date Contributor first makes Commercial Use of
|
||||
the Covered Code.
|
||||
|
||||
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||
granted: 1) for any code that Contributor has deleted from the
|
||||
Contributor Version; 2) separate from the Contributor Version;
|
||||
3) for infringements caused by: i) third party modifications of
|
||||
Contributor Version or ii) the combination of Modifications made
|
||||
by that Contributor with other software (except as part of the
|
||||
Contributor Version) or other devices; or 4) under Patent Claims
|
||||
infringed by Covered Code in the absence of Modifications made by
|
||||
that Contributor.
|
||||
|
||||
3. Distribution Obligations.
|
||||
|
||||
3.1. Application of License.
|
||||
The Modifications which You create or to which You contribute are
|
||||
governed by the terms of this License, including without limitation
|
||||
Section 2.2. The Source Code version of Covered Code may be
|
||||
distributed only under the terms of this License or a future version
|
||||
of this License released under Section 6.1, and You must include a
|
||||
copy of this License with every copy of the Source Code You
|
||||
distribute. You may not offer or impose any terms on any Source Code
|
||||
version that alters or restricts the applicable version of this
|
||||
License or the recipients' rights hereunder. However, You may include
|
||||
an additional document offering the additional rights described in
|
||||
Section 3.5.
|
||||
|
||||
3.2. Availability of Source Code.
|
||||
Any Modification which You create or to which You contribute must be
|
||||
made available in Source Code form under the terms of this License
|
||||
either on the same media as an Executable version or via an accepted
|
||||
Electronic Distribution Mechanism to anyone to whom you made an
|
||||
Executable version available; and if made available via Electronic
|
||||
Distribution Mechanism, must remain available for at least twelve (12)
|
||||
months after the date it initially became available, or at least six
|
||||
(6) months after a subsequent version of that particular Modification
|
||||
has been made available to such recipients. You are responsible for
|
||||
ensuring that the Source Code version remains available even if the
|
||||
Electronic Distribution Mechanism is maintained by a third party.
|
||||
|
||||
3.3. Description of Modifications.
|
||||
You must cause all Covered Code to which You contribute to contain a
|
||||
file documenting the changes You made to create that Covered Code and
|
||||
the date of any change. You must include a prominent statement that
|
||||
the Modification is derived, directly or indirectly, from Original
|
||||
Code provided by the Initial Developer and including the name of the
|
||||
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
||||
Executable version or related documentation in which You describe the
|
||||
origin or ownership of the Covered Code.
|
||||
|
||||
3.4. Intellectual Property Matters
|
||||
(a) Third Party Claims.
|
||||
If Contributor has knowledge that a license under a third party's
|
||||
intellectual property rights is required to exercise the rights
|
||||
granted by such Contributor under Sections 2.1 or 2.2,
|
||||
Contributor must include a text file with the Source Code
|
||||
distribution titled "LEGAL" which describes the claim and the
|
||||
party making the claim in sufficient detail that a recipient will
|
||||
know whom to contact. If Contributor obtains such knowledge after
|
||||
the Modification is made available as described in Section 3.2,
|
||||
Contributor shall promptly modify the LEGAL file in all copies
|
||||
Contributor makes available thereafter and shall take other steps
|
||||
(such as notifying appropriate mailing lists or newsgroups)
|
||||
reasonably calculated to inform those who received the Covered
|
||||
Code that new knowledge has been obtained.
|
||||
|
||||
(b) Contributor APIs.
|
||||
If Contributor's Modifications include an application programming
|
||||
interface and Contributor has knowledge of patent licenses which
|
||||
are reasonably necessary to implement that API, Contributor must
|
||||
also include this information in the LEGAL file.
|
||||
|
||||
(c) Representations.
|
||||
Contributor represents that, except as disclosed pursuant to
|
||||
Section 3.4(a) above, Contributor believes that Contributor's
|
||||
Modifications are Contributor's original creation(s) and/or
|
||||
Contributor has sufficient rights to grant the rights conveyed by
|
||||
this License.
|
||||
|
||||
3.5. Required Notices.
|
||||
You must duplicate the notice in Exhibit A in each file of the Source
|
||||
Code. If it is not possible to put such notice in a particular Source
|
||||
Code file due to its structure, then You must include such notice in a
|
||||
location (such as a relevant directory) where a user would be likely
|
||||
to look for such a notice. If You created one or more Modification(s)
|
||||
You may add your name as a Contributor to the notice described in
|
||||
Exhibit A. You must also duplicate this License in any documentation
|
||||
for the Source Code where You describe recipients' rights or ownership
|
||||
rights relating to Covered Code. You may choose to offer, and to
|
||||
charge a fee for, warranty, support, indemnity or liability
|
||||
obligations to one or more recipients of Covered Code. However, You
|
||||
may do so only on Your own behalf, and not on behalf of the Initial
|
||||
Developer or any Contributor. You must make it absolutely clear than
|
||||
any such warranty, support, indemnity or liability obligation is
|
||||
offered by You alone, and You hereby agree to indemnify the Initial
|
||||
Developer and every Contributor for any liability incurred by the
|
||||
Initial Developer or such Contributor as a result of warranty,
|
||||
support, indemnity or liability terms You offer.
|
||||
|
||||
3.6. Distribution of Executable Versions.
|
||||
You may distribute Covered Code in Executable form only if the
|
||||
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
||||
and if You include a notice stating that the Source Code version of
|
||||
the Covered Code is available under the terms of this License,
|
||||
including a description of how and where You have fulfilled the
|
||||
obligations of Section 3.2. The notice must be conspicuously included
|
||||
in any notice in an Executable version, related documentation or
|
||||
collateral in which You describe recipients' rights relating to the
|
||||
Covered Code. You may distribute the Executable version of Covered
|
||||
Code or ownership rights under a license of Your choice, which may
|
||||
contain terms different from this License, provided that You are in
|
||||
compliance with the terms of this License and that the license for the
|
||||
Executable version does not attempt to limit or alter the recipient's
|
||||
rights in the Source Code version from the rights set forth in this
|
||||
License. If You distribute the Executable version under a different
|
||||
license You must make it absolutely clear that any terms which differ
|
||||
from this License are offered by You alone, not by the Initial
|
||||
Developer or any Contributor. You hereby agree to indemnify the
|
||||
Initial Developer and every Contributor for any liability incurred by
|
||||
the Initial Developer or such Contributor as a result of any such
|
||||
terms You offer.
|
||||
|
||||
3.7. Larger Works.
|
||||
You may create a Larger Work by combining Covered Code with other code
|
||||
not governed by the terms of this License and distribute the Larger
|
||||
Work as a single product. In such a case, You must make sure the
|
||||
requirements of this License are fulfilled for the Covered Code.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation.
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Code due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description
|
||||
must be included in the LEGAL file described in Section 3.4 and must
|
||||
be included with all distributions of the Source Code. Except to the
|
||||
extent prohibited by statute or regulation, such description must be
|
||||
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||
understand it.
|
||||
|
||||
5. Application of this License.
|
||||
|
||||
This License applies to code to which the Initial Developer has
|
||||
attached the notice in Exhibit A and to related Covered Code.
|
||||
|
||||
6. Versions of the License.
|
||||
|
||||
6.1. New Versions.
|
||||
Netscape Communications Corporation ("Netscape") may publish revised
|
||||
and/or new versions of the License from time to time. Each version
|
||||
will be given a distinguishing version number.
|
||||
|
||||
6.2. Effect of New Versions.
|
||||
Once Covered Code has been published under a particular version of the
|
||||
License, You may always continue to use it under the terms of that
|
||||
version. You may also choose to use such Covered Code under the terms
|
||||
of any subsequent version of the License published by Netscape. No one
|
||||
other than Netscape has the right to modify the terms applicable to
|
||||
Covered Code created under this License.
|
||||
|
||||
6.3. Derivative Works.
|
||||
If You create or use a modified version of this License (which you may
|
||||
only do in order to apply it to code which is not already Covered Code
|
||||
governed by this License), You must (a) rename Your license so that
|
||||
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
||||
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
||||
license (except to note that your license differs from this License)
|
||||
and (b) otherwise make it clear that Your version of the license
|
||||
contains terms which differ from the Mozilla Public License and
|
||||
Netscape Public License. (Filling in the name of the Initial
|
||||
Developer, Original Code or Contributor in the notice described in
|
||||
Exhibit A shall not of themselves be deemed to be modifications of
|
||||
this License.)
|
||||
|
||||
7. DISCLAIMER OF WARRANTY.
|
||||
|
||||
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
||||
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
||||
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
||||
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
||||
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
||||
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
||||
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||
|
||||
8. TERMINATION.
|
||||
|
||||
8.1. This License and the rights granted hereunder will terminate
|
||||
automatically if You fail to comply with terms herein and fail to cure
|
||||
such breach within 30 days of becoming aware of the breach. All
|
||||
sublicenses to the Covered Code which are properly granted shall
|
||||
survive any termination of this License. Provisions which, by their
|
||||
nature, must remain in effect beyond the termination of this License
|
||||
shall survive.
|
||||
|
||||
8.2. If You initiate litigation by asserting a patent infringement
|
||||
claim (excluding declatory judgment actions) against Initial Developer
|
||||
or a Contributor (the Initial Developer or Contributor against whom
|
||||
You file such action is referred to as "Participant") alleging that:
|
||||
|
||||
(a) such Participant's Contributor Version directly or indirectly
|
||||
infringes any patent, then any and all rights granted by such
|
||||
Participant to You under Sections 2.1 and/or 2.2 of this License
|
||||
shall, upon 60 days notice from Participant terminate prospectively,
|
||||
unless if within 60 days after receipt of notice You either: (i)
|
||||
agree in writing to pay Participant a mutually agreeable reasonable
|
||||
royalty for Your past and future use of Modifications made by such
|
||||
Participant, or (ii) withdraw Your litigation claim with respect to
|
||||
the Contributor Version against such Participant. If within 60 days
|
||||
of notice, a reasonable royalty and payment arrangement are not
|
||||
mutually agreed upon in writing by the parties or the litigation claim
|
||||
is not withdrawn, the rights granted by Participant to You under
|
||||
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
||||
the 60 day notice period specified above.
|
||||
|
||||
(b) any software, hardware, or device, other than such Participant's
|
||||
Contributor Version, directly or indirectly infringes any patent, then
|
||||
any rights granted to You by such Participant under Sections 2.1(b)
|
||||
and 2.2(b) are revoked effective as of the date You first made, used,
|
||||
sold, distributed, or had made, Modifications made by that
|
||||
Participant.
|
||||
|
||||
8.3. If You assert a patent infringement claim against Participant
|
||||
alleging that such Participant's Contributor Version directly or
|
||||
indirectly infringes any patent where such claim is resolved (such as
|
||||
by license or settlement) prior to the initiation of patent
|
||||
infringement litigation, then the reasonable value of the licenses
|
||||
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
||||
into account in determining the amount or value of any payment or
|
||||
license.
|
||||
|
||||
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
||||
all end user license agreements (excluding distributors and resellers)
|
||||
which have been validly granted by You or any distributor hereunder
|
||||
prior to termination shall survive termination.
|
||||
|
||||
9. LIMITATION OF LIABILITY.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
||||
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
||||
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
||||
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
||||
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
||||
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
||||
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
||||
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
||||
|
||||
10. U.S. GOVERNMENT END USERS.
|
||||
|
||||
The Covered Code is a "commercial item," as that term is defined in
|
||||
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
||||
software" and "commercial computer software documentation," as such
|
||||
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
||||
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
||||
all U.S. Government End Users acquire Covered Code with only those
|
||||
rights set forth herein.
|
||||
|
||||
11. MISCELLANEOUS.
|
||||
|
||||
This License represents the complete agreement concerning subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. This License shall be governed by
|
||||
California law provisions (except to the extent applicable law, if
|
||||
any, provides otherwise), excluding its conflict-of-law provisions.
|
||||
With respect to disputes in which at least one party is a citizen of,
|
||||
or an entity chartered or registered to do business in the United
|
||||
States of America, any litigation relating to this License shall be
|
||||
subject to the jurisdiction of the Federal Courts of the Northern
|
||||
District of California, with venue lying in Santa Clara County,
|
||||
California, with the losing party responsible for costs, including
|
||||
without limitation, court costs and reasonable attorneys' fees and
|
||||
expenses. The application of the United Nations Convention on
|
||||
Contracts for the International Sale of Goods is expressly excluded.
|
||||
Any law or regulation which provides that the language of a contract
|
||||
shall be construed against the drafter shall not apply to this
|
||||
License.
|
||||
|
||||
12. RESPONSIBILITY FOR CLAIMS.
|
||||
|
||||
As between Initial Developer and the Contributors, each party is
|
||||
responsible for claims and damages arising, directly or indirectly,
|
||||
out of its utilization of rights under this License and You agree to
|
||||
work with Initial Developer and Contributors to distribute such
|
||||
responsibility on an equitable basis. Nothing herein is intended or
|
||||
shall be deemed to constitute any admission of liability.
|
||||
|
||||
13. MULTIPLE-LICENSED CODE.
|
||||
|
||||
Initial Developer may designate portions of the Covered Code as
|
||||
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
||||
Developer permits you to utilize portions of the Covered Code under
|
||||
Your choice of the NPL or the alternative licenses, if any, specified
|
||||
by the Initial Developer in the file described in Exhibit A.
|
||||
|
||||
EXHIBIT A -Mozilla Public License.
|
||||
|
||||
``The contents of this file are subject to the Mozilla Public License
|
||||
Version 1.1 (the "License"); you may not use this file except in
|
||||
compliance with the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS"
|
||||
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||
License for the specific language governing rights and limitations
|
||||
under the License.
|
||||
|
||||
The Original Code is ______________________________________.
|
||||
|
||||
The Initial Developer of the Original Code is ________________________.
|
||||
Portions created by ______________________ are Copyright (C) ______
|
||||
_______________________. All Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms
|
||||
of the _____ license (the "[___] License"), in which case the
|
||||
provisions of [______] License are applicable instead of those
|
||||
above. If you wish to allow use of your version of this file only
|
||||
under the terms of the [____] License and not to allow others to use
|
||||
your version of this file under the MPL, indicate your decision by
|
||||
deleting the provisions above and replace them with the notice and
|
||||
other provisions required by the [___] License. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file
|
||||
under either the MPL or the [___] License."
|
||||
|
||||
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
||||
the notices in the Source Code files of the Original Code. You should
|
||||
use the text of this Exhibit A rather than the text found in the
|
||||
Original Code Source Code for Your Modifications.]
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
AMENDMENTS
|
||||
|
||||
The Netscape Public License Version 1.1 ("NPL") consists of the
|
||||
Mozilla Public License Version 1.1 with the following Amendments,
|
||||
including Exhibit A-Netscape Public License. Files identified with
|
||||
"Exhibit A-Netscape Public License" are governed by the Netscape
|
||||
Public License Version 1.1.
|
||||
|
||||
Additional Terms applicable to the Netscape Public License.
|
||||
I. Effect.
|
||||
These additional terms described in this Netscape Public
|
||||
License -- Amendments shall apply to the Mozilla Communicator
|
||||
client code and to all Covered Code under this License.
|
||||
|
||||
II. "Netscape's Branded Code" means Covered Code that Netscape
|
||||
distributes and/or permits others to distribute under one or more
|
||||
trademark(s) which are controlled by Netscape but which are not
|
||||
licensed for use under this License.
|
||||
|
||||
III. Netscape and logo.
|
||||
This License does not grant any rights to use the trademarks
|
||||
"Netscape", the "Netscape N and horizon" logo or the "Netscape
|
||||
lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript",
|
||||
"Smart Browsing" even if such marks are included in the Original
|
||||
Code or Modifications.
|
||||
|
||||
IV. Inability to Comply Due to Contractual Obligation.
|
||||
Prior to licensing the Original Code under this License, Netscape
|
||||
has licensed third party code for use in Netscape's Branded Code.
|
||||
To the extent that Netscape is limited contractually from making
|
||||
such third party code available under this License, Netscape may
|
||||
choose to reintegrate such code into Covered Code without being
|
||||
required to distribute such code in Source Code form, even if
|
||||
such code would otherwise be considered "Modifications" under
|
||||
this License.
|
||||
|
||||
V. Use of Modifications and Covered Code by Initial Developer.
|
||||
V.1. In General.
|
||||
The obligations of Section 3 apply to Netscape, except to
|
||||
the extent specified in this Amendment, Section V.2 and V.3.
|
||||
|
||||
V.2. Other Products.
|
||||
Netscape may include Covered Code in products other than the
|
||||
Netscape's Branded Code which are released by Netscape
|
||||
during the two (2) years following the release date of the
|
||||
Original Code, without such additional products becoming
|
||||
subject to the terms of this License, and may license such
|
||||
additional products on different terms from those contained
|
||||
in this License.
|
||||
|
||||
V.3. Alternative Licensing.
|
||||
Netscape may license the Source Code of Netscape's Branded
|
||||
Code, including Modifications incorporated therein, without
|
||||
such Netscape Branded Code becoming subject to the terms of
|
||||
this License, and may license such Netscape Branded Code on
|
||||
different terms from those contained in this License.
|
||||
|
||||
VI. Litigation.
|
||||
Notwithstanding the limitations of Section 11 above, the
|
||||
provisions regarding litigation in Section 11(a), (b) and (c) of
|
||||
the License shall apply to all disputes relating to this License.
|
||||
|
||||
EXHIBIT A-Netscape Public License.
|
||||
|
||||
"The contents of this file are subject to the Netscape Public
|
||||
License Version 1.1 (the "License"); you may not use this file
|
||||
except in compliance with the License. You may obtain a copy of
|
||||
the License at http://www.mozilla.org/NPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS
|
||||
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
implied. See the License for the specific language governing
|
||||
rights and limitations under the License.
|
||||
|
||||
The Original Code is Mozilla Communicator client code, released
|
||||
March 31, 1998.
|
||||
|
||||
The Initial Developer of the Original Code is Netscape
|
||||
Communications Corporation. Portions created by Netscape are
|
||||
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
Rights Reserved.
|
||||
|
||||
Contributor(s): ______________________________________.
|
||||
|
||||
Alternatively, the contents of this file may be used under the
|
||||
terms of the _____ license (the "[___] License"), in which case
|
||||
the provisions of [______] License are applicable instead of
|
||||
those above. If you wish to allow use of your version of this
|
||||
file only under the terms of the [____] License and not to allow
|
||||
others to use your version of this file under the NPL, indicate
|
||||
your decision by deleting the provisions above and replace them
|
||||
with the notice and other provisions required by the [___]
|
||||
License. If you do not delete the provisions above, a recipient
|
||||
may use your version of this file under either the NPL or the
|
||||
[___] License."
|
||||
2723
NodeJsProjects/SpellChecker/Dictionaries/lt_LT/lt_LT.aff
Normal file
2723
NodeJsProjects/SpellChecker/Dictionaries/lt_LT/lt_LT.aff
Normal file
File diff suppressed because it is too large
Load Diff
83259
NodeJsProjects/SpellChecker/Dictionaries/lt_LT/lt_LT.dic
Normal file
83259
NodeJsProjects/SpellChecker/Dictionaries/lt_LT/lt_LT.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,19 @@
|
||||
ispell-lt
|
||||
=========
|
||||
|
||||
You are looking at the dictionaries and affix files for spellchecking
|
||||
of Lithuanian texts.
|
||||
|
||||
The latest version of the affix tables and dictionaries can be found
|
||||
at https://launchpad.net/ispell-lt . The mailing list of the project
|
||||
is available at https://lists.akl.lt/mailman/listinfo/ispell-lt .
|
||||
Bazaar is used for version control and it is available at
|
||||
https://code.launchpad.net/~ispell-lt/ispell-lt/trunk .
|
||||
|
||||
The software is available under the provisions of a BSD-style license.
|
||||
The full text of the license is available in the COPYING file.
|
||||
|
||||
The project has been sponsored by the Information Society Development
|
||||
Committee of the Government of Republic of Lithuania.
|
||||
|
||||
Albertas Agejevas <alga@akl.lt>
|
||||
2689
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV.aff
Normal file
2689
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV.aff
Normal file
File diff suppressed because it is too large
Load Diff
156215
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV.dic
Normal file
156215
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV.dic
Normal file
File diff suppressed because it is too large
Load Diff
11900
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV_hyph.dic
Normal file
11900
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV_hyph.dic
Normal file
File diff suppressed because it is too large
Load Diff
458
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV_license.txt
Normal file
458
NodeJsProjects/SpellChecker/Dictionaries/lv_LV/lv_LV_license.txt
Normal file
@@ -0,0 +1,458 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
627
NodeJsProjects/SpellChecker/Dictionaries/nb_NO/nb_NO.aff
Normal file
627
NodeJsProjects/SpellChecker/Dictionaries/nb_NO/nb_NO.aff
Normal file
@@ -0,0 +1,627 @@
|
||||
SET UTF-8
|
||||
|
||||
# This is generated from
|
||||
# make words.nb; perl -ne 'print join "\n", split //' words.nb | \
|
||||
# sort | uniq -c | sort -rn | awk '{print $2}' | tr -d "\n"
|
||||
TRY ensrtialkogdmpuvfbjhøyåæcézSwBHAMKTFxGLNRVEODôèCPJIqUWØÅYüZçäQêöòXëÄ
|
||||
|
||||
COMPOUNDFLAG z
|
||||
|
||||
COMPOUNDMIN 4
|
||||
|
||||
|
||||
PFX a Y 1
|
||||
PFX a 0 u .
|
||||
|
||||
PFX b Y 1
|
||||
PFX b 0 for .
|
||||
|
||||
PFX c Y 1
|
||||
PFX c 0 gjen .
|
||||
|
||||
PFX d Y 1
|
||||
PFX d 0 hoved .
|
||||
|
||||
PFX e Y 1
|
||||
PFX e 0 mis .
|
||||
|
||||
PFX f Y 1
|
||||
PFX f 0 sam .
|
||||
|
||||
PFX g Y 4
|
||||
PFX g 0 in [^blmpr]
|
||||
PFX g 0 il l
|
||||
PFX g 0 im [bmp]
|
||||
PFX g 0 ir r
|
||||
|
||||
PFX h Y 1
|
||||
PFX h 0 etter .
|
||||
|
||||
PFX i Y 1
|
||||
PFX i 0 til .
|
||||
|
||||
PFX j Y 1
|
||||
PFX j 0 over .
|
||||
|
||||
PFX k Y 1
|
||||
PFX k 0 under .
|
||||
|
||||
PFX l Y 1
|
||||
PFX l 0 på .
|
||||
|
||||
PFX m Y 1
|
||||
PFX m 0 av .
|
||||
|
||||
PFX n Y 1
|
||||
PFX n 0 inn .
|
||||
|
||||
PFX o Y 1
|
||||
PFX o 0 ut .
|
||||
|
||||
PFX p Y 1
|
||||
PFX p 0 opp .
|
||||
|
||||
PFX q Y 1
|
||||
PFX q 0 ned .
|
||||
|
||||
PFX r Y 1
|
||||
PFX r 0 om .
|
||||
|
||||
PFX s Y 1
|
||||
PFX s 0 sammen .
|
||||
|
||||
SFX t Y 8
|
||||
SFX t e ing e
|
||||
SFX t e ingen e
|
||||
SFX t e ingens e
|
||||
SFX t e inga e
|
||||
SFX t 0 ing [aiouyøå]
|
||||
SFX t 0 ingen [aiouyøå]
|
||||
SFX t 0 ingens [aiouyøå]
|
||||
SFX t 0 inga [aiouyøå]
|
||||
|
||||
SFX u N 6
|
||||
SFX u 0 lig [^lm]
|
||||
SFX u 0 lige [^lm]
|
||||
SFX u 0 ig l
|
||||
SFX u 0 ige l
|
||||
SFX u 0 melig m
|
||||
SFX u 0 melige m
|
||||
|
||||
SFX v Y 6
|
||||
SFX v 0 lse e
|
||||
SFX v 0 lsen e
|
||||
SFX v 0 lsens e
|
||||
SFX v 0 else [ioå]
|
||||
SFX v 0 elsen [ioå]
|
||||
SFX v 0 elsens [ioå]
|
||||
|
||||
SFX w Y 3
|
||||
SFX w 0 het .
|
||||
SFX w 0 heten .
|
||||
SFX w 0 hetens .
|
||||
|
||||
SFX x Y 2
|
||||
SFX x 0 skap [^e]
|
||||
SFX x e skap e
|
||||
|
||||
SFX y Y 12
|
||||
SFX y 0 itet [aeiouyø][dlmnrsv]
|
||||
SFX y 0 iteten [aeiouyø][dlmnrsv]
|
||||
SFX y 0 itetens [aeiouyø][dlmnrsv]
|
||||
SFX y ell alitet ell
|
||||
SFX y ell aliteten ell
|
||||
SFX y ell alitetens ell
|
||||
SFX y ær aritet ær
|
||||
SFX y ær ariteten ær
|
||||
SFX y ær aritetens ær
|
||||
SFX y e ning e
|
||||
SFX y e ningen e
|
||||
SFX y e ningens e
|
||||
|
||||
SFX A Y 24
|
||||
SFX A 0 n e
|
||||
SFX A 0 ns e
|
||||
SFX A é een é
|
||||
SFX A é eens é
|
||||
SFX A 0 en [^eém]
|
||||
SFX A 0 ens [^eém]
|
||||
SFX A 0 men [aø]m
|
||||
SFX A 0 mens [aø]m
|
||||
SFX A 0 men [^k][lr]em
|
||||
SFX A 0 mens [^k][lr]em
|
||||
SFX A 0 en krem
|
||||
SFX A 0 ens krem
|
||||
SFX A 0 en [^lr]em
|
||||
SFX A 0 ens [^lr]em
|
||||
SFX A 0 en [^aeouø]m
|
||||
SFX A 0 ens [^aeouø]m
|
||||
SFX A 0 men [bdglv]om
|
||||
SFX A 0 mens [bdglv]om
|
||||
SFX A 0 en [^bdglv]om
|
||||
SFX A 0 ens [^bdglv]om
|
||||
SFX A 0 men [skl]um
|
||||
SFX A 0 mens [skl]um
|
||||
SFX A 0 en [^skl]um
|
||||
SFX A 0 ens [^skl]um
|
||||
|
||||
SFX B Y 36
|
||||
SFX B 0 t e
|
||||
SFX B 0 ts e
|
||||
SFX B é eet é
|
||||
SFX B é eets é
|
||||
SFX B er ret [^drt][dt]er
|
||||
SFX B er rets [^drt][dt]er
|
||||
SFX B el let [fgkpsv]el
|
||||
SFX B el lets [fgkpsv]el
|
||||
SFX B del let ddel
|
||||
SFX B del lets ddel
|
||||
SFX B tel let ttel
|
||||
SFX B tel lets ttel
|
||||
SFX B 0 et [^eém]
|
||||
SFX B 0 ets [^eém]
|
||||
SFX B 0 et [^aeou]m
|
||||
SFX B 0 ets [^aeou]m
|
||||
SFX B 0 met [^e]am
|
||||
SFX B 0 mets [^e]am
|
||||
SFX B 0 et eam
|
||||
SFX B 0 ets eam
|
||||
SFX B 0 met [jv]em
|
||||
SFX B 0 mets [jv]em
|
||||
SFX B 0 et [^jlv]em
|
||||
SFX B 0 ets [^jlv]em
|
||||
SFX B 0 met dlem
|
||||
SFX B 0 mets dlem
|
||||
SFX B 0 et [^d]lem
|
||||
SFX B 0 ets [^d]lem
|
||||
SFX B 0 met [rk]om
|
||||
SFX B 0 mets [rk]om
|
||||
SFX B 0 et [^rk]om
|
||||
SFX B 0 ets [^rk]om
|
||||
SFX B 0 et [^ei]um
|
||||
SFX B 0 ets [^ei]um
|
||||
SFX B um et [ei]um
|
||||
SFX B um ets [ei]um
|
||||
|
||||
SFX C Y 33
|
||||
SFX C e a e
|
||||
SFX C é ea é
|
||||
SFX C 0 a [^eélmrt]
|
||||
SFX C 0 a [^e]t
|
||||
SFX C et a et
|
||||
SFX C 0 a [^e][lr]
|
||||
SFX C el la [^dfkmnpstj]el
|
||||
SFX C 0 a jel
|
||||
SFX C del la ddel
|
||||
SFX C 0 a [^d]del
|
||||
SFX C fel la ffel
|
||||
SFX C kel la kkel
|
||||
SFX C el la [^k]kel
|
||||
SFX C mel la mmel
|
||||
SFX C 0 a [^m]mel
|
||||
SFX C 0 a nel
|
||||
SFX C pel la ppel
|
||||
SFX C el la [^p]pel
|
||||
SFX C sel la ssel
|
||||
SFX C el la [^s]sel
|
||||
SFX C tel la ttel
|
||||
SFX C el la [^t]tel
|
||||
SFX C er ra [^fm]er
|
||||
SFX C fer ra fer
|
||||
SFX C mer ra mer
|
||||
SFX C 0 a [^aeou]m
|
||||
SFX C 0 ma am
|
||||
SFX C 0 ma jem
|
||||
SFX C 0 a [^j]em
|
||||
SFX C 0 ma [rv]om
|
||||
SFX C 0 a [^rv]om
|
||||
SFX C 0 a [^eir]um
|
||||
SFX C um a [eir]um
|
||||
|
||||
SFX D Y 30
|
||||
SFX D e as e
|
||||
SFX D é eas é
|
||||
SFX D 0 as [^eélmr]
|
||||
SFX D 0 as [^e][lr]
|
||||
SFX D el las [^dfkmnpstj]el
|
||||
SFX D 0 as jel
|
||||
SFX D del las ddel
|
||||
SFX D 0 as [^d]del
|
||||
SFX D fel las ffel
|
||||
SFX D kel las kkel
|
||||
SFX D el las [^k]kel
|
||||
SFX D mel las mmel
|
||||
SFX D 0 as [^m]mel
|
||||
SFX D 0 as nel
|
||||
SFX D pel las ppel
|
||||
SFX D el las [^p]pel
|
||||
SFX D sel las ssel
|
||||
SFX D el las [^s]sel
|
||||
SFX D tel las ttel
|
||||
SFX D el las [^t]tel
|
||||
SFX D er ras [^fm]er
|
||||
SFX D fer ras fer
|
||||
SFX D mer ras mer
|
||||
SFX D 0 as [^eou]m
|
||||
SFX D 0 mas jem
|
||||
SFX D 0 as [^j]em
|
||||
SFX D 0 mas [rv]om
|
||||
SFX D 0 as [^rv]om
|
||||
SFX D 0 as [^ei]um
|
||||
SFX D um as [ei]um
|
||||
|
||||
SFX E Y 36
|
||||
SFX E 0 r e
|
||||
SFX E é eer é
|
||||
SFX E 0 er [^eélmr]
|
||||
SFX E 0 er [^e][lr]
|
||||
SFX E el ler [^dfkmnpstj]el
|
||||
SFX E 0 er jel
|
||||
SFX E del ler ddel
|
||||
SFX E 0 er [^d]del
|
||||
SFX E fel ler ffel
|
||||
SFX E kel ler kkel
|
||||
SFX E el ler [^k]kel
|
||||
SFX E mel ler mmel
|
||||
SFX E 0 er [^m]mel
|
||||
SFX E 0 er nel
|
||||
SFX E pel ler ppel
|
||||
SFX E el ler [^p]pel
|
||||
SFX E sel ler ssel
|
||||
SFX E el ler [^s]sel
|
||||
SFX E tel ler ttel
|
||||
SFX E el ler [^t]tel
|
||||
SFX E er re [^fmk]er
|
||||
SFX E fer re fer
|
||||
SFX E mer re mer
|
||||
SFX E ker re ker
|
||||
SFX E 0 er [^aeouø]m
|
||||
SFX E 0 mer dlem
|
||||
SFX E 0 er blem
|
||||
SFX E 0 er [^lr]em
|
||||
SFX E 0 mer [^kbd][lr]em
|
||||
SFX E 0 er krem
|
||||
SFX E 0 mer [aø]m
|
||||
SFX E 0 mer [bdgl]om
|
||||
SFX E 0 er [^bdgl]om
|
||||
SFX E 0 er [^eiks]um
|
||||
SFX E 0 mer [ks]um
|
||||
SFX E um er [ei]um
|
||||
|
||||
SFX F Y 36
|
||||
SFX F 0 rs e
|
||||
SFX F é eers é
|
||||
SFX F 0 ers [^eélmr]
|
||||
SFX F 0 ers [^e][lr]
|
||||
SFX F el lers [^dfkmnpstj]el
|
||||
SFX F 0 ers jel
|
||||
SFX F del lers ddel
|
||||
SFX F 0 ers [^d]del
|
||||
SFX F fel lers ffel
|
||||
SFX F kel lers kkel
|
||||
SFX F el lers [^k]kel
|
||||
SFX F mel lers mmel
|
||||
SFX F 0 ers [^m]mel
|
||||
SFX F 0 ers nel
|
||||
SFX F pel lers ppel
|
||||
SFX F el lers [^p]pel
|
||||
SFX F sel lers ssel
|
||||
SFX F el lers [^s]sel
|
||||
SFX F tel lers ttel
|
||||
SFX F el lers [^t]tel
|
||||
SFX F er res [^fmk]er
|
||||
SFX F fer res fer
|
||||
SFX F mer res mer
|
||||
SFX F ker res ker
|
||||
SFX F 0 ers [^aeouø]m
|
||||
SFX F 0 mers dlem
|
||||
SFX F 0 ers blem
|
||||
SFX F 0 ers [^lr]em
|
||||
SFX F 0 mers [^kbd][lr]em
|
||||
SFX F 0 ers krem
|
||||
SFX F 0 mers [aø]m
|
||||
SFX F 0 mers [bdgl]om
|
||||
SFX F 0 ers [^bdgl]om
|
||||
SFX F 0 ers [^eiks]um
|
||||
SFX F 0 mers [ks]um
|
||||
SFX F um ers [ei]um
|
||||
|
||||
SFX G Y 36
|
||||
SFX G 0 ne e
|
||||
SFX G é eene é
|
||||
SFX G 0 ene [^eélmr]
|
||||
SFX G 0 ene [^e][lr]
|
||||
SFX G el lene [^dfkmnpstj]el
|
||||
SFX G 0 ene jel
|
||||
SFX G del lene ddel
|
||||
SFX G 0 ene [^d]del
|
||||
SFX G fel lene ffel
|
||||
SFX G kel lene kkel
|
||||
SFX G el lene [^k]kel
|
||||
SFX G mel lene mmel
|
||||
SFX G 0 ene [^m]mel
|
||||
SFX G 0 ene nel
|
||||
SFX G pel lene ppel
|
||||
SFX G el lene [^p]pel
|
||||
SFX G sel lene ssel
|
||||
SFX G el lene [^s]sel
|
||||
SFX G tel lene ttel
|
||||
SFX G el lene [^t]tel
|
||||
SFX G er rene [^fm]er
|
||||
SFX G fer rene fer
|
||||
SFX G mer rene mer
|
||||
SFX G 0 ene [^aeouø]m
|
||||
SFX G 0 mene [aø]m
|
||||
SFX G 0 mene jem
|
||||
SFX G 0 mene dlem
|
||||
SFX G 0 ene blem
|
||||
SFX G 0 mene [^kbd][lr]em
|
||||
SFX G 0 ene krem
|
||||
SFX G 0 ene [^jlr]em
|
||||
SFX G 0 mene [bdglr]om
|
||||
SFX G 0 ene [^bdglr]om
|
||||
SFX G 0 ene [^eiks]um
|
||||
SFX G 0 mene [ks]um
|
||||
SFX G um ene [ei]um
|
||||
|
||||
SFX H Y 36
|
||||
SFX H 0 nes e
|
||||
SFX H é eenes é
|
||||
SFX H 0 enes [^eélmr]
|
||||
SFX H 0 enes [^e][lr]
|
||||
SFX H el lenes [^dfkmnpstj]el
|
||||
SFX H 0 enes jel
|
||||
SFX H del lenes ddel
|
||||
SFX H 0 enes [^d]del
|
||||
SFX H fel lenes ffel
|
||||
SFX H kel lenes kkel
|
||||
SFX H el lenes [^k]kel
|
||||
SFX H mel lenes mmel
|
||||
SFX H 0 enes [^m]mel
|
||||
SFX H 0 enes nel
|
||||
SFX H pel lenes ppel
|
||||
SFX H el lenes [^p]pel
|
||||
SFX H sel lenes ssel
|
||||
SFX H el lenes [^s]sel
|
||||
SFX H tel lenes ttel
|
||||
SFX H el lenes [^t]tel
|
||||
SFX H er renes [^fm]er
|
||||
SFX H fer renes fer
|
||||
SFX H mer renes mer
|
||||
SFX H 0 enes [^aeouø]m
|
||||
SFX H 0 menes [aø]m
|
||||
SFX H 0 menes jem
|
||||
SFX H 0 menes dlem
|
||||
SFX H 0 enes blem
|
||||
SFX H 0 menes [^kbd][lr]em
|
||||
SFX H 0 enes krem
|
||||
SFX H 0 enes [^jlr]em
|
||||
SFX H 0 menes [bdglr]om
|
||||
SFX H 0 enes [^bdglr]om
|
||||
SFX H 0 enes [^eiks]um
|
||||
SFX H 0 menes [ks]um
|
||||
SFX H um enes [ei]um
|
||||
|
||||
SFX I Y 16
|
||||
SFX I 0 e er
|
||||
SFX I 0 es er
|
||||
SFX I 0 ne er
|
||||
SFX I 0 nes er
|
||||
SFX I 0 ne [æø]r
|
||||
SFX I 0 nes [æø]r
|
||||
SFX I en nene en
|
||||
SFX I en nenes en
|
||||
SFX I e ne ye
|
||||
SFX I e nene ye
|
||||
SFX I ive ev ive
|
||||
SFX I ive evet ive
|
||||
SFX I ike ek ike
|
||||
SFX I ike eket ike
|
||||
SFX I 0 et um
|
||||
SFX I 0 ets um
|
||||
|
||||
SFX J Y 1
|
||||
SFX J 0 s [^s]
|
||||
|
||||
SFX K Y 5
|
||||
SFX K 0 es [^er]
|
||||
SFX K e ær e
|
||||
SFX K e ærne e
|
||||
SFX K er sk er
|
||||
SFX K er ske er
|
||||
|
||||
SFX L Y 7
|
||||
SFX L 0 r [aiouyøå]
|
||||
SFX L 0 er er
|
||||
SFX L 0 ers er
|
||||
SFX L 0 ene er
|
||||
SFX L 0 enes er
|
||||
SFX L 0 et e
|
||||
SFX L 0 ets e
|
||||
|
||||
SFX M Y 30
|
||||
SFX M 0 t e
|
||||
SFX M 0 de e
|
||||
SFX M t de et
|
||||
SFX M ok øker ok
|
||||
SFX M ok økene ok
|
||||
SFX M ok økenes ok
|
||||
SFX M or ødre or
|
||||
SFX M or ødrene or
|
||||
SFX M or ødrenes or
|
||||
SFX M ar edre ar
|
||||
SFX M ar edrene ar
|
||||
SFX M ar edrenes ar
|
||||
SFX M aft efter aft
|
||||
SFX M aft eftene aft
|
||||
SFX M aft eftenes aft
|
||||
SFX M ot øter [bn]ot
|
||||
SFX M ot øtene [bn]ot
|
||||
SFX M ot øtter [fr]ot
|
||||
SFX M ot øttene [fr]ot
|
||||
SFX M ann enn ann
|
||||
SFX M ann enns ann
|
||||
SFX M ann ennene ann
|
||||
SFX M ann ennenes ann
|
||||
SFX M ang enger ang
|
||||
SFX M ang engene ang
|
||||
SFX M ang engenes ang
|
||||
SFX M er ene er
|
||||
SFX M er enes er
|
||||
SFX M å od å
|
||||
SFX M a ok ta
|
||||
|
||||
SFX N Y 9
|
||||
SFX N 0 en e
|
||||
SFX N 0 ens e
|
||||
SFX N 0 er e
|
||||
SFX N 0 ene e
|
||||
SFX N er rer [^m]er
|
||||
SFX N er rers [^m]er
|
||||
SFX N mer rer mer
|
||||
SFX N mer rers mer
|
||||
SFX N å o å
|
||||
|
||||
SFX O Y 9
|
||||
SFX O e te [^t]e
|
||||
SFX O e t [^t]e
|
||||
SFX O 0 a atter
|
||||
SFX O atter øtre atter
|
||||
SFX O atter øtrer atter
|
||||
SFX O atter øtrene atter
|
||||
SFX O a og a
|
||||
SFX O 0 dd a
|
||||
SFX O 0 tt a
|
||||
|
||||
SFX P Y 2
|
||||
SFX P 0 dde [aeiouyøå]
|
||||
SFX P 0 dd [aeiouyøå]
|
||||
|
||||
SFX Q Y 2
|
||||
SFX Q e de e
|
||||
SFX Q e d e
|
||||
|
||||
SFX R Y 4
|
||||
SFX R e 0 [^m]e
|
||||
SFX R e 0 [^m]me
|
||||
SFX R me 0 mme
|
||||
SFX R ere ér ere
|
||||
|
||||
SFX S Y 2
|
||||
SFX S 0 nde e
|
||||
SFX S 0 ende [aiouyæøå]
|
||||
|
||||
SFX T Y 3
|
||||
SFX T 0 t e
|
||||
SFX T 0 te e
|
||||
SFX T 0 e et
|
||||
|
||||
SFX U Y 11
|
||||
SFX U t n et
|
||||
SFX U et ne [^m]et
|
||||
SFX U met ne met
|
||||
SFX U ele al ele
|
||||
SFX U ele ålet ele
|
||||
SFX U øre orde øre
|
||||
SFX U øre ort øre
|
||||
SFX U egge agt egge
|
||||
SFX U egge agte egge
|
||||
SFX U um a um
|
||||
SFX U gi av gi
|
||||
|
||||
SFX V Y 14
|
||||
SFX V 0 e [^lmneo]
|
||||
SFX V 0 e [^e][ln]
|
||||
SFX V el le [^m]el
|
||||
SFX V fen ne fen
|
||||
SFX V mel le mel
|
||||
SFX V en ne [^fkls]en
|
||||
SFX V sen ne ssen
|
||||
SFX V en ne [^s]sen
|
||||
SFX V ken ne kken
|
||||
SFX V en ne [^k]ken
|
||||
SFX V len ne llen
|
||||
SFX V en ne [^l]len
|
||||
SFX V 0 me [aeiouø]m
|
||||
SFX V 0 e [^aeiouø]m
|
||||
|
||||
SFX W Y 13
|
||||
SFX W 0 t [^fklntiaøå]
|
||||
SFX W 0 t [^f]f
|
||||
SFX W f t ff
|
||||
SFX W 0 t [^k]k
|
||||
SFX W k t kk
|
||||
SFX W 0 t [^l]l
|
||||
SFX W 0 t ull
|
||||
SFX W l t [^u]ll
|
||||
SFX W 0 t [^n]n
|
||||
SFX W n t nn
|
||||
SFX W 0 t ei
|
||||
SFX W 0 tt [^e]i
|
||||
SFX W 0 tt [aøå]
|
||||
|
||||
SFX X Y 22
|
||||
SFX X 0 ere [^e][^me]
|
||||
SFX X 0 ere [eo][^lrnem]
|
||||
SFX X el lere el
|
||||
SFX X er rere er
|
||||
SFX X en nere en
|
||||
SFX X 0 mere [aou]m
|
||||
SFX X 0 est [^e][^mge]
|
||||
SFX X 0 este [^e][^mge]
|
||||
SFX X 0 st [^e][oi][mge]
|
||||
SFX X 0 ste [^e][oi][mge]
|
||||
SFX X 0 est e[oi][mge]
|
||||
SFX X 0 este e[oi][mge]
|
||||
SFX X 0 est e[^lrne]
|
||||
SFX X 0 este e[^lrne]
|
||||
SFX X el lest el
|
||||
SFX X el leste el
|
||||
SFX X er rest er
|
||||
SFX X er reste er
|
||||
SFX X en nest en
|
||||
SFX X en neste en
|
||||
SFX X 0 mest [au]m
|
||||
SFX X 0 meste [au]m
|
||||
|
||||
SFX Y Y 4
|
||||
SFX Y e inger e
|
||||
SFX Y e ingene e
|
||||
SFX Y 0 inger [aiouyøå]
|
||||
SFX Y 0 ingene [aiouyøå]
|
||||
|
||||
SFX Z N 5
|
||||
SFX Z 0 elig [^e]
|
||||
SFX Z 0 elige [^e]
|
||||
SFX Z e bar e
|
||||
SFX Z e bart e
|
||||
SFX Z e bare e
|
||||
|
||||
# SFX \[ N 2
|
||||
# SFX \[ 0 messig .
|
||||
# SFX \[ 0 messige .
|
||||
|
||||
# SFX \] N 2
|
||||
# SFX \] 0 smessig .
|
||||
# SFX \] 0 smessige .
|
||||
|
||||
# SFX \^ N 2
|
||||
# SFX \^ 0 aktig .
|
||||
# SFX \^ 0 aktige .
|
||||
|
||||
# SFX ~\\ N 1
|
||||
# SFX ~\\ 0 s [^s]
|
||||
|
||||
# SFX ~\_ N 7
|
||||
# SFX ~\_ e ings e
|
||||
# SFX ~\_ 0 e [dgknprstuv]
|
||||
# SFX ~\_ um e um
|
||||
# SFX ~\_ 0 e [lr]m
|
||||
# SFX ~\_ el le gel
|
||||
# SFX ~\_ 0 e [^g]el
|
||||
# SFX ~\_ 0 e [^e]l
|
||||
|
||||
# SFX ~\` N 2
|
||||
# SFX ~\` e nings e
|
||||
# SFX ~\` zyzyzy 0 zyzyzy
|
||||
|
||||
322044
NodeJsProjects/SpellChecker/Dictionaries/nb_NO/nb_NO.dic
Normal file
322044
NodeJsProjects/SpellChecker/Dictionaries/nb_NO/nb_NO.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,340 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) year <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
1418
NodeJsProjects/SpellChecker/Dictionaries/nl_NL/nl_NL.aff
Normal file
1418
NodeJsProjects/SpellChecker/Dictionaries/nl_NL/nl_NL.aff
Normal file
File diff suppressed because it is too large
Load Diff
142520
NodeJsProjects/SpellChecker/Dictionaries/nl_NL/nl_NL.dic
Normal file
142520
NodeJsProjects/SpellChecker/Dictionaries/nl_NL/nl_NL.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,92 @@
|
||||
[NEDERLANDS]
|
||||
U wordt vriendelijk verzocht om dit bestand ("README_nl_NL.txt")
|
||||
te lezen en mee te leveren bij iedere kopie van dit taalhulpbestand.
|
||||
|
||||
1. Naam: Nederlandstalige woordenlijst voor spellingcontrole - OpenTaal
|
||||
2. Versie woordenlijst: 2.00G; versie spellingcontrole: 2.00G.
|
||||
3. Vereisten: Hunspell 1.2.8 en hoger
|
||||
4. Keurmerk Spelling Nederlandse Taalunie: De lijst met basiswoorden van
|
||||
OpenTaal draagt het keurmerk van de Nederlandse Taalunie. Voor meer
|
||||
informatie zie: http://www.taalunieversum.org/keurmerk
|
||||
5. Auteursrechten: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a.,
|
||||
© 1996 Nederlandstalige Tex Gebruikersgroep
|
||||
6. Licenties: OpenTaal heeft als doel om vrij beschikbare Nederlandstalige
|
||||
taalhulpbestanden te ontwikkelen en te verspreiden. Om breed (her)gebruik
|
||||
mogelijk te maken zijn de taalhulpbestanden gratis beschikbaar onder de twee
|
||||
onderstaande, liberale licenties naar keuze van de gebruiker. U wordt ten
|
||||
zeerste aangeraden om voorafgaand aan het gebruik kennis te nemen van de
|
||||
toepasselijke licentie.
|
||||
A. BSD (herziene versie):
|
||||
- Volledige licentie: http://creativecommons.org/licenses/BSD/legalcode
|
||||
- Samenvatting: http://creativecommons.org/licenses/BSD/deed.nl
|
||||
B. Creative Commons, Naamsvermelding 3.0 (unported)
|
||||
- Volledige licentie: http://creativecommons.org/licenses/by/3.0/legalcode
|
||||
- Samenvatting: http://creativecommons.org/licenses/by/3.0/deed.nl
|
||||
7. Steun OpenTaal: OpenTaal is een vrijwilligersproject zonder winstoogmerk.
|
||||
Door uw (kleine) financiële steun kan OpenTaal meer activiteiten ontplooien
|
||||
en het project professionaliseren. Uw donatie is van harte welkom op
|
||||
rekeningnummer 15.62.32.782 t.n.v. Stichting OpenTaal. Uw giften zijn
|
||||
aftrekbaar van de belasting. Stichting OpenTaal is namelijk door de
|
||||
Belastingdienst erkend als ANBI, oftewel "Algemeen Nut Beogende Instelling".
|
||||
Zie: http://belastingdienst.nl/anbi/
|
||||
8. Meedoen: Iedereen is welkom om mee te doen. Meld fouten, discussieer mee op
|
||||
de mailinglijst of draai Harvester. Door bij te dragen aan het project stemt
|
||||
u ermee in dat uw bijdrage aan het desbetreffende taalhulpbestand beschikbaar
|
||||
komt onder vrije en/of opensource licenties. Indien u dat wenst, dan kan uw
|
||||
naam op de website genoemd worden. We ontvangen uw schriftelijk verzoek
|
||||
daarvoor graag.
|
||||
9. Rechten van derden: OpenTaal respecteert de rechten van derden en
|
||||
wil haar gegevens vrij beschikbaar houden. Voor bijdragen aan het project mag
|
||||
u daarom niet zonder toestemming gebruikmaken van beschermde naslagwerken,
|
||||
zoals woordenboeken. Wel is het toegestaan om gebruik te maken van de
|
||||
materialen van de Nederlandse Taalunie, zoals de leidraad en de woordenlijst.
|
||||
Indien u van mening bent dat OpenTaal inbreuk maakt op uw rechten, dan
|
||||
verzoeken we u hierover zo spoedig mogelijk schriftelijk contact met ons op
|
||||
te nemen.
|
||||
10.Contact: Stichting OpenTaal, http://www.opentaal.org, bestuur@opentaal.org
|
||||
_________________________________________________________________________________
|
||||
[ENGLISH]
|
||||
You are kindly requested to read this file "README_nl_NL.txt"
|
||||
and to keep a copy of it with every copy you make of this language file.
|
||||
|
||||
1. Name: Dutch word list for spell checking - OpenTaal
|
||||
2. Version of words list: 2.00G; version spell checking: 2.00G
|
||||
3. Requirements: Hunspell 1.2.8 and higher
|
||||
4. Spelling Seal of Dutch Language Union: The OpenTaal list of lemmas has
|
||||
received the Spelling Seal of Approval from the Dutch Language Union, the
|
||||
formal Dutch language institute. For more information please see:
|
||||
http://www.taalunieversum.org/keurmerk/
|
||||
5. Copyrights: © 2006-2010 OpenTaal, © 2001-2005 Simon Brouwer e.a.,
|
||||
© 1996 Nederlandstalige Tex Gebruikersgroep
|
||||
6. Licenses: OpenTaal aims to create and publish free Dutch language files. To
|
||||
enable the broadest (re)use the language files are freely available under the
|
||||
below, liberal licenses at the discretion of the user. We strongly recommend
|
||||
to read the applicable license before usage.
|
||||
A. BSD (revised version):
|
||||
- Full license text: http://creativecommons.org/licenses/BSD/legalcode
|
||||
- Summary: http://creativecommons.org/licenses/BSD/deed.en
|
||||
B. Creative Commons, Attribution 3.0 (unported)
|
||||
- Full license text: http://creativecommons.org/licenses/by/3.0/legalcode
|
||||
- Summary: http://creativecommons.org/licenses/by/3.0/deed.en
|
||||
7. Support OpenTaal: OpenTaal is a non-profit volunteer project. With your
|
||||
(small) financial support OpenTaal will further expand its activities and
|
||||
enhance its professionalism. Your donation is welcome at
|
||||
account number: 15.62.32.782, BIC: RABONL2U, IBAN: NL88RABO0156232782 of
|
||||
Stichting OpenTaal / OpenTaal Foundation. In the Netherlands your donations
|
||||
are tax deductible. OpenTaal Foundation has been designated by the Dutch Tax
|
||||
Administration as an Institution for General Benefit (algemeen nut beogende
|
||||
instelling or ANBI). Please see: http://belastingdienst.nl/anbi/
|
||||
8. Participate: Everyone is welcome to participate. Please give feedback,
|
||||
discuss on the mailing list or run Harvester. By contributing to the project
|
||||
you agree that your contribution is available under free or/open source
|
||||
licenses. In case you wish, your name will be mentioned on the website. Your
|
||||
are invited to send us your written request.
|
||||
9. Rights of third parties: OpenTaal respects the rights of third parties and
|
||||
aims to keep its data freely available. Therefore you may no use protected
|
||||
sources of third parties, i.e. dictionaries, without their permission when
|
||||
you contribute to the project. It is permitted to use the materials of the
|
||||
Dutch Language Union, i.e. their spelling instruction and word list. In case
|
||||
you believe OpenTaal is violating your rights, we ask you to send us a
|
||||
written notice as soon as possible.
|
||||
10.Contact: OpenTaal Foundation, http://www.opentaal.org, bestuur@opentaal.org
|
||||
|
||||
511
NodeJsProjects/SpellChecker/Dictionaries/nn_NO/nn_NO.aff
Normal file
511
NodeJsProjects/SpellChecker/Dictionaries/nn_NO/nn_NO.aff
Normal file
@@ -0,0 +1,511 @@
|
||||
SET UTF-8
|
||||
|
||||
# This is generated from
|
||||
# make words.nn; perl -ne 'print join "\n", split //' words.nn | \
|
||||
# sort | uniq -c | sort -rn | awk '{print $2}' | tr -d "\n";echo
|
||||
TRY earnstilkogdmupvfbjøyhåæcSzBéwêHATMKFGLNREVxôODòPèCJIUWqØÅóYQçZüäXÄþë
|
||||
|
||||
COMPOUNDFLAG z
|
||||
|
||||
COMPOUNDMIN 4
|
||||
|
||||
|
||||
PFX a Y 1
|
||||
PFX a 0 u .
|
||||
|
||||
PFX b Y 1
|
||||
PFX b 0 for .
|
||||
|
||||
PFX c Y 1
|
||||
PFX c 0 gjen .
|
||||
|
||||
PFX d Y 1
|
||||
PFX d 0 hovud .
|
||||
|
||||
PFX e Y 1
|
||||
PFX e 0 mis .
|
||||
|
||||
PFX f Y 1
|
||||
PFX f 0 sam .
|
||||
|
||||
PFX g Y 4
|
||||
PFX g 0 in [^blmpr]
|
||||
PFX g 0 il l
|
||||
PFX g 0 im [bmp]
|
||||
PFX g 0 ir r
|
||||
|
||||
PFX h Y 1
|
||||
PFX h 0 etter .
|
||||
|
||||
PFX i Y 1
|
||||
PFX i 0 til .
|
||||
|
||||
PFX j Y 1
|
||||
PFX j 0 over .
|
||||
|
||||
PFX k Y 1
|
||||
PFX k 0 under .
|
||||
|
||||
PFX l Y 1
|
||||
PFX l 0 på .
|
||||
|
||||
PFX m Y 1
|
||||
PFX m 0 av .
|
||||
|
||||
PFX n Y 1
|
||||
PFX n 0 inn .
|
||||
|
||||
PFX o Y 1
|
||||
PFX o 0 ut .
|
||||
|
||||
PFX p Y 1
|
||||
PFX p 0 opp .
|
||||
|
||||
PFX q Y 1
|
||||
PFX q 0 ned .
|
||||
|
||||
PFX r Y 1
|
||||
PFX r 0 om .
|
||||
|
||||
PFX s Y 1
|
||||
PFX s 0 saman .
|
||||
|
||||
SFX t Y 4
|
||||
SFX t e ing e
|
||||
SFX t e inga e
|
||||
SFX t 0 ing [aiouyøå]
|
||||
SFX t 0 inga [aiouyøå]
|
||||
|
||||
SFX u N 6
|
||||
SFX u 0 leg [^lm]
|
||||
SFX u 0 lege [^lm]
|
||||
SFX u 0 eg l
|
||||
SFX u 0 ege l
|
||||
SFX u 0 meleg m
|
||||
SFX u 0 melege m
|
||||
|
||||
SFX x Y 2
|
||||
SFX x 0 skap [^e]
|
||||
SFX x e skap e
|
||||
|
||||
SFX y Y 8
|
||||
SFX y 0 itet [aeiouyø][dlmnrsv]
|
||||
SFX y 0 iteten [aeiouyø][dlmnrsv]
|
||||
SFX y ell alitet ell
|
||||
SFX y ell aliteten ell
|
||||
SFX y ær aritet ær
|
||||
SFX y ær ariteten ær
|
||||
SFX y e ning e
|
||||
SFX y e ningen e
|
||||
|
||||
SFX A Y 13
|
||||
SFX A 0 n e
|
||||
SFX A é een é
|
||||
SFX A 0 en [^eém]
|
||||
SFX A 0 men [^e][dk]am
|
||||
SFX A 0 en [e][dk]am
|
||||
SFX A 0 men [^k][lr]em
|
||||
SFX A 0 en krem
|
||||
SFX A 0 en [^r]em
|
||||
SFX A 0 en [^aeouø]m
|
||||
SFX A 0 men [bdgv]om
|
||||
SFX A 0 en [^bglv]om
|
||||
SFX A 0 men [skl]um
|
||||
SFX A 0 en [^skl]um
|
||||
|
||||
SFX B Y 17
|
||||
SFX B 0 t e
|
||||
SFX B é eet é
|
||||
SFX B er ret [^drt][dt]er
|
||||
SFX B el let [fgksv]el
|
||||
SFX B el let mpel
|
||||
SFX B tel let ttel
|
||||
SFX B 0 et [^eém]
|
||||
SFX B 0 et [^aeou]m
|
||||
SFX B 0 met [^e]am
|
||||
SFX B 0 et eam
|
||||
SFX B 0 met [jv]em
|
||||
SFX B 0 et [^jlv]em
|
||||
SFX B 0 et lem
|
||||
SFX B 0 met [rk]om
|
||||
SFX B 0 et [^rk]om
|
||||
SFX B 0 et [^ei]um
|
||||
SFX B um et [ei]um
|
||||
|
||||
SFX C Y 32
|
||||
SFX C e a e
|
||||
SFX C é ea é
|
||||
SFX C 0 a [^eélmrt]
|
||||
SFX C 0 a [^e]t
|
||||
SFX C et a et
|
||||
SFX C 0 a [^e][lr]
|
||||
SFX C el la [^dfkmnpstj]el
|
||||
SFX C 0 a jel
|
||||
SFX C del la ddel
|
||||
SFX C 0 a [^d]del
|
||||
SFX C fel la ffel
|
||||
SFX C kel la kkel
|
||||
SFX C el la [^k]kel
|
||||
SFX C mel la mmel
|
||||
SFX C 0 a [^m]mel
|
||||
SFX C 0 a nel
|
||||
SFX C pel la ppel
|
||||
SFX C 0 a [^p]pel
|
||||
SFX C sel la ssel
|
||||
SFX C el la [^s]sel
|
||||
SFX C tel la ttel
|
||||
SFX C el la [^t]tel
|
||||
SFX C er ra [^fjm]er
|
||||
SFX C 0 a [fjm]er
|
||||
SFX C 0 a [^aeou]m
|
||||
SFX C 0 ma am
|
||||
SFX C 0 ma jem
|
||||
SFX C 0 a [^j]em
|
||||
SFX C 0 ma [rv]om
|
||||
SFX C 0 a [^rv]om
|
||||
SFX C 0 a [^eir]um
|
||||
SFX C um a [eir]um
|
||||
|
||||
SFX D Y 35
|
||||
SFX D e ar e
|
||||
SFX D é ear é
|
||||
SFX D 0 ar [^eélmr]
|
||||
SFX D 0 ar [^e][lr]
|
||||
SFX D el lar [^dfkmnpstj]el
|
||||
SFX D 0 ar jel
|
||||
SFX D del lar ddel
|
||||
SFX D 0 ar [^d]del
|
||||
SFX D fel lar ffel
|
||||
SFX D kel lar kkel
|
||||
SFX D el lar [^k]kel
|
||||
SFX D mel lar mmel
|
||||
SFX D 0 ar [^m]mel
|
||||
SFX D 0 ar nel
|
||||
SFX D pel lar ppel
|
||||
SFX D el lar [^p]pel
|
||||
SFX D sel lar ssel
|
||||
SFX D el lar [^s]sel
|
||||
SFX D tel lar ttel
|
||||
SFX D el lar [^t]tel
|
||||
SFX D ar rar [^fmk]er
|
||||
SFX D er rar ker
|
||||
SFX D 0 ar [^aeouø]m
|
||||
SFX D 0 mar dlem
|
||||
SFX D 0 ar blem
|
||||
SFX D 0 ar [^lr]em
|
||||
SFX D 0 mar [^kbd][lr]em
|
||||
SFX D 0 ar krem
|
||||
SFX D 0 mar [aø]m
|
||||
SFX D 0 mar [bdg]om
|
||||
SFX D 0 ar [^s][bdgl]om
|
||||
SFX D 0 ar [^bdgl]om
|
||||
SFX D 0 ar [^eiks]um
|
||||
SFX D 0 mar [ks]um
|
||||
SFX D um ar [ei]um
|
||||
|
||||
SFX E Y 37
|
||||
SFX E 0 r e
|
||||
SFX E é eer é
|
||||
SFX E 0 er [^eélmr]
|
||||
SFX E 0 er [^e][lr]
|
||||
SFX E el ler [^dfkmnpstj]el
|
||||
SFX E 0 er jel
|
||||
SFX E del ler ddel
|
||||
SFX E 0 er [^d]del
|
||||
SFX E fel ler ffel
|
||||
SFX E kel ler kkel
|
||||
SFX E el ler [^k]kel
|
||||
SFX E mel ler mmel
|
||||
SFX E 0 er [^m]mel
|
||||
SFX E 0 er nel
|
||||
SFX E pel ler ppel
|
||||
SFX E el ler [^p]pel
|
||||
SFX E sel ler ssel
|
||||
SFX E el ler [^s]sel
|
||||
SFX E tel ler ttel
|
||||
SFX E el ler [^t]tel
|
||||
SFX E er re [^fmk]er
|
||||
SFX E fer re fer
|
||||
SFX E mer re mer
|
||||
SFX E ker re ker
|
||||
SFX E 0 er [^aeouø]m
|
||||
SFX E 0 mer dlem
|
||||
SFX E 0 er [bd]lem
|
||||
SFX E 0 er [^lr]em
|
||||
SFX E 0 mer [^kbd][lr]em
|
||||
SFX E 0 er krem
|
||||
SFX E 0 mer [aø]m
|
||||
SFX E 0 mer [bdgl]om
|
||||
SFX E 0 er [^s][bdgl]om
|
||||
SFX E 0 er [^bdgl]om
|
||||
SFX E 0 er [^eiks]um
|
||||
SFX E 0 mer [ks]um
|
||||
SFX E um er [ei]um
|
||||
|
||||
SFX F Y 37
|
||||
SFX F e ane e
|
||||
SFX F é eane é
|
||||
SFX F 0 ane [^eélmr]
|
||||
SFX F 0 ane [^e][lr]
|
||||
SFX F el lane [^dfkmnpstj]el
|
||||
SFX F 0 ane jel
|
||||
SFX F del lane ddel
|
||||
SFX F 0 ane [^d]del
|
||||
SFX F fel lane ffel
|
||||
SFX F kel lane kkel
|
||||
SFX F el lane [^k]kel
|
||||
SFX F mel lane mmel
|
||||
SFX F 0 ane [^m]mel
|
||||
SFX F 0 ane nel
|
||||
SFX F pel lane ppel
|
||||
SFX F el lane [^p]pel
|
||||
SFX F sel lane ssel
|
||||
SFX F el lane [^s]sel
|
||||
SFX F tel lane ttel
|
||||
SFX F el lane [^t]tel
|
||||
SFX F er rane [^fm]er
|
||||
SFX F fer rane fer
|
||||
SFX F mer rane mer
|
||||
SFX F 0 ane [^aeouø]m
|
||||
SFX F 0 mane [aø]m
|
||||
SFX F 0 mane jem
|
||||
SFX F 0 mane dlem
|
||||
SFX F 0 ane blem
|
||||
SFX F 0 mane [^kbd][lr]em
|
||||
SFX F 0 ane krem
|
||||
SFX F 0 ane [^jlr]em
|
||||
SFX F 0 mane [bdgr]om
|
||||
SFX F 0 ane [^s][bdgl]om
|
||||
SFX F 0 ane [^bdglr]om
|
||||
SFX F 0 ane [^eiks]um
|
||||
SFX F 0 mane [ks]um
|
||||
SFX F um ane [ei]um
|
||||
|
||||
SFX G Y 37
|
||||
SFX G 0 ne e
|
||||
SFX G é eene é
|
||||
SFX G 0 ene [^eélmr]
|
||||
SFX G 0 ene [^e][lr]
|
||||
SFX G el lene [^dfkmnpstj]el
|
||||
SFX G 0 ene jel
|
||||
SFX G del lene ddel
|
||||
SFX G 0 ene [^d]del
|
||||
SFX G fel lene ffel
|
||||
SFX G kel lene kkel
|
||||
SFX G el lene [^k]kel
|
||||
SFX G mel lene mmel
|
||||
SFX G 0 ene [^m]mel
|
||||
SFX G 0 ene nel
|
||||
SFX G pel lene ppel
|
||||
SFX G el lene [^p]pel
|
||||
SFX G sel lene ssel
|
||||
SFX G el lene [^s]sel
|
||||
SFX G tel lene ttel
|
||||
SFX G el lene [^t]tel
|
||||
SFX G er rene [^fm]er
|
||||
SFX G fer rene fer
|
||||
SFX G mer rene mer
|
||||
SFX G 0 ene [^aeouø]m
|
||||
SFX G 0 mene [aø]m
|
||||
SFX G 0 mene jem
|
||||
SFX G 0 mene dlem
|
||||
SFX G 0 ene [bd]lem
|
||||
SFX G 0 mene [^kbd][lr]em
|
||||
SFX G 0 ene krem
|
||||
SFX G 0 ene [^jlr]em
|
||||
SFX G 0 mene [bdglr]om
|
||||
SFX G 0 ene [^s][bdgl]om
|
||||
SFX G 0 ene [^bdglr]om
|
||||
SFX G 0 ene [^eiks]um
|
||||
SFX G 0 mene [ks]um
|
||||
SFX G um ene [ei]um
|
||||
|
||||
SFX I Y 13
|
||||
SFX I 0 e er
|
||||
SFX I 0 ne er
|
||||
SFX I 0 ne [æø]r
|
||||
SFX I 0 nes [æø]r
|
||||
SFX I en na en
|
||||
SFX I e ne ye
|
||||
SFX I e nene ye
|
||||
SFX I ive ev ive
|
||||
SFX I ive evet ive
|
||||
SFX I ike ek ike
|
||||
SFX I ike eket ike
|
||||
SFX I 0 et um
|
||||
SFX I 0 ets um
|
||||
|
||||
SFX J Y 1
|
||||
SFX J 0 s [^s]
|
||||
|
||||
SFX K Y 1
|
||||
SFX K e ast e
|
||||
|
||||
SFX L Y 2
|
||||
SFX L 0 ar er
|
||||
SFX L 0 ane er
|
||||
|
||||
SFX M Y 19
|
||||
SFX M e o e
|
||||
SFX M ok øker ok
|
||||
SFX M ok økene ok
|
||||
SFX M or ødrer or
|
||||
SFX M or ødrene or
|
||||
SFX M aft efter aft
|
||||
SFX M aft eftene aft
|
||||
SFX M ot øter [bn]ot
|
||||
SFX M ot øtene [bn]ot
|
||||
SFX M ot øtter [fr]ot
|
||||
SFX M ot øttene [fr]ot
|
||||
SFX M ann enn ann
|
||||
SFX M ann ennene ann
|
||||
SFX M ang enger ang
|
||||
SFX M ang engene ang
|
||||
SFX M er ene er
|
||||
SFX M ar ane ar
|
||||
SFX M å od å
|
||||
SFX M a ok ta
|
||||
|
||||
SFX O Y 9
|
||||
SFX O e te [^t]e
|
||||
SFX O e t [^t]e
|
||||
SFX O 0 a atter
|
||||
SFX O atter øtre atter
|
||||
SFX O atter øtrer atter
|
||||
SFX O atter øtrene atter
|
||||
SFX O a og a
|
||||
SFX O 0 dd a
|
||||
SFX O 0 tt a
|
||||
|
||||
SFX P Y 2
|
||||
SFX P 0 dde [aeiouyøå]
|
||||
SFX P 0 dd [aeiouyøå]
|
||||
|
||||
SFX Q Y 2
|
||||
SFX Q e de e
|
||||
SFX Q e d e
|
||||
|
||||
SFX R Y 4
|
||||
SFX R e 0 [^m]e
|
||||
SFX R e 0 [^m]me
|
||||
SFX R me 0 mme
|
||||
SFX R ere ér ere
|
||||
|
||||
SFX S Y 2
|
||||
SFX S e ande e
|
||||
SFX S 0 ande [aiouyæøå]
|
||||
|
||||
SFX T Y 3
|
||||
SFX T 0 t e
|
||||
SFX T 0 te e
|
||||
SFX T 0 e et
|
||||
|
||||
SFX U Y 11
|
||||
SFX U t n et
|
||||
SFX U et ne [^m]et
|
||||
SFX U met ne met
|
||||
SFX U ele al ele
|
||||
SFX U ele ålet ele
|
||||
SFX U øre orde ere
|
||||
SFX U øre ort ere
|
||||
SFX U egge agt egge
|
||||
SFX U egge agte egge
|
||||
SFX U um a um
|
||||
SFX U gi av gi
|
||||
|
||||
SFX V Y 14
|
||||
SFX V 0 e [^lmneo]
|
||||
SFX V 0 e [^e][ln]
|
||||
SFX V el le [^m]el
|
||||
SFX V fen ne fen
|
||||
SFX V mel le mel
|
||||
SFX V en ne [^fkls]en
|
||||
SFX V sen ne ssen
|
||||
SFX V en ne [^s]sen
|
||||
SFX V ken ne kken
|
||||
SFX V en ne [^k]ken
|
||||
SFX V len ne llen
|
||||
SFX V en ne [^l]len
|
||||
SFX V 0 me [aeiouø]m
|
||||
SFX V 0 e [^aeiouø]m
|
||||
|
||||
SFX W Y 13
|
||||
SFX W 0 t [^fklntiaøå]
|
||||
SFX W 0 t [^f]f
|
||||
SFX W f t ff
|
||||
SFX W 0 t [^k]k
|
||||
SFX W k t kk
|
||||
SFX W 0 t [^l]l
|
||||
SFX W 0 t ull
|
||||
SFX W l t [^u]ll
|
||||
SFX W 0 t [^n]n
|
||||
SFX W n t nn
|
||||
SFX W 0 t ei
|
||||
SFX W 0 tt [^e]i
|
||||
SFX W 0 tt [aøå]
|
||||
|
||||
SFX X Y 22
|
||||
SFX X 0 are [^e][^me]
|
||||
SFX X 0 are [eo][^lrnem]
|
||||
SFX X el lare el
|
||||
SFX X er rare er
|
||||
SFX X en nare en
|
||||
SFX X 0 mare [aou]m
|
||||
SFX X 0 ast [^e][^mge]
|
||||
SFX X 0 aste [^e][^mge]
|
||||
SFX X 0 ast [^e][oi][mge]
|
||||
SFX X 0 aste [^e][oi][mge]
|
||||
SFX X 0 ast e[oi][mge]
|
||||
SFX X 0 aste e[oi][mge]
|
||||
SFX X 0 ast e[^lrne]
|
||||
SFX X 0 aste e[^lrne]
|
||||
SFX X el last el
|
||||
SFX X el laste el
|
||||
SFX X er rast er
|
||||
SFX X er raste er
|
||||
SFX X en nast en
|
||||
SFX X en naste en
|
||||
SFX X 0 mast [au]m
|
||||
SFX X 0 maste [au]m
|
||||
|
||||
SFX Y Y 4
|
||||
SFX Y e ingar e
|
||||
SFX Y e ingane e
|
||||
SFX Y 0 ingar [aiouyøå]
|
||||
SFX Y 0 ingane [aiouyøå]
|
||||
|
||||
SFX Z N 5
|
||||
SFX Z 0 elig [^e]
|
||||
SFX Z 0 elige [^e]
|
||||
SFX Z e bar e
|
||||
SFX Z e bart e
|
||||
SFX Z e bare e
|
||||
|
||||
# SFX \[ N 2
|
||||
# SFX \[ 0 messig .
|
||||
# SFX \[ 0 messige .
|
||||
|
||||
# SFX \] N 2
|
||||
# SFX \] 0 smessig .
|
||||
# SFX \] 0 smessige .
|
||||
|
||||
# SFX \^ N 2
|
||||
# SFX \^ 0 aktig .
|
||||
# SFX \^ 0 aktige .
|
||||
|
||||
# SFX ~\\ N 1
|
||||
# SFX ~\\ 0 s [^s]
|
||||
|
||||
# SFX ~\_ N 7
|
||||
# SFX ~\_ e ings e
|
||||
# SFX ~\_ 0 e [dgknprstuv]
|
||||
# SFX ~\_ um e um
|
||||
# SFX ~\_ 0 e [lr]m
|
||||
# SFX ~\_ el le gel
|
||||
# SFX ~\_ 0 e [^g]el
|
||||
# SFX ~\_ 0 e [^e]l
|
||||
|
||||
# SFX ~\` N 2
|
||||
# SFX ~\` e nings e
|
||||
# SFX ~\` zyzyzy 0 zyzyzy
|
||||
|
||||
213550
NodeJsProjects/SpellChecker/Dictionaries/nn_NO/nn_NO.dic
Normal file
213550
NodeJsProjects/SpellChecker/Dictionaries/nn_NO/nn_NO.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,340 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) year <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
7233
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL.aff
Normal file
7233
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL.aff
Normal file
File diff suppressed because it is too large
Load Diff
300677
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL.dic
Normal file
300677
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL.dic
Normal file
File diff suppressed because it is too large
Load Diff
544
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL_Polish.txt
Normal file
544
NodeJsProjects/SpellChecker/Dictionaries/pl_PL/pl_PL_Polish.txt
Normal file
@@ -0,0 +1,544 @@
|
||||
Pakiet słowników został stworzony przez projekt OpenOffice.org po polsku.
|
||||
Zawiera wszystkie słowniki w wersjach z dnia 2008.12.06.
|
||||
Strona główna projektu: http://pl.openoffice.org
|
||||
|
||||
Korektor pisowni
|
||||
----------------
|
||||
Niniejszy slownik do sprawdzania pisowni jest udostępniany na licencjach
|
||||
GPL, LGPL, MPL (Mozilla Public License) i Creative Commons ShareAlike
|
||||
(zobacz http://creativecommons.org/licenses/sa/1.0).
|
||||
|
||||
Data utworzenia tej wersji slownika: 2008.12.06
|
||||
|
||||
Opiekun słownika: Marek Futrega (futrega@gmail.com)
|
||||
|
||||
Korekty: Marcin Miłkowski
|
||||
|
||||
Słownik synonimów - wersja do programu OpenOffice.org
|
||||
-----------------------------------------------------
|
||||
|
||||
Copyright (C) 2004-2008 Marcin Miłkowski <milek_pl@users.sourceforge.net>
|
||||
Licencja: LGPL 2.1.
|
||||
Wersja wygenerowana automatycznie dnia 2008-05-12
|
||||
Strona główna: http://synonimy.ux.pl/
|
||||
|
||||
Wzorce podziału wyrazów
|
||||
-----------------------
|
||||
Licencja: LGPL 2.1, wersja pierwotna dostępna na zasadach public domain.
|
||||
|
||||
Oparte na danych z pakietu TeX: plhyph.tex,
|
||||
wersja 3.0a, 17.05.1995
|
||||
Pierwsza wersja - Hanna Kołodziejska (1987).
|
||||
Adaptacja do formatu LeX i duże zmiany: Bogusław Jackowski & Marek Ryćko (1987-1989).
|
||||
Dalsze poprawki - Hanna Kołodziejska (1991).
|
||||
Wersja samodzielna - Bogusław Jackowski i Marek Ryćko, z uwzględnieniem sugestii
|
||||
Mariusza Olki, 1995.
|
||||
Konwersja do OOo i poprawki: Artur Polaczyński <artiip@gmail.com>
|
||||
|
||||
Licencja LGPL 2.1
|
||||
-----------------
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library 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
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
||||
26488
NodeJsProjects/SpellChecker/Dictionaries/pt_BR/pt_BR.aff
Normal file
26488
NodeJsProjects/SpellChecker/Dictionaries/pt_BR/pt_BR.aff
Normal file
File diff suppressed because it is too large
Load Diff
307375
NodeJsProjects/SpellChecker/Dictionaries/pt_BR/pt_BR.dic
Normal file
307375
NodeJsProjects/SpellChecker/Dictionaries/pt_BR/pt_BR.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,210 @@
|
||||
Autor/Author: Raimundo Moura <raimundomoura@openoffice.org>
|
||||
|
||||
|
||||
|
||||
pt-BR: Este dicionário está em desenvolvimento por Raimundo Moura e sua equipe. Ele está licenciado sob os termos da Licença Pública Geral Menor versão 2.1 (LGPLv2.1), como publicado pela Free Software Foundation. Os créditos estão disponíveis em http://www.broffice.org/creditos e você pode encontrar novas versões em http://www.broffice.org/verortografico.
|
||||
|
||||
|
||||
|
||||
en-US: This dictionary is under development by Raimundo Moura and his team. It is licensed under the terms of the GNU Lesser General Public License version 2.1 (LGPLv2.1), as published by the Free Software Foundation. The credits are available at http://www.broffice.org/creditos and you can find new releases at http://www.broffice.org/verortografico.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Copyright (C) 2006 - 2010 por/by Raimundo Santos Moura <raimundomoura@openoffice.org>
|
||||
|
||||
|
||||
|
||||
=============
|
||||
|
||||
APRESENTAÇÃO
|
||||
|
||||
=============
|
||||
|
||||
|
||||
|
||||
O Projeto Verificador Ortográfico do BrOffice.org é um projeto
|
||||
|
||||
colaborativo desenvolvido pela comunidade Brasileira.
|
||||
|
||||
A relação completa dos colaboradores deste projeto está em:
|
||||
|
||||
http://www.broffice.org.br/creditos
|
||||
|
||||
|
||||
|
||||
***********************************************************************
|
||||
|
||||
* Este é um dicionário para correção ortográfica da língua Portuguesa *
|
||||
|
||||
* para o Myspell. *
|
||||
|
||||
* Este programa é livre e pode ser redistribuído e/ou modificado nos *
|
||||
|
||||
* termos da GNU Lesser General Public License (LGPL) versão 2.1. *
|
||||
|
||||
* *
|
||||
|
||||
***********************************************************************
|
||||
|
||||
|
||||
|
||||
======================
|
||||
|
||||
SOBRE ESTA ATUALIZAÇÃO
|
||||
|
||||
======================
|
||||
|
||||
|
||||
|
||||
. Inclusão de "neuropediatra","neuropediatria","dermatofitose","estomatognático','neuropsicomotor',
|
||||
|
||||
'somatóforme','traumato','supralegal','farmacoepidemiologia','farmacoeconomia','farmacovigilância',
|
||||
|
||||
'farmacoeconômico','gonometria','disfluência','testamentos','metacompetência','dermatofitose'.
|
||||
|
||||
Colaboração de Leandro Senni Tsujiguchi;
|
||||
|
||||
. Inclusão de "adjuntoria", colaboração de Tiago Hillebrandt;
|
||||
|
||||
. Inclusão de "ProJovem", "pré-admissional" e "pré-executividade", colaboração de Leandro Senni Tsujiguchi;
|
||||
|
||||
. Inclusão de: angiorressonância, antiendomísio, antigliadina, hemitórax, intravítreo, intravítrea,
|
||||
|
||||
nodulação, nodulações, oxigenioterapia, radioiodoterapia, Rosilene, semiobstruído(a), seroma.
|
||||
|
||||
Colaboração de Eduardo Ribeiro Mundim;
|
||||
|
||||
. Exclusão de ondó e explendor. Colaboração de Eduardo Ribeiro Mundim;
|
||||
|
||||
. Inclusão de "reescritura", colaboração de Tiago Hillebrandt;
|
||||
|
||||
. Inclusão de: semiperfeito, éons, hobby, Salma, vidinha e cantiguinha. Colaboração de
|
||||
|
||||
João Octávio Anderson Trindade Boaventura
|
||||
|
||||
. Inclusão de: relevantíssimo, intrassistêmico, orgásmico, charlatãos, latíssimo, silogismos
|
||||
|
||||
e jurisdicização. Colaboração de Pablo Feitosa.
|
||||
|
||||
. Correção das unidades KV para kV e KW para kW. Colaboração Seff - Celesc;
|
||||
|
||||
. Inclusão de: besifloxacino, Ca, Calfactanto, carboximaltose, certolizumabe, degarelix, di-hidratado,
|
||||
|
||||
dibutila, diotirosina, fanolesomabe, Fe, gadoxetato, iodipamida, iodofenazona, iodofíltico, iodopiracete,
|
||||
|
||||
iomazenil, iotirosina, medronato, nitridocade, oxidronato, oxiquinolina, pazopanibe, pentreotida,
|
||||
|
||||
Racevalina, Romiplostima, Sm, tacatuzumabe, Tc, tetraxetana, tiatida, Ticagrelor, Tl, Vorinos, Zn.
|
||||
|
||||
Colaboração Leonardo Fontenelle;
|
||||
|
||||
. Inclusão de 'sobrevindos'. Colaboração João Eduardo Strottmann.
|
||||
|
||||
. Inclusão de 'sincretismo'. Colaboração Luyse Moraes Moura.
|
||||
|
||||
. Inclusão de 'testamentos','inexo','inexos', 'inexa' e 'inexa'.Colaboração João Eduardo Strottmann.
|
||||
|
||||
. Inclusão de: acetoacético, alílicas, benzílicas, amidação, arilação, benzoilação, butilação,
|
||||
|
||||
deidrociclização, desidroalogenação, desidro-halogenação, epoxidação, fosfatização, hidrossililação,
|
||||
|
||||
sililação, sulfoclorinação, sulfoxidação, tiocarbonilação e clorossulfonação. Colaboração de Luis
|
||||
|
||||
Alcides Brandini De Boni;
|
||||
|
||||
. Inclusão de: prestacional, ecletismo, pré-compromisso, sub-reptícia, assistivo(a), inacabamento,
|
||||
|
||||
reprodutivista(s), reprodutivismo. Colaboração de Francysco Pablo Feitosa Gonçalves;
|
||||
|
||||
. Inclusão de 'retroestipulado' e 'retroassinado', colaboração de João Octávio Anderson Trindade Boaventura;
|
||||
|
||||
. Inclusão de: antixenófobo, ciberserviço, skinhead, ciberdisfarce e Adolf, colaboração de Luyse Moraes Moura;
|
||||
|
||||
. Inclusão de 'microemulsões',microemulsão. Colaboração de Luis Alcides Brandini De Boni;
|
||||
|
||||
. Inclusão de 'fragmentariedade'. Colaboração de Pablo Feitosa
|
||||
|
||||
. Inclusão de: Lattes, Giuseppe, Florestan, Ab'Sáber, Nacib, Aziz, Oppenheimer, Manhattan, Niltomar,
|
||||
|
||||
Marili, Lorenz, Edward, Joélson, Jandir, Jamir, Ilena, Ildo, Graciela, Glenda, Fredolino, Feynmann,
|
||||
|
||||
Ferrabraz, Corsan, Cohab, Matheus, Jayme, Mathilde, Bernoulli e Pitot. Colaboração João Eduardo Strottmann;
|
||||
|
||||
. Reforço na aplicação das regras de prefixos auto, sub, re, super, hiper, anti, ante, sobre, contra etc;
|
||||
|
||||
. reinclusão do hífen para os casos em que a palavra 'não' funcione como prefixo.
|
||||
|
||||
DivSilab
|
||||
|
||||
. Correção da quebra de sílabas das palavras com 'br', como: 'vibração' ERRADO(vib-ra-ção)
|
||||
|
||||
Colaboração Leandro Dutra;
|
||||
|
||||
. Correção da quebra de sílabas das palavras com 'psic', como: 'neuropsicologia' ERRADO(neu-rop-si-co-lo-gia)
|
||||
|
||||
Colaboração Raimundo;
|
||||
|
||||
. Correção da quebra de sílabas das palavras com 'uin', como: 'contribuinte' ERRADO(con-tri-buin-te)
|
||||
|
||||
Colaboração João Paulo Vinha Bittar;
|
||||
|
||||
|
||||
|
||||
=======================================================
|
||||
|
||||
COMO INSTALAR O VERIFICADOR BRASILEIRO NO BROFFICE.ORG
|
||||
|
||||
=======================================================
|
||||
|
||||
|
||||
|
||||
Copie os arquivos pt_BR.dic e pt_BR.aff para o diretório <BrOffice.org>
|
||||
|
||||
/share/dict/ooo, onde <BrOffice.org> é o diretório em que o programa
|
||||
|
||||
foi instalado.
|
||||
|
||||
|
||||
|
||||
No Windows, normalmente, o caminho é este:
|
||||
|
||||
C:\Arquivos de programas\BrOffice.org 2.0\share\dict\ooo, e no Linux
|
||||
|
||||
/opt/BrOffice.org/share/dict/ooo/.
|
||||
|
||||
|
||||
|
||||
No mesmo diretório, localize o arquivo dictionary.lst. Abra-o com um
|
||||
|
||||
editor de textos e acrescente a seguinte linha ao final(se não
|
||||
|
||||
existir):
|
||||
|
||||
|
||||
|
||||
DICT pt BR pt_BR
|
||||
|
||||
|
||||
|
||||
É necessário reiniciar o BrOffice, inclusive o início rápido da versão
|
||||
|
||||
para Windows que fica na barra de tarefas, para que o corretor
|
||||
|
||||
funcione.
|
||||
|
||||
|
||||
|
||||
===================
|
||||
|
||||
DÚVIDAS FREQUENTES
|
||||
|
||||
===================
|
||||
|
||||
|
||||
|
||||
Os arquivos foram copiados mas o Verificador não está funcionando.
|
||||
|
||||
O Verificador Ortográfico não deve estar configurado corretamente,
|
||||
|
||||
1415
NodeJsProjects/SpellChecker/Dictionaries/pt_PT/pt_PT.aff
Normal file
1415
NodeJsProjects/SpellChecker/Dictionaries/pt_PT/pt_PT.aff
Normal file
File diff suppressed because it is too large
Load Diff
43880
NodeJsProjects/SpellChecker/Dictionaries/pt_PT/pt_PT.dic
Normal file
43880
NodeJsProjects/SpellChecker/Dictionaries/pt_PT/pt_PT.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
||||
This is a Portuguese (Portugal) dictionary for Hunspell:
|
||||
|
||||
Copyright (C) 2006-2012 José João de Almeida <jj@di.uminho.pt> ,
|
||||
Rui Vilela <ruivilela@di.uminho.pt> ,
|
||||
Alberto Simões <ambs@di.uminho.pt>
|
||||
|
||||
Dep. Informática, Universidade do Minho
|
||||
Portugal
|
||||
|
||||
All dictionary files and associated programs are currently covered by
|
||||
the (GPL/LGPL/MPL), by this order. See also COPYING file for more
|
||||
details, if available.
|
||||
|
||||
Regarding license versions:
|
||||
1. GPL Version 2
|
||||
2. LGPL Version 2.1
|
||||
3. MPL Version 1.1
|
||||
|
||||
To install : Find a suitable application that uses myspell
|
||||
dictionaries like openoffice, or hunspell terminal aplication. Use
|
||||
the program dictionary application (if it has) for installing the
|
||||
dictionaries. For openoffice, you should make sure that the
|
||||
dictionary.lst file has the following line: DICT pt PT pt_PT
|
||||
|
||||
Automatic instalation: You can automatically download our dictionary
|
||||
using the available plugins, either from mozilla, or OpenOffice. See
|
||||
our site for details.
|
||||
|
||||
Latest versions, suggestions, automatic install, informations at
|
||||
http://natura.di.uminho.pt/
|
||||
|
||||
|
||||
1361
NodeJsProjects/SpellChecker/Dictionaries/ro_RO/ro_RO.aff
Normal file
1361
NodeJsProjects/SpellChecker/Dictionaries/ro_RO/ro_RO.aff
Normal file
File diff suppressed because it is too large
Load Diff
155290
NodeJsProjects/SpellChecker/Dictionaries/ro_RO/ro_RO.dic
Normal file
155290
NodeJsProjects/SpellChecker/Dictionaries/ro_RO/ro_RO.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,36 @@
|
||||
Aceasta este extensia de dicționare românești pentru OpenOffice.org. Extensia
|
||||
implementează ortografia de dinainte de 1993 (ortografia cu î din i) și cuprinde un
|
||||
dicționar de depărțire în silabe, un dicționar de corectare ortografică, și un dicționar
|
||||
de sinonime. Arhiva a fost pregătită de Lucian Constantin (http://rospell.sourceforge.net).
|
||||
|
||||
Autori și licențe:
|
||||
|
||||
1. Dicționarul de despărțire în silabe
|
||||
Autori: Adrian Stoica (office@cuvinte.ro)
|
||||
Licență: GNU GPL, vedeți COPYING.GPL pentru mai multe detalii
|
||||
|
||||
2. Dicționarul de sinonime
|
||||
Autori:
|
||||
Lucian Constantin (http://rospell.sourceforge.net)
|
||||
Cătălin Frâncu (http://dexonline.ro)
|
||||
Mircea și Luiza Seche, "Dicționar de sinonime", Editura Litera Internațional, 2002
|
||||
Licență:
|
||||
GNU General Public License Version 2 sau mai recentă (vedeți COPYING.GPL)
|
||||
|
||||
3. Dicționarul de corectare ortografică
|
||||
Autori:
|
||||
Lucian Constantin (http://rospell.sourceforge.net)
|
||||
Sorin Sbârnea (Romanian Internationalization Team, http://www.i18n.ro)
|
||||
Alexandru Szasz (Mozilla and OpenOffice.org Romanian Translation Team)
|
||||
Ionuț Păduraru (http://www.archeus.ro)
|
||||
Adrian Stoica (OpenOffice.org Romanian Translation Team) <adrian dot stoica at cuvinte dot ro>
|
||||
Nicu Buculei (OpenOffice.org Romanian Translation Team) <nicu at apsro dot com>
|
||||
Cătălin Frâncu (http://dexonline.ro)
|
||||
Ionel Mugurel Ciobică (previous aspell releases) <tgakic at sg10 chem tue nl>
|
||||
Mihai Budiu (ispell dictionary) <mihaib at cs cmu edu>
|
||||
Licență: GPL 2.0/LGPL 2.1/MPL 1.1, vedeți COPYING.GPL, COPYING.LGPL,
|
||||
și COPYING.MPL pentru mai multe detalii
|
||||
|
||||
Suport:
|
||||
Grupul de email rospell la http://groups.google.com/group/rospell
|
||||
|
||||
14474
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU.aff
Normal file
14474
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU.aff
Normal file
File diff suppressed because it is too large
Load Diff
379324
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU.dic
Normal file
379324
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU.dic
Normal file
File diff suppressed because it is too large
Load Diff
1632
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU_oo3.aff
Normal file
1632
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU_oo3.aff
Normal file
File diff suppressed because it is too large
Load Diff
146236
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU_oo3.dic
Normal file
146236
NodeJsProjects/SpellChecker/Dictionaries/ru_RU/ru_RU_oo3.dic
Normal file
File diff suppressed because it is too large
Load Diff
2536
NodeJsProjects/SpellChecker/Dictionaries/sk_SK/sk_SK.aff
Normal file
2536
NodeJsProjects/SpellChecker/Dictionaries/sk_SK/sk_SK.aff
Normal file
File diff suppressed because it is too large
Load Diff
264945
NodeJsProjects/SpellChecker/Dictionaries/sk_SK/sk_SK.dic
Normal file
264945
NodeJsProjects/SpellChecker/Dictionaries/sk_SK/sk_SK.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,49 @@
|
||||
Toto rozšírenie obsahuje slovenské slovníky pre OpenOffice.org.
|
||||
|
||||
Kontrola pravopisu
|
||||
------------------
|
||||
|
||||
Toto je slovenský slovník pre kontrolu pravopisu vyvíjaný a udržiavaný
|
||||
v projekte sk-spell (http://sk-spell.sk.cx/)
|
||||
|
||||
Tieto dáta sú vydané pod týmito licenciami:
|
||||
* The GNU General Public License (GPL) Version 2, June 1991
|
||||
* GNU Lesser General Public License Version 2.1, February 1999
|
||||
* Mozilla Public License 1.1 (MPL 1.1)
|
||||
|
||||
Ďalšie informácie nájde na týchto stránkach:
|
||||
http://sk-spell.sk.cx/ispell-sk
|
||||
http://sk-spell.sk.cx/myspell-sk
|
||||
http://sk-spell.sk.cx/aspell-sk
|
||||
http://sk-spell.sk.cx/hunspell-sk
|
||||
|
||||
Slovník synoným
|
||||
---------------
|
||||
|
||||
Copyright (c) 2004-2011 Tibor Bako, yorik (at) szm.sk,
|
||||
Zdenko Podobný, zposter (at) gmail.com
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this data (the "Data"), to deal in the Data without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge,
|
||||
publish, distribute, sublicense, and/or sell copies of the Data, and
|
||||
to permit persons to whom the Data 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 Data.
|
||||
|
||||
THE DATA ARE 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 DATA OR THE USE OR
|
||||
OTHER DEALINGS IN THE DATA.
|
||||
|
||||
Slovník pre delenie slov
|
||||
-----------------------
|
||||
|
||||
Slovník je vytvorený konverziou dát TeX hyphenation patterns pre slovenčinu
|
||||
(Autor: Jana Chlebíková) s pomocou lingucomponent-tools
|
||||
(http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/).
|
||||
674
NodeJsProjects/SpellChecker/Dictionaries/sv_SE/sv_SE.aff
Normal file
674
NodeJsProjects/SpellChecker/Dictionaries/sv_SE/sv_SE.aff
Normal file
@@ -0,0 +1,674 @@
|
||||
SET UTF-8
|
||||
TRY aerndtislogmkpbhfjuväcöåyqxzvwéâàáè
|
||||
|
||||
WORDCHARS -
|
||||
|
||||
BREAK 1
|
||||
BREAK -
|
||||
|
||||
NOSUGGEST !
|
||||
|
||||
FORBIDDENWORD %
|
||||
|
||||
NEEDAFFIX ?
|
||||
|
||||
# At least this many letters in each word within a compound:
|
||||
COMPOUNDMIN 1
|
||||
#COMPOUNDMIN 3
|
||||
|
||||
# Only two, three or four word compounds:
|
||||
COMPOUNDWORDMAX 4
|
||||
|
||||
# Disallow triple letters, like "fall"+"lucka":
|
||||
CHECKCOMPOUNDTRIPLE
|
||||
# Convert triple letters to double in compounds,
|
||||
# e.g. "fall"+"lucka" = "fallucka":
|
||||
SIMPLIFIEDTRIPLE
|
||||
# Disallow word duplication in compounds, like "bil"+"bil":
|
||||
CHECKCOMPOUNDDUP
|
||||
|
||||
FULLSTRIP
|
||||
|
||||
# Don't allow autogenerated compounds that are very similar
|
||||
# to some word in the dictionary:
|
||||
CHECKCOMPOUNDREP
|
||||
|
||||
# For suffixes used to create first part of a compound
|
||||
COMPOUNDPERMITFLAG W
|
||||
|
||||
# May appear first in compound words:
|
||||
COMPOUNDBEGIN X
|
||||
|
||||
# May be middle elements in compound words:
|
||||
COMPOUNDMIDDLE U
|
||||
|
||||
# May appear last in compound words:
|
||||
COMPOUNDEND Y
|
||||
|
||||
# Non-word that may be part of a compund:
|
||||
ONLYINCOMPOUND Z
|
||||
|
||||
NOSPLITSUGS
|
||||
|
||||
# Some letters that should be replacable and have higher priority
|
||||
REP 30
|
||||
REP e ä
|
||||
REP ä e
|
||||
REP ngn gn
|
||||
REP je ge
|
||||
REP ge je
|
||||
REP gö jö
|
||||
REP jö gö
|
||||
REP gt kt
|
||||
REP kt gt
|
||||
REP dj g
|
||||
REP j lj
|
||||
REP j gj
|
||||
REP gj j
|
||||
REP kj tj
|
||||
REP tj kj
|
||||
REP ch tj
|
||||
REP tj ch
|
||||
REP ch kj
|
||||
REP kj ch
|
||||
REP ch ige
|
||||
REP ch j
|
||||
REP ch i
|
||||
REP ch ge
|
||||
REP ch stg
|
||||
REP sk skj
|
||||
REP skj sk
|
||||
REP sj sti
|
||||
REP ti ssi
|
||||
REP ssi ti
|
||||
REP tj k
|
||||
|
||||
# För förkortningar och ord som kräver bindestreck
|
||||
# när de är andraord i sammansättningar, t.ex. TV, OS
|
||||
# (betal-TV, London-OS).
|
||||
#PFX a Y 1
|
||||
#PFX a 0 -/WY .
|
||||
|
||||
|
||||
# Genitiv. Som Göran: Görans
|
||||
SFX A Y 1
|
||||
SFX A 0 s .
|
||||
|
||||
#--------------------------------------------
|
||||
# Bestämd form, neutrum.
|
||||
#--------------------------------------------
|
||||
# Substantivformer av verb.
|
||||
# Som lida: lidande, lidandet...
|
||||
SFX B Y 6
|
||||
SFX B 0 et [^a]
|
||||
SFX B 0 ets [^a]
|
||||
SFX B 0 nde a
|
||||
SFX B 0 ndes a
|
||||
SFX B 0 ndet a
|
||||
SFX B 0 ndets a
|
||||
|
||||
# Som täcke: täcket, täckets
|
||||
# Även: öra, alibi, foto
|
||||
# Som kakel: kaklet, kaklets
|
||||
# Som vimmel: vimlet, vimlets
|
||||
# Som socker: sockret, sockrets
|
||||
# Som nummer: numret, numrets
|
||||
# Som rum: rummet, rummets
|
||||
# Som tecken: tecknet, tecknets
|
||||
# Som ton: tonnet, tonnets
|
||||
SFX C Y 16
|
||||
SFX C 0 t [aeiouyåäöé]
|
||||
SFX C 0 ts [aeiouyåäöé]
|
||||
SFX C el let [^m]el
|
||||
SFX C el lets [^m]el
|
||||
SFX C mel let mel
|
||||
SFX C mel lets mel
|
||||
SFX C er ret [^m]er
|
||||
SFX C er rets [^m]er
|
||||
SFX C mer ret mer
|
||||
SFX C mer rets mer
|
||||
SFX C 0 met m
|
||||
SFX C 0 mets m
|
||||
SFX C en net en
|
||||
SFX C en nets en
|
||||
SFX C 0 net [^e]n
|
||||
SFX C 0 nets [^e]n
|
||||
|
||||
#--------------------------------------------
|
||||
# Bestämd form, utrum.
|
||||
#--------------------------------------------
|
||||
# Som katt: katten, kattens
|
||||
#--------------------------------------------
|
||||
# Adjektivformer av verb (och presens particip):
|
||||
#--------------------------------------------
|
||||
# Som söka: sökande
|
||||
#--------------------------------------------
|
||||
SFX D Y 3
|
||||
SFX D 0 en [^a]
|
||||
SFX D 0 ens [^a]
|
||||
SFX D 0 nde a
|
||||
|
||||
# Bestämd form, utrum samt
|
||||
# obestämd form pluralis, neutrum.
|
||||
#--------------------------------------------
|
||||
# Som myra, cykel: cykeln, cykelns
|
||||
# Som frö: frön, fröns
|
||||
# Som faktum: fakta, faktas
|
||||
SFX E Y 4
|
||||
SFX E 0 n [^m]
|
||||
SFX E 0 ns [^m]
|
||||
SFX E um a um
|
||||
SFX E um as um
|
||||
|
||||
#--------------------------------------------
|
||||
# Neutrum, bestämd form pluralis samt
|
||||
# utrum, bestämd form singularis.
|
||||
#--------------------------------------------
|
||||
# Som fönster, fader
|
||||
# Som nummer
|
||||
# Som exempel
|
||||
# Som vimmel, himmel
|
||||
# Som tecken: tecknen, tecknens
|
||||
# Som socken: socknen, socknens
|
||||
# Som hem, rem
|
||||
# Som ton, man
|
||||
# Som täcke, bi, kilo, knä
|
||||
# Substantivformer av verb:
|
||||
# Som avslöja: avslöjandena, avslöjandenas
|
||||
SFX F Y 18
|
||||
SFX F er ren [^m]er
|
||||
SFX F er rens [^m]er
|
||||
SFX F mer ren mer
|
||||
SFX F mer rens mer
|
||||
SFX F el len [^m]el
|
||||
SFX F el lens [^m]el
|
||||
SFX F mel len mel
|
||||
SFX F mel lens mel
|
||||
SFX F en nen en
|
||||
SFX F en nens en
|
||||
SFX F 0 men m
|
||||
SFX F 0 mens m
|
||||
SFX F 0 nen [^e]n
|
||||
SFX F 0 nens [^e]n
|
||||
SFX F 0 na [eioä]
|
||||
SFX F 0 nas [eioä]
|
||||
SFX F 0 ndena a
|
||||
SFX F 0 ndenas a
|
||||
|
||||
#--------------------------------------------
|
||||
# Pluralis, reale.
|
||||
#--------------------------------------------
|
||||
# Som stol: stolar, stolarna, stolarnas, stolars
|
||||
# Även: del
|
||||
# Som timme: timmar, timmarna, timmarnas, timmars
|
||||
# Som fara: faror, farorna, farornas, farors
|
||||
SFX G Y 12
|
||||
SFX G 0 ar [^ae]
|
||||
SFX G 0 arna [^ae]
|
||||
SFX G 0 arnas [^ae]
|
||||
SFX G 0 ars [^ae]
|
||||
SFX G e ar e
|
||||
SFX G e arna e
|
||||
SFX G e arnas e
|
||||
SFX G e ars e
|
||||
SFX G a or a
|
||||
SFX G a orna a
|
||||
SFX G a ornas a
|
||||
SFX G a ors a
|
||||
|
||||
# Som katt: katter, katterna, katternas, katters
|
||||
# Som historia: historier, historierna, historiernas, historiers
|
||||
SFX H Y 8
|
||||
SFX H 0 er [^a]
|
||||
SFX H 0 ers [^a]
|
||||
SFX H 0 erna [^a]
|
||||
SFX H 0 ernas [^a]
|
||||
SFX H a er a
|
||||
SFX H a erna a
|
||||
SFX H a ernas a
|
||||
SFX H a ers a
|
||||
|
||||
# Som tå
|
||||
# Som fröken: fröknar, fröknarna, fröknarnas, fröknars
|
||||
# Även: socken, öken
|
||||
# Som afton
|
||||
# Som dröm: drömmar, drömmarna, drömmarnas, drömmars
|
||||
# Som tistel
|
||||
# Som lymmel
|
||||
# Som tiger: tigrar, tigrarna, tigrarnas, tigrars
|
||||
# Som klammer: klamrar, klamrarna, klamrarnas, klamrars
|
||||
# Som sommar: somrar, somrarna, somrarnas, somrars
|
||||
SFX I Y 36
|
||||
SFX I 0 r [^lmnr]
|
||||
SFX I 0 rna [^lmnr]
|
||||
SFX I 0 rnas [^lmnr]
|
||||
SFX I 0 rs [^lmnr]
|
||||
SFX I en nar en
|
||||
SFX I en narna en
|
||||
SFX I en narnas en
|
||||
SFX I en nars en
|
||||
SFX I on nar on
|
||||
SFX I on narna on
|
||||
SFX I on narnas on
|
||||
SFX I on nars on
|
||||
SFX I 0 mar m
|
||||
SFX I 0 marna m
|
||||
SFX I 0 marnas m
|
||||
SFX I 0 mars m
|
||||
SFX I el lar [^m]el
|
||||
SFX I el larna [^m]el
|
||||
SFX I el larnas [^m]el
|
||||
SFX I el lars [^m]el
|
||||
SFX I mel lar mel
|
||||
SFX I mel larna mel
|
||||
SFX I mel larnas mel
|
||||
SFX I mel lars mel
|
||||
SFX I er rar [^m]er
|
||||
SFX I er rarna [^m]er
|
||||
SFX I er rarnas [^m]er
|
||||
SFX I er rars [^m]er
|
||||
SFX I mer rar mer
|
||||
SFX I mer rarna mer
|
||||
SFX I mer rarnas mer
|
||||
SFX I mer rars mer
|
||||
SFX I mar rar mar
|
||||
SFX I mar rarna mar
|
||||
SFX I mar rarnas mar
|
||||
SFX I mar rars mar
|
||||
|
||||
# Som formel
|
||||
# Även neutrum: sekel, mirakel
|
||||
# Som fot: fötter, fötterna, fötternas, fötters
|
||||
# Som get: getter, getterna, getternas, getters
|
||||
# Som tand: tänder, tänderna, tändernas, tänders
|
||||
# Som musiker: musikerna, musikernas
|
||||
# Som ägare: ägarna, ägarnas
|
||||
# Som museum: museet, museets, museer, museerna, museernas, museers
|
||||
#*******************************************#
|
||||
#*******************************************#
|
||||
#*******************************************#
|
||||
# Verb #
|
||||
#*******************************************#
|
||||
#*******************************************#
|
||||
#*******************************************#
|
||||
#--------------------------------------------
|
||||
# Andra konjugationen; imperativ.
|
||||
#--------------------------------------------
|
||||
# Som springa: spring
|
||||
# Som tämja
|
||||
# Som komma
|
||||
SFX J Y 29
|
||||
SFX J el ler el
|
||||
SFX J el lerna el
|
||||
SFX J el lernas el
|
||||
SFX J el lers el
|
||||
SFX J ot ötter ot
|
||||
SFX J ot ötterna ot
|
||||
SFX J ot ötternas ot
|
||||
SFX J ot ötters ot
|
||||
SFX J 0 ter [^o]t
|
||||
SFX J 0 terna [^o]t
|
||||
SFX J 0 ternas [^o]t
|
||||
SFX J 0 ters [^o]t
|
||||
SFX J and änder and
|
||||
SFX J and änderna and
|
||||
SFX J and ändernas and
|
||||
SFX J and änders and
|
||||
SFX J 0 na r
|
||||
SFX J 0 nas r
|
||||
SFX J e na re
|
||||
SFX J e nas re
|
||||
SFX J um et um
|
||||
SFX J um ets um
|
||||
SFX J um er um
|
||||
SFX J um erna um
|
||||
SFX J um ernas um
|
||||
SFX J um ers um
|
||||
SFX J a 0 [^m][^m]a
|
||||
SFX J a 0 m[^m]a
|
||||
SFX J ma 0 mma
|
||||
|
||||
#--------------------------------------------
|
||||
# Andra konjugationen.
|
||||
#--------------------------------------------
|
||||
#***********************
|
||||
# presens:
|
||||
#***********************
|
||||
# Som köpa: köper
|
||||
# Inte som köra: kör
|
||||
#***********************
|
||||
# imperfekt:
|
||||
#***********************
|
||||
# Som köpa
|
||||
# Som köra
|
||||
# Som tömma
|
||||
# Som förnimma
|
||||
# Som komma
|
||||
# Som värma, döma
|
||||
# Som nämna
|
||||
# Som kunna
|
||||
# Som vina
|
||||
# Som bryna, kröna
|
||||
SFX K Y 61
|
||||
SFX K a er [^r]a
|
||||
SFX K a te [ks]a
|
||||
SFX K a de [gjr]a
|
||||
SFX K ma de [^io]mma
|
||||
SFX K imma am imma
|
||||
SFX K ma 0 omma
|
||||
SFX K a de [^m]ma
|
||||
SFX K a de mna
|
||||
SFX K na de nna
|
||||
SFX K ina en ina
|
||||
SFX K a te [yö]na
|
||||
SFX K a de [^l]la
|
||||
SFX K a de [^aå]lla
|
||||
SFX K alla öll alla
|
||||
SFX K ålla öll ålla
|
||||
SFX K a e [^aeiouyåäö]da
|
||||
SFX K a de [eyåäö]da
|
||||
SFX K ida ed ida
|
||||
SFX K uda öd uda
|
||||
SFX K a te [eäö]ta
|
||||
SFX K a e [^eiuyåäö]ta
|
||||
SFX K ita et ita
|
||||
SFX K yta öt yta
|
||||
SFX K uta öt [^j]uta
|
||||
SFX K juta öt [gk]juta
|
||||
SFX K uta öt [^gk]juta
|
||||
SFX K åta ät åta
|
||||
SFX K a te [^iuy]pa
|
||||
SFX K ipa ep ipa
|
||||
SFX K upa öp upa
|
||||
SFX K ypa öp ypa
|
||||
SFX K iva ev iva
|
||||
SFX K a de [^io]va
|
||||
SFX K a t [^lmndptv]a
|
||||
SFX K a t [^imn][mn]a
|
||||
SFX K ma t [^io]mma
|
||||
SFX K imma ummit imma
|
||||
SFX K a it omma
|
||||
SFX K na t nna
|
||||
SFX K a t mna
|
||||
SFX K a t [^l]la
|
||||
SFX K a t [^aå]lla
|
||||
SFX K a it alla
|
||||
SFX K a it ålla
|
||||
SFX K da t [^aeiouyåäö]da
|
||||
SFX K da tt [aeyåäö]da
|
||||
SFX K a t [äö]ta
|
||||
SFX K a it åta
|
||||
SFX K a t [^iouy]pa
|
||||
SFX K a t [^iouy]va
|
||||
SFX K a it [iou][dnptv]a
|
||||
SFX K ypa upit ypa
|
||||
SFX K yta utit yta
|
||||
SFX K 0 t eta
|
||||
SFX K 0 dd [^almnr]
|
||||
SFX K 0 dda [^almnr]
|
||||
SFX K 0 tt [^almnr]
|
||||
SFX K el le el
|
||||
SFX K 0 me m
|
||||
SFX K en ne en
|
||||
SFX K er re er
|
||||
|
||||
SFX L Y 64
|
||||
SFX L a s [^m][^ms]a
|
||||
SFX L a s m[^ms]a
|
||||
SFX L a s [^m]ma
|
||||
SFX L ma s mma
|
||||
SFX L a tes [ks]a
|
||||
SFX L a des [gjr]a
|
||||
SFX L ma des mma
|
||||
SFX L a des [^m]ma
|
||||
SFX L a des mna
|
||||
SFX L na des nna
|
||||
SFX L a tes [yö]na
|
||||
SFX L a des [^l]la
|
||||
SFX L a des [^aå]lla
|
||||
SFX L alla ölls alla
|
||||
SFX L ålla ölls ålla
|
||||
SFX L a es [^aeiouyåäö]da
|
||||
SFX L a des [eyåäö]da
|
||||
SFX L ida eds ida
|
||||
SFX L uda öds uda
|
||||
SFX L a tes [eäö]ta
|
||||
SFX L a es [^eiuyåäö]ta
|
||||
SFX L ita ets ita
|
||||
SFX L yta öts yta
|
||||
SFX L uta öts [^j]uta
|
||||
SFX L juta öts [gk]juta
|
||||
SFX L uta öts [^gk]juta
|
||||
SFX L åta äts åta
|
||||
SFX L a tes [^iuy]pa
|
||||
SFX L ipa eps ipa
|
||||
SFX L upa öps upa
|
||||
SFX L ypa öps ypa
|
||||
SFX L iva evs iva
|
||||
SFX L a des [^io]va
|
||||
SFX L a ts [^lmndptv]a
|
||||
SFX L a ts [^mn][mn]a
|
||||
SFX L ma ts mma
|
||||
SFX L na ts nna
|
||||
SFX L a ts mna
|
||||
SFX L a ts [^l]la
|
||||
SFX L a ts [^aå]lla
|
||||
SFX L a its alla
|
||||
SFX L a its ålla
|
||||
SFX L da ts [^aeiouyåäö]da
|
||||
SFX L da tts [aeyåäö]da
|
||||
SFX L a ts [äö]ta
|
||||
SFX L a its åta
|
||||
SFX L a ts [^iouy]pa
|
||||
SFX L a ts [^iouy]va
|
||||
SFX L a its [iou][dptv]a
|
||||
SFX L ypa upits ypa
|
||||
SFX L yta utits yta
|
||||
SFX L 0 ende [eiouyåäö]
|
||||
SFX L el lare el
|
||||
SFX L el last el
|
||||
SFX L el laste el
|
||||
SFX L en nare en
|
||||
SFX L en nast en
|
||||
SFX L en naste en
|
||||
SFX L er rare er
|
||||
SFX L er rast er
|
||||
SFX L er raste er
|
||||
SFX L 0 mare m
|
||||
SFX L 0 mast m
|
||||
SFX L 0 maste m
|
||||
|
||||
SFX M Y 31
|
||||
SFX M 0 de a
|
||||
SFX M 0 t a
|
||||
SFX M 0 r a
|
||||
SFX M 0 dde [oyä]
|
||||
SFX M 0 tt [eoyäö]
|
||||
SFX M 0 r [eioyåäö]
|
||||
SFX M e ad be
|
||||
SFX M e av ge
|
||||
SFX M e og le
|
||||
SFX M e åg se
|
||||
SFX M 0 dde [^bgls]e
|
||||
SFX M i ev i
|
||||
SFX M å ick [fg]å
|
||||
SFX M 0 dde [^s]lå
|
||||
SFX M å og slå
|
||||
SFX M å od tå
|
||||
SFX M 0 dde [^fglt]å
|
||||
SFX M 0 dde [^d]ö
|
||||
SFX M ö og dö
|
||||
SFX M 0 vit i
|
||||
SFX M 0 tt [^l]å
|
||||
SFX M 0 tt [^s]lå
|
||||
SFX M å agit slå
|
||||
SFX M 0 t [lr]
|
||||
SFX M el la el
|
||||
SFX M er ra er
|
||||
SFX M n t en
|
||||
SFX M en na [^mn]en
|
||||
SFX M en a nen
|
||||
SFX M men na mmen
|
||||
SFX M 0 ma m
|
||||
|
||||
SFX N Y 28
|
||||
SFX N 0 des a
|
||||
SFX N 0 ts a
|
||||
SFX N 0 ddes [oyäö]
|
||||
SFX N e ads be
|
||||
SFX N e avs ge
|
||||
SFX N e ogs le
|
||||
SFX N e ågs se
|
||||
SFX N å icks [fg]å
|
||||
SFX N 0 ddes [^s]lå
|
||||
SFX N å ogs slå
|
||||
SFX N å ods tå
|
||||
SFX N 0 ddes [^fglt]å
|
||||
SFX N 0 tts [oyäö]
|
||||
SFX N 0 tts e
|
||||
SFX N 0 tts [^l]å
|
||||
SFX N 0 tts [^s]lå
|
||||
SFX N å agits slå
|
||||
SFX N s des s
|
||||
SFX N s ts s
|
||||
SFX N 0 mas m
|
||||
SFX N 0 mes m
|
||||
SFX N el las el
|
||||
SFX N el les el
|
||||
SFX N en nas en
|
||||
SFX N en nes en
|
||||
SFX N er ras er
|
||||
SFX N er res er
|
||||
SFX N d t d
|
||||
|
||||
SFX O Y 23
|
||||
SFX O a d [^mn][^mnd]a
|
||||
SFX O a da [^mn][^mnd]a
|
||||
SFX O a d [^mn][mn]a
|
||||
SFX O a da [^mn][mn]a
|
||||
SFX O a d [mn][^mnd]a
|
||||
SFX O a da [mn][^mnd]a
|
||||
SFX O ma d mma
|
||||
SFX O ma da mma
|
||||
SFX O na d nna
|
||||
SFX O na da nna
|
||||
SFX O a d mna
|
||||
SFX O a da mna
|
||||
SFX O 0 t [^dtneiyåöa]
|
||||
SFX O 0 a [^ea]
|
||||
SFX O d t [^adeiouyåäö]d
|
||||
SFX O d tt [aeiouyåäö]d
|
||||
SFX O dd tt dd
|
||||
SFX O 0 t [eiyåäö]t
|
||||
SFX O 0 t [^n]n
|
||||
SFX O n t nn
|
||||
SFX O 0 tt [iyåö]
|
||||
SFX O de t de
|
||||
SFX O e 0 de
|
||||
|
||||
SFX P Y 6
|
||||
SFX P 0 are [^a]
|
||||
SFX P 0 ast [^a]
|
||||
SFX P 0 aste [^a]
|
||||
SFX P 0 d a
|
||||
SFX P 0 de a
|
||||
SFX P 0 t a
|
||||
|
||||
SFX Q Y 2
|
||||
SFX Q 0 e [^a]
|
||||
SFX Q a ta a
|
||||
|
||||
SFX R Y 3
|
||||
SFX R a es a
|
||||
SFX R 0 as [^a]
|
||||
SFX R 0 es [^a]
|
||||
|
||||
SFX T Y 3
|
||||
SFX T 0 iska .
|
||||
SFX T 0 iskt .
|
||||
SFX T 0 isk .
|
||||
|
||||
# Som myra: myr- (stack)
|
||||
# Som förare: förar- (platsen)
|
||||
# Som avgud: avguda- (dyrkan)
|
||||
SFX z N 3
|
||||
SFX z a 0/WXZ a
|
||||
SFX z e 0/WXZ e
|
||||
SFX z 0 a/WXZ [^ae]
|
||||
|
||||
SFX g N 3
|
||||
SFX g a 0/WUZ a
|
||||
SFX g e 0/WUZ e
|
||||
SFX g 0 a/WUZ [^ae]
|
||||
|
||||
# Som ränta: ränte- (höjning)
|
||||
# Som tjänst: tjänste- (man)
|
||||
SFX y N 2
|
||||
SFX y a e/WXZ a
|
||||
SFX y 0 e/WXZ [^a]
|
||||
|
||||
SFX h N 2
|
||||
SFX h a e/WUZ a
|
||||
SFX h 0 e/WUZ [^a]
|
||||
|
||||
# Som vecka: vecko- (dag)
|
||||
# Som psyke: psyko- (analys)
|
||||
# Som land: lant- (brukare)
|
||||
SFX x N 3
|
||||
SFX x a o/WXZ a
|
||||
SFX x e o/WXZ e
|
||||
SFX x d t/WXZ d
|
||||
|
||||
# Som vara: varu- (hus)
|
||||
# Som maximum: maximi- (gräns)
|
||||
SFX w N 2
|
||||
SFX w a u/WXZ a
|
||||
SFX w um i/WXZ um
|
||||
|
||||
# Som pepparkaka: pepparkaks- (hus)
|
||||
# Som yrke: yrkes- (man)
|
||||
# Som förhand: förhands- (granskning)
|
||||
SFX v N 2
|
||||
SFX v a s/WXZ a
|
||||
SFX v 0 s/WXZ [^a]
|
||||
|
||||
SFX f N 2
|
||||
SFX f a s/WUZ a
|
||||
SFX f 0 s/WUZ [^a]
|
||||
|
||||
# Som hyra: hyres- (gäst)
|
||||
# Som säd: sädes- (fält)
|
||||
# Som ansikte: ansikts- (uttryck)
|
||||
SFX u N 3
|
||||
SFX u a es/WXZ a
|
||||
SFX u e s/WXZ e
|
||||
SFX u 0 es/WXZ [^ae]
|
||||
|
||||
SFX i N 3
|
||||
SFX i a es/WUZ a
|
||||
SFX i e s/WUZ e
|
||||
SFX i 0 es/WUZ [^ae]
|
||||
|
||||
# Som tavla: tavel- (försäljare)
|
||||
# Som stämma: stäm- (gaffel)
|
||||
# Som timme: tim- (lön)
|
||||
# Som siffra: siffer- (kombination)
|
||||
# Som förälder: föräldra- (möte)
|
||||
# Som äpple: äppel- (must)
|
||||
# Som gymnasium: gymnasie- (elev)
|
||||
# Som ängel: ängla- (vakt)
|
||||
SFX t N 8
|
||||
SFX t la el/WXZ la
|
||||
SFX t ma 0/WXZ ma
|
||||
SFX t me 0/WXZ me
|
||||
SFX t ra er/WXZ ra
|
||||
SFX t er ra/WXZ er
|
||||
SFX t le el/WXZ le
|
||||
SFX t um e/WXZ um
|
||||
SFX t el la/WXZ el
|
||||
|
||||
SFX s N 1
|
||||
SFX s 0 0/WX .
|
||||
|
||||
SFX r N 1
|
||||
SFX r 0 -/WX .
|
||||
72372
NodeJsProjects/SpellChecker/Dictionaries/sv_SE/sv_SE.dic
Normal file
72372
NodeJsProjects/SpellChecker/Dictionaries/sv_SE/sv_SE.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,56 @@
|
||||
Svensk ordlista för OpenOffice.org
|
||||
Baserad på Den stora svenska ordlistan
|
||||
|
||||
Denna svenska ordlista för rättstavning underhålls av
|
||||
Göran Andersson <goran@init.se>.
|
||||
Den senaste versionen är tillgänglig på
|
||||
http://extensions.services.openoffice.org/.
|
||||
|
||||
I huvudsak består ordlistan av ord som klassificerats i
|
||||
databasen på http://dsso.se/. Databasen skapades genom att
|
||||
kombinera Göran Anderssons ispell-ordlista (version 1.3) och
|
||||
Tom Westerbergs samling av ett stort antal ord i grundform.
|
||||
|
||||
Om du hittar ett korrekt svenskt ord som saknas i denna ordlista,
|
||||
gå till http://dsso.se/ för att lägga till det.
|
||||
Det kommer då att inkluderas i nästa version av ordlistan.
|
||||
|
||||
************ COPYRIGHT ************
|
||||
|
||||
Copyright © 2003 - 2008 Tom Westerberg <tweg@welho.com> and Göran Andersson <goran@init.se>.
|
||||
|
||||
******* BEGIN LICENSE BLOCK *******
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of The Swedish Dictionary for Spell Checking (i.e. the files
|
||||
* sv.aff and sv.dic) are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is the the DSSO dictionary at http://dsso.se
|
||||
*
|
||||
* The Initial Developer of the Original Code is Göran Andersson.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Tom Westerberg <tweg@welho.com>
|
||||
* Niklas Johansson <sleeping.pillow@gmail.com>
|
||||
*
|
||||
* Alternatively, The Swedish Dictionary may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
******* END LICENSE BLOCK *******
|
||||
40005
NodeJsProjects/SpellChecker/Dictionaries/tr_TR/tr_TR.aff
Normal file
40005
NodeJsProjects/SpellChecker/Dictionaries/tr_TR/tr_TR.aff
Normal file
File diff suppressed because it is too large
Load Diff
177462
NodeJsProjects/SpellChecker/Dictionaries/tr_TR/tr_TR.dic
Normal file
177462
NodeJsProjects/SpellChecker/Dictionaries/tr_TR/tr_TR.dic
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
||||
This is a wordlist based turkish spell checker. Due to the nature of turkish, this approach is not well suited
|
||||
as morphological parser based mechanisms. When high accuracy is needed, such a mechanism should be preferred
|
||||
(eg. zemberek project)
|
||||
|
||||
4494
NodeJsProjects/SpellChecker/Dictionaries/uk_UA/uk_UA.aff
Normal file
4494
NodeJsProjects/SpellChecker/Dictionaries/uk_UA/uk_UA.aff
Normal file
File diff suppressed because it is too large
Load Diff
115708
NodeJsProjects/SpellChecker/Dictionaries/uk_UA/uk_UA.dic
Normal file
115708
NodeJsProjects/SpellChecker/Dictionaries/uk_UA/uk_UA.dic
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,27 @@
|
||||
This is Ukrainian spelling dictionary for myspell & hunspell version 1.6.0.
|
||||
|
||||
This dictionary based on spell-uk project http://ispell-uk.sourceforge.net/
|
||||
|
||||
|
||||
Copyright (C) 1999
|
||||
Vladimir Yakovchuk
|
||||
Oleg Podgurniy
|
||||
|
||||
Copyright (C) 2001
|
||||
Dmytro Kovalyov
|
||||
Maksym Polyakov
|
||||
Andriy Rysin
|
||||
|
||||
Copyright (C) 2002
|
||||
Valentyn Solomko
|
||||
Volodymyr M. Lisivka
|
||||
|
||||
Copyright (C) 2005
|
||||
Andriy Rysin
|
||||
Eugeniy Meshcheryakov
|
||||
Dmytro Kovalyov
|
||||
|
||||
Copyright (C) 2006-2009
|
||||
Andriy Rysin
|
||||
|
||||
This dictionary is licensed under GPL 2.0 or above, LGPL 2.1 or above and MPL (Mozilla Public License) 1.1 licenses.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user