commit
1f37475ae8
|
@ -1,3 +1,11 @@
|
|||
# 1.2.4
|
||||
* Fix IE console issue created in 1.2.3
|
||||
* Allow CI Tests to pass by ignoring timeslider test
|
||||
* Fix broken placeholders in locales
|
||||
* Fix extractPadData script
|
||||
* Fix documentation for checkToken
|
||||
* Fix hitting enter on form in admin/plugins
|
||||
|
||||
# 1.2.3
|
||||
* Fix #1307: Chrome needs console.log to be called on console obj
|
||||
* Fix #1309: We had broken support for node v0.6 in the last release
|
||||
|
|
|
@ -28,7 +28,7 @@ documented codebase makes it easier for developers to improve the code and contr
|
|||
|
||||
|
||||
Etherpad Lite is designed to be easily embeddable and provides a [HTTP API](https://github.com/ether/etherpad-lite/wiki/HTTP-API)
|
||||
that allows your web application to manage pads, users and groups. It is recommended to use the [available client implementations]((https://github.com/ether/etherpad-lite/wiki/HTTP-API-client-libraries) in order to interact with this API. There is also a [jQuery plugin](https://github.com/johnyma22/etherpad-lite-jquery-plugin) that helps you to embed Pads into your website.
|
||||
that allows your web application to manage pads, users and groups. It is recommended to use the [available client implementations](https://github.com/ether/etherpad-lite/wiki/HTTP-API-client-libraries) in order to interact with this API. There is also a [jQuery plugin](https://github.com/johnyma22/etherpad-lite-jquery-plugin) that helps you to embed Pads into your website.
|
||||
There's also a full-featured plugin framework, allowing you to easily add your own features.
|
||||
Finally, Etherpad Lite comes with translations into tons of different languages!
|
||||
|
||||
|
|
|
@ -10,17 +10,34 @@ if(process.argv.length != 3)
|
|||
//get the padID
|
||||
var padId = process.argv[2];
|
||||
|
||||
//initalize the database
|
||||
var log4js = require("log4js");
|
||||
log4js.setGlobalLogLevel("INFO");
|
||||
var async = require("async");
|
||||
var db = require('../node/db/DB');
|
||||
var dirty = require("dirty")(padId + ".db");
|
||||
var padManager;
|
||||
var pad;
|
||||
var db, dirty, padManager, pad;
|
||||
var neededDBValues = ["pad:"+padId];
|
||||
|
||||
var npm = require("../src/node_modules/npm");
|
||||
var async = require("../src/node_modules/async");
|
||||
var log4js = require("../src/node_modules/log4js");
|
||||
log4js.setGlobalLogLevel("INFO");
|
||||
|
||||
async.series([
|
||||
// load npm
|
||||
function(callback) {
|
||||
npm.load({}, function(er) {
|
||||
if(er)
|
||||
{
|
||||
console.error("Could not load NPM: " + er)
|
||||
process.exit(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
callback();
|
||||
}
|
||||
})
|
||||
},
|
||||
// load modules
|
||||
function(callback) {
|
||||
db = require('../src/node/db/DB');
|
||||
dirty = require("../src/node_modules/ueberDB/node_modules/dirty")(padId + ".db");
|
||||
},
|
||||
//intallize the database
|
||||
function (callback)
|
||||
{
|
||||
|
|
|
@ -414,7 +414,7 @@ sends a custom message of type `msg` to the pad
|
|||
#### checkToken()
|
||||
* API >= 1.2
|
||||
|
||||
returns ok when api token is valid
|
||||
returns ok when the current api token is valid
|
||||
|
||||
*Example returns:*
|
||||
* `{"code":0,"message":"ok","data":null}`
|
||||
|
|
|
@ -75,9 +75,9 @@
|
|||
"timeslider.toolbar.authors": "M\u00fc\u0259llifl\u0259r:",
|
||||
"timeslider.toolbar.authorsList": "M\u00fc\u0259llif yoxdur",
|
||||
"timeslider.exportCurrent": "Cari versiyan\u0131 ixrac etm\u0259k kimi:",
|
||||
"timeslider.version": "Versiya {{versiya}}",
|
||||
"timeslider.saved": "Saxlan\u0131ld\u0131 {{ay}} {{g\u00fcn}}, {{il}}",
|
||||
"timeslider.dateformat": "{{ay}}\/{{g\u00fcn}}\/{{il}} {{saat}}:{{d\u0259qiq\u0259}}:{{saniy\u0259}}",
|
||||
"timeslider.version": "Versiya {{version}}",
|
||||
"timeslider.saved": "Saxlan\u0131ld\u0131 {{day}} {{month}}, {{year}}",
|
||||
"timeslider.dateformat": "{{day}} {{month}}, {{year}} {{hours}}:{{minutes}}:{{seconds}}",
|
||||
"timeslider.month.january": "Yanvar",
|
||||
"timeslider.month.february": "Fevral",
|
||||
"timeslider.month.march": "Mart",
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
"pad.chat": "Xat",
|
||||
"timeslider.toolbar.authors": "Autors:",
|
||||
"timeslider.toolbar.authorsList": "No hi ha autors",
|
||||
"timeslider.toolbar.exportlink.title": "Exporta",
|
||||
"timeslider.version": "Versi\u00f3 {{version}}",
|
||||
"timeslider.month.january": "Gener",
|
||||
"timeslider.month.february": "Febrer",
|
||||
"timeslider.month.march": "Mar\u00e7",
|
||||
|
@ -44,6 +46,7 @@
|
|||
"timeslider.month.november": "Novembre",
|
||||
"timeslider.month.december": "Desembre",
|
||||
"pad.userlist.entername": "Introdu\u00efu el vostre nom",
|
||||
"pad.userlist.unnamed": "sense nom",
|
||||
"pad.userlist.guest": "Convidat",
|
||||
"pad.userlist.deny": "Refusa",
|
||||
"pad.userlist.approve": "Aprova",
|
||||
|
|
|
@ -8,20 +8,21 @@
|
|||
"index.newPad": "Pedo newe",
|
||||
"pad.toolbar.bold.title": "Qal\u0131n (Ctrl-B)",
|
||||
"pad.toolbar.italic.title": "Nam\u0131te (Ctrl-I)",
|
||||
"pad.toolbar.underline.title": "B\u0131n xizkerden (Ctrl-U)",
|
||||
"pad.toolbar.strikethrough.title": "Ser\u00ea c\u0131 xiz\u0131n",
|
||||
"pad.toolbar.ol.title": "Lista ratnayi",
|
||||
"pad.toolbar.indent.title": "Serinya sat\u0131r",
|
||||
"pad.toolbar.underline.title": "B\u0131nxet\u0131n (Ctrl-U)",
|
||||
"pad.toolbar.strikethrough.title": "Serxet\u0131n",
|
||||
"pad.toolbar.ol.title": "Lista r\u00eazkerdiye",
|
||||
"pad.toolbar.ul.title": "Lista r\u00eazn\u00eakerdiye",
|
||||
"pad.toolbar.indent.title": "Ser\u00ea r\u00eaze",
|
||||
"pad.toolbar.unindent.title": "V\u0131cente",
|
||||
"pad.toolbar.undo.title": "Peyser b\u00ea (Ctrl-Z)",
|
||||
"pad.toolbar.redo.title": "Ver \u015fo (Ctrl-Y)",
|
||||
"pad.toolbar.clearAuthorship.title": "Pak Reng\u00ea Nu\u015fto\u011fey",
|
||||
"pad.toolbar.undo.title": "Meke (Ctrl-Z)",
|
||||
"pad.toolbar.redo.title": "F\u0131na b\u0131ke (Ctrl-Y)",
|
||||
"pad.toolbar.clearAuthorship.title": "Reng\u00ea Nu\u015fto\u011fi\u00ea Ar\u0131stey",
|
||||
"pad.toolbar.timeslider.title": "\u011e\u0131zag\u00ea zemani",
|
||||
"pad.toolbar.savedRevision.title": "Rewizyon\u00ea Qeydbiyayey",
|
||||
"pad.toolbar.settings.title": "Sazkerd\u0131\u015fi",
|
||||
"pad.toolbar.embed.title": "Na ped degusnayiya",
|
||||
"pad.colorpicker.save": "Qeyd ke",
|
||||
"pad.colorpicker.cancel": "B\u0131terkne",
|
||||
"pad.colorpicker.cancel": "B\u0131texelne",
|
||||
"pad.loading": "Bar beno...",
|
||||
"pad.settings.padSettings": "Sazkerd\u0131\u015f\u00ea Pedi",
|
||||
"pad.settings.myView": "Asay\u0131\u015f\u00ea m\u0131",
|
||||
|
@ -39,7 +40,7 @@
|
|||
"pad.importExport.exportpdf": "PDF",
|
||||
"pad.importExport.exportopen": "ODF (Open Document Format)",
|
||||
"pad.importExport.exportdokuwiki": "DokuWiki",
|
||||
"pad.modals.connected": "Gredeya",
|
||||
"pad.modals.connected": "G\u0131rediya.",
|
||||
"pad.modals.unauth": "Selahiyetdar niyo",
|
||||
"pad.modals.looping": "B\u00eag\u0131rey\u0131n.",
|
||||
"pad.modals.initsocketfail": "N\u00earesney\u00eano ciyageyro\u011fi.",
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
"authors": [
|
||||
"Evropi",
|
||||
"Glavkos",
|
||||
"Monopatis"
|
||||
"Monopatis",
|
||||
"Protnet"
|
||||
]
|
||||
},
|
||||
"index.newPad": "\u039d\u03ad\u03bf Pad",
|
||||
|
@ -86,9 +87,9 @@
|
|||
"timeslider.toolbar.authorsList": "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1\u03c2 \u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2",
|
||||
"timeslider.toolbar.exportlink.title": "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae",
|
||||
"timeslider.exportCurrent": "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c9\u03c2:",
|
||||
"timeslider.version": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {{\u03ad\u03ba\u03b4\u03bf\u03c3\u03b7}}",
|
||||
"timeslider.saved": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2 {{\u03bc\u03ae\u03bd\u03b1\u03c2}} {{\u03b7\u03bc\u03ad\u03c1\u03b1}}, {{\u03ad\u03c4\u03bf\u03c2}}",
|
||||
"timeslider.dateformat": "{{\u03bc\u03ae\u03bd\u03b1\u03c2}}\/{{\u03b7\u03bc\u03ad\u03c1\u03b1}}\/{{\u03ad\u03c4\u03bf\u03c2}} {{\u03ce\u03c1\u03b5\u03c2}}:{{\u03bb\u03b5\u03c0\u03c4\u03ac}}:{{\u03b4\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03b1}}",
|
||||
"timeslider.version": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {{version}}",
|
||||
"timeslider.saved": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf\u03c2 {{month}} {{day}}, {{year}}",
|
||||
"timeslider.dateformat": "{{month}} {{day}}, {{year}} {{hours}}:{{minutes}}:{{seconds}}",
|
||||
"timeslider.month.january": "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
|
||||
"timeslider.month.february": "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
|
||||
"timeslider.month.march": "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2",
|
||||
|
@ -103,6 +104,7 @@
|
|||
"timeslider.month.december": "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
|
||||
"pad.savedrevs.marked": "\u0391\u03c5\u03c4\u03ae \u03b7 \u03b1\u03bd\u03b1\u03b8\u03b5\u03ce\u03c1\u03b7\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03ac\u03bd\u03b8\u03b7\u03ba\u03b5 \u03c9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b1\u03bd\u03b1\u03b8\u03b5\u03ce\u03c1\u03b7\u03c3\u03b7",
|
||||
"pad.userlist.entername": "\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2",
|
||||
"pad.userlist.unnamed": "\u03b1\u03bd\u03ce\u03bd\u03c5\u03bc\u03bf",
|
||||
"pad.userlist.guest": "\u0395\u03c0\u03b9\u03c3\u03ba\u03ad\u03c0\u03c4\u03b7\u03c2",
|
||||
"pad.userlist.deny": "\u0386\u03c1\u03bd\u03b7\u03c3\u03b7",
|
||||
"pad.userlist.approve": "\u0388\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7",
|
||||
|
@ -114,5 +116,5 @@
|
|||
"pad.impexp.uploadFailed": "\u0397 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac",
|
||||
"pad.impexp.importfailed": "\u0397 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5",
|
||||
"pad.impexp.copypaste": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03c4\u03b5",
|
||||
"pad.impexp.exportdisabled": "\u0397 \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03c4\u03cd\u03c0\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {{type}} \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af. \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03cc\u03c2 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2."
|
||||
"pad.impexp.exportdisabled": "\u0397 \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae {{type}} \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af. \u0395\u03c0\u03b9\u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03cc\u03c2 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2."
|
||||
}
|
|
@ -1,92 +1,118 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": {
|
||||
"1": "ZxxZxxZ"
|
||||
"0": "BMRG14",
|
||||
"2": "ZxxZxxZ"
|
||||
}
|
||||
},
|
||||
"index.newPad": "\u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u062c\u062f\u06cc\u062f",
|
||||
"index.createOpenPad": "\u06cc\u0627 \u0627\u06cc\u062c\u0627\u062f\/\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u067e\u062f \u0628\u0627 \u0646\u0627\u0645:",
|
||||
"index.newPad": "\u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u062a\u0627\u0632\u0647",
|
||||
"index.createOpenPad": "\u06cc\u0627 \u0627\u06cc\u062c\u0627\u062f\/\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u06cc\u06a9 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0628\u0627 \u0646\u0627\u0645:",
|
||||
"pad.toolbar.bold.title": "\u067e\u0631\u0631\u0646\u06af (Ctrl-B)",
|
||||
"pad.toolbar.italic.title": "\u0645\u0648\u0631\u0628 (Ctrl-I)",
|
||||
"pad.toolbar.italic.title": "\u06a9\u062c (Ctrl-I)",
|
||||
"pad.toolbar.underline.title": "\u0632\u06cc\u0631\u062e\u0637 (Ctrl-U)",
|
||||
"pad.toolbar.strikethrough.title": "\u062e\u0637\u200c\u062e\u0648\u0631\u062f\u0647",
|
||||
"pad.toolbar.ol.title": "\u0641\u0647\u0631\u0633\u062a \u0645\u0631\u062a\u0628\u200c\u0634\u062f\u0647",
|
||||
"pad.toolbar.ul.title": "\u0641\u0647\u0631\u0633\u062a \u0645\u0631\u062a\u0628\u200c\u0646\u0634\u062f\u0647",
|
||||
"pad.toolbar.strikethrough.title": "\u062e\u0637 \u062e\u0648\u0631\u062f\u0647",
|
||||
"pad.toolbar.ol.title": "\u0641\u0647\u0631\u0633\u062a \u0645\u0631\u062a\u0628 \u0634\u062f\u0647",
|
||||
"pad.toolbar.ul.title": "\u0641\u0647\u0631\u0633\u062a \u0645\u0631\u062a\u0628 \u0646\u0634\u062f\u0647",
|
||||
"pad.toolbar.indent.title": "\u062a\u0648\u0631\u0641\u062a\u06af\u06cc",
|
||||
"pad.toolbar.unindent.title": "\u0628\u06cc\u0631\u0648\u0646\u200c\u0631\u0641\u062a\u06af\u06cc",
|
||||
"pad.toolbar.unindent.title": "\u0628\u06cc\u0631\u0648\u0646 \u0631\u0641\u062a\u06af\u06cc",
|
||||
"pad.toolbar.undo.title": "\u0628\u0627\u0637\u0644\u200c\u06a9\u0631\u062f\u0646 (Ctrl-Z)",
|
||||
"pad.toolbar.redo.title": "\u0627\u0632 \u0646\u0648 (Ctrl-Y)",
|
||||
"pad.toolbar.clearAuthorship.title": "\u067e\u0627\u06a9\u200c\u06a9\u0631\u062f\u0646 \u0631\u0646\u06af\u200c\u0647\u0627\u06cc \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u06cc",
|
||||
"pad.toolbar.clearAuthorship.title": "\u067e\u0627\u06a9 \u06a9\u0631\u062f\u0646 \u0631\u0646\u06af\u200c\u0647\u0627\u06cc \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u06cc",
|
||||
"pad.toolbar.import_export.title": "\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc\/\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0627\u0632\/\u0628\u0647 \u0642\u0627\u0644\u0628\u200c\u0647\u0627\u06cc \u0645\u062e\u062a\u0644\u0641",
|
||||
"pad.toolbar.timeslider.title": "\u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u0632\u0645\u0627\u0646",
|
||||
"pad.toolbar.savedRevision.title": "\u0646\u0633\u062e\u0647\u200c\u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u200c\u0634\u062f\u0647",
|
||||
"pad.toolbar.savedRevision.title": "\u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc\u200c\u0647\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647",
|
||||
"pad.toolbar.settings.title": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a",
|
||||
"pad.toolbar.embed.title": "\u062c\u0627\u0633\u0627\u0632\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"pad.toolbar.showusers.title": "\u0646\u0645\u0627\u06cc\u0634 \u06a9\u0627\u0631\u0628\u0631\u0627\u0646 \u062f\u0631 \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"pad.colorpicker.save": "\u0630\u062e\u06cc\u0631\u0647",
|
||||
"pad.colorpicker.cancel": "\u0644\u063a\u0648",
|
||||
"pad.loading": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc...",
|
||||
"pad.loading": "\u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc...",
|
||||
"pad.passwordRequired": "\u0628\u0631\u0627\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0646\u06cc\u0627\u0632 \u0628\u0647 \u06cc\u06a9 \u06af\u0630\u0631\u0648\u0627\u0698\u0647 \u062f\u0627\u0631\u06cc\u062f",
|
||||
"pad.permissionDenied": "\u0634\u0645\u0627 \u0627\u062c\u0627\u0632\u0647\u200c\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0631\u0627 \u0646\u062f\u0627\u0631\u06cc\u062f",
|
||||
"pad.wrongPassword": "\u06af\u0630\u0631\u0648\u0627\u0698\u0647\u200c\u06cc \u0634\u0645\u0627 \u062f\u0631\u0633\u062a \u0646\u06cc\u0633\u062a",
|
||||
"pad.settings.padSettings": "\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"pad.settings.myView": "\u0646\u0645\u0627\u06cc \u0645\u0646",
|
||||
"pad.settings.stickychat": "\u0686\u062a \u0647\u0645\u06cc\u0634\u0647 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0646\u0645\u0627\u06cc\u0634",
|
||||
"pad.settings.stickychat": "\u06af\u0641\u062a\u06af\u0648 \u0647\u0645\u06cc\u0634\u0647 \u0631\u0648\u06cc \u0635\u0641\u062d\u0647 \u0646\u0645\u0627\u06cc\u0634 \u0628\u0627\u0634\u062f",
|
||||
"pad.settings.colorcheck": "\u0631\u0646\u06af\u200c\u0647\u0627\u06cc \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u06cc",
|
||||
"pad.settings.linenocheck": "\u0634\u0645\u0627\u0631\u0647\u0654 \u062e\u0637\u0648\u0637",
|
||||
"pad.settings.linenocheck": "\u0634\u0645\u0627\u0631\u0647\u200c\u06cc \u062e\u0637\u0648\u0637",
|
||||
"pad.settings.fontType": "\u0646\u0648\u0639 \u0642\u0644\u0645:",
|
||||
"pad.settings.fontType.normal": "\u0639\u0627\u062f\u06cc",
|
||||
"pad.settings.fontType.monospaced": "\u0645\u0648\u0646\u0648\u0627\u0633\u067e\u06cc\u0633",
|
||||
"pad.settings.fontType.normal": "\u0633\u0627\u062f\u0647",
|
||||
"pad.settings.fontType.monospaced": "Monospace",
|
||||
"pad.settings.globalView": "\u0646\u0645\u0627\u06cc \u0633\u0631\u0627\u0633\u0631\u06cc",
|
||||
"pad.settings.language": "\u0632\u0628\u0627\u0646:",
|
||||
"pad.importExport.import_export": "\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc\/\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc",
|
||||
"pad.importExport.import": "\u0628\u0631\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0645\u062a\u0646\u06cc \u06cc\u0627 \u0633\u0646\u062f",
|
||||
"pad.importExport.export": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0628\u0647 \u0639\u0646\u0648\u0627\u0646:",
|
||||
"pad.importExport.exporthtml": "\u0627\u0686\u200c\u062a\u06cc\u200c\u0627\u0645\u200c\u0627\u0644",
|
||||
"pad.importExport.exportplain": "\u0645\u062a\u0646\u06cc \u0633\u0627\u062f\u0647",
|
||||
"pad.importExport.exportword": "\u0645\u0627\u06cc\u06a9\u0631\u0648\u0633\u0627\u0641\u062a \u0648\u0631\u062f",
|
||||
"pad.importExport.exportpdf": "\u067e\u06cc\u200c\u062f\u06cc\u200c\u0627\u0641",
|
||||
"pad.importExport.exportopen": "\u0627\u0648\u062f\u06cc\u200c\u0627\u0641 (\u0642\u0627\u0644\u0628 \u0633\u0646\u062f \u0628\u0627\u0632)",
|
||||
"pad.importExport.exportdokuwiki": "\u062f\u0648\u06a9\u0648\u0648\u06cc\u06a9\u06cc (DokuWiki)",
|
||||
"pad.importExport.import": "\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u06cc \u0645\u062a\u0646\u06cc \u06cc\u0627 \u0633\u0646\u062f",
|
||||
"pad.importExport.importSuccessful": "\u0645\u0648\u0641\u0642\u06cc\u062a \u0622\u0645\u06cc\u0632 \u0628\u0648\u062f!",
|
||||
"pad.importExport.export": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0628\u0627 \u0642\u0627\u0644\u0628:",
|
||||
"pad.importExport.exporthtml": "HTML",
|
||||
"pad.importExport.exportplain": "\u0645\u062a\u0646 \u0633\u0627\u062f\u0647",
|
||||
"pad.importExport.exportword": "Microsoft Word",
|
||||
"pad.importExport.exportpdf": "PDF",
|
||||
"pad.importExport.exportopen": "ODF (\u0642\u0627\u0644\u0628 \u0633\u0646\u062f \u0628\u0627\u0632)",
|
||||
"pad.importExport.exportdokuwiki": "DokuWiki",
|
||||
"pad.importExport.abiword.innerHTML": "\u0634\u0645\u0627 \u062a\u0646\u0647\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0632 \u0642\u0627\u0644\u0628 \u0645\u062a\u0646 \u0633\u0627\u062f\u0647 \u06cc\u0627 \u0627\u0686\u200c\u062a\u06cc\u200c\u0627\u0645\u200c\u0627\u0644 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06a9\u0646\u06cc\u062f. \u0628\u0631\u0627\u06cc \u0628\u06cc\u0634\u062a\u0631 \u0634\u062f\u0646 \u0648\u06cc\u0698\u06af\u06cc\u200c\u0647\u0627\u06cc \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u067e\u06cc\u0634\u0631\u0641\u062a\u0647 <a href=\"https:\/\/github.com\/ether\/etherpad-lite\/wiki\/How-to-enable-importing-and-exporting-different-file-formats-in-Ubuntu-or-OpenSuse-or-SLES-with-AbiWord\">AbiWord<\/a> \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f.",
|
||||
"pad.modals.connected": "\u0645\u062a\u0635\u0644 \u0634\u062f.",
|
||||
"pad.modals.reconnecting": "\u0627\u062a\u0635\u0627\u0644 \u0645\u062c\u062f\u062f \u0628\u0647 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0634\u0645\u0627..",
|
||||
"pad.modals.forcereconnect": "\u0627\u062c\u0628\u0627\u0631 \u0628\u0647 \u0627\u062a\u0635\u0627\u0644 \u0645\u062c\u062f\u062f",
|
||||
"pad.modals.userdup.explanation": "\u0628\u0647 \u0646\u0638\u0631 \u0645\u06cc\u200c\u0631\u0633\u062f \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u062f\u0631 \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u067e\u0646\u062c\u0631\u0647\u0654 \u0645\u0631\u0648\u0631\u06af\u0631 \u0627\u0632 \u0627\u06cc\u0646 \u0631\u0627\u06cc\u0627\u0646\u0647 \u0628\u0627\u0632 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.userdup.advice": "\u0627\u062a\u0635\u0627\u0644 \u0645\u062c\u062f\u062f \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u067e\u0646\u062c\u0631\u0647",
|
||||
"pad.modals.reconnecting": "\u062f\u0631 \u062d\u0627\u0644 \u0627\u062a\u0635\u0627\u0644 \u062f\u0648\u0628\u0627\u0631\u0647 \u0628\u0647 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u0634\u0645\u0627..",
|
||||
"pad.modals.forcereconnect": "\u0648\u0627\u062f\u0627\u0634\u062a\u0646 \u0628\u0647 \u0627\u062a\u0635\u0627\u0644 \u062f\u0648\u0628\u0627\u0631\u0647",
|
||||
"pad.modals.userdup": "\u062f\u0631 \u067e\u0646\u062c\u0631\u0647\u200c\u0627\u06cc \u062f\u06cc\u06af\u0631 \u0628\u0627\u0632 \u0634\u062f",
|
||||
"pad.modals.userdup.explanation": "\u06af\u0645\u0627\u0646 \u0645\u06cc\u200c\u0631\u0648\u062f \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u062f\u0631 \u0628\u06cc\u0634 \u0627\u0632 \u06cc\u06a9 \u067e\u0646\u062c\u0631\u0647\u200c\u06cc \u0645\u0631\u0648\u0631\u06af\u0631 \u0628\u0627\u0632 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.userdup.advice": "\u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0627\u06cc\u0646 \u067e\u0646\u062c\u0631\u0647 \u062f\u0648\u0628\u0627\u0631\u0647 \u0648\u0635\u0644 \u0634\u0648\u06cc\u062f.",
|
||||
"pad.modals.unauth": "\u0645\u062c\u0627\u0632 \u0646\u06cc\u0633\u062a",
|
||||
"pad.modals.unauth.explanation": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0634\u0645\u0627 \u062f\u0631 \u062d\u06cc\u0646 \u0645\u0634\u0627\u0647\u062f\u0647\u0654 \u0627\u06cc\u0646 \u0635\u0641\u062d\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u0627\u0641\u062a\u0647\u200c\u0627\u0633\u062a.\n\u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f \u062f\u0648\u0628\u0627\u0631\u0647 \u0645\u062a\u0635\u0644 \u0634\u0648\u06cc\u062f.",
|
||||
"pad.modals.unauth.explanation": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0634\u0645\u0627 \u062f\u0631 \u062d\u06cc\u0646 \u0645\u0634\u0627\u0647\u062f\u0647\u200c\u06cc \u0627\u06cc\u0646 \u0628\u0631\u06af\u0647 \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u0627\u0641\u062a\u0647\u200c\u0627\u0633\u062a. \u062f\u0648\u0628\u0627\u0631\u0647 \u0645\u062a\u0635\u0644 \u0634\u0648\u06cc\u062f.",
|
||||
"pad.modals.looping": "\u0627\u062a\u0635\u0627\u0644 \u0642\u0637\u0639 \u0634\u062f.",
|
||||
"pad.modals.looping.explanation": "\u0645\u0634\u06a9\u0644\u0627\u062a\u06cc \u0627\u0631\u062a\u0628\u0627\u0637\u06cc \u0628\u0627 \u0633\u0631\u0648\u0631 \u0647\u0645\u06af\u0627\u0645\u200c\u0633\u0627\u0632\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f.",
|
||||
"pad.modals.looping.cause": "\u0634\u0627\u06cc\u062f \u0634\u0645\u0627 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u06cc\u06a9 \u0641\u0627\u06cc\u0631\u0648\u0627\u0644 \u06cc\u0627 \u067e\u0631\u0648\u06a9\u0633\u06cc \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631 \u0645\u062a\u0635\u0644 \u0634\u062f\u0647\u200c\u0627\u06cc\u062f.",
|
||||
"pad.modals.initsocketfail": "\u0633\u0631\u0648\u0631 \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u062f\u0633\u062a\u0631\u0633\u06cc \u0627\u0633\u062a.",
|
||||
"pad.modals.initsocketfail.explanation": "\u0646\u062a\u0648\u0627\u0646\u0633\u062a \u0628\u0647 \u0633\u0631\u0648\u0631 \u0647\u0645\u06af\u0627\u0645\u200c\u0633\u0627\u0632\u06cc \u0645\u062a\u0635\u0644 \u0634\u0648\u062f.",
|
||||
"pad.modals.initsocketfail.cause": "\u0627\u06cc\u0646 \u0627\u062d\u062a\u0645\u0627\u0644\u0627\u064b \u0628\u0647 \u062e\u0627\u0637\u0631 \u0645\u0634\u06a9\u0644\u06cc \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631 \u06cc\u0627 \u0627\u062a\u0635\u0627\u0644 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc\u200c\u062a\u0627\u0646 \u0627\u0633\u062a.",
|
||||
"pad.modals.initsocketfail": "\u0633\u0631\u0648\u0631 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0646\u06cc\u0633\u062a.",
|
||||
"pad.modals.initsocketfail.explanation": "\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0628\u0647 \u0633\u0631\u0648\u0631 \u0647\u0645\u06af\u0627\u0645 \u0633\u0627\u0632\u06cc \u0648\u0635\u0644 \u0634\u062f.",
|
||||
"pad.modals.initsocketfail.cause": "\u0634\u0627\u06cc\u062f \u0627\u06cc\u0646 \u0628\u0647 \u062e\u0627\u0637\u0631 \u0645\u0634\u06a9\u0644\u06cc \u062f\u0631 \u0645\u0631\u0648\u0631\u06af\u0631 \u06cc\u0627 \u0627\u062a\u0635\u0627\u0644 \u0627\u06cc\u0646\u062a\u0631\u0646\u062a\u06cc \u0634\u0645\u0627 \u0628\u0627\u0634\u062f.",
|
||||
"pad.modals.slowcommit": "\u0627\u062a\u0635\u0627\u0644 \u0642\u0637\u0639 \u0634\u062f.",
|
||||
"pad.modals.slowcommit.explanation": "\u0633\u0631\u0648\u0631 \u067e\u0627\u0633\u062e \u0646\u0645\u06cc\u200c\u062f\u0647\u062f.",
|
||||
"pad.modals.slowcommit.cause": "\u0627\u06cc\u0646 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0647 \u062e\u0627\u0637\u0631 \u0645\u0634\u06a9\u0644\u0627\u062a\u06cc \u062f\u0631 \u0627\u062a\u0635\u0627\u0644 \u0628\u0647 \u0634\u0628\u06a9\u0647 \u0628\u0627\u0634\u062f.",
|
||||
"pad.modals.deleted": "\u062d\u0630\u0641 \u0634\u062f.",
|
||||
"pad.modals.deleted.explanation": "\u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u062d\u0630\u0641 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.deleted": "\u067e\u0627\u06a9 \u0634\u062f.",
|
||||
"pad.modals.deleted.explanation": "\u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a \u067e\u0627\u06a9 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.disconnected": "\u0627\u062a\u0635\u0627\u0644 \u0634\u0645\u0627 \u0642\u0637\u0639 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.disconnected.explanation": "\u0627\u062a\u0635\u0627\u0644 \u0628\u0647 \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.",
|
||||
"pad.modals.disconnected.cause": "\u0633\u0631\u0648\u0631 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u063a\u06cc\u0631 \u0642\u0627\u0628\u0644 \u062f\u0633\u062a\u0631\u0633 \u0628\u0627\u0634\u062f. \u0627\u06af\u0631 \u0627\u06cc\u0646 \u0645\u0634\u06a9\u0644 \u0628\u0627\u0632 \u0647\u0645 \u0631\u062e \u062f\u0627\u062f \u0644\u0637\u0641\u0627\u064b \u0628\u0647 \u0645\u0627 \u0627\u0637\u0644\u0627\u0639 \u062f\u0647\u06cc\u062f.",
|
||||
"pad.share": "\u0628\u0647\u200c\u0627\u0634\u062a\u0631\u0627\u06a9\u200c\u06af\u0630\u0627\u0631\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"pad.modals.disconnected.cause": "\u0633\u0631\u0648\u0631 \u0634\u0627\u06cc\u062f \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0646\u0628\u0627\u0634\u062f. \u0627\u06af\u0631 \u0627\u06cc\u0646 \u0645\u0634\u06a9\u0644 \u0628\u0627\u0632 \u0647\u0645 \u0631\u062e \u062f\u0627\u062f \u0645\u0627 \u0631\u0627 \u0622\u06af\u0627\u0647 \u0633\u0627\u0632\u06cc\u062f.",
|
||||
"pad.share": "\u0628\u0647 \u0627\u0634\u062a\u0631\u0627\u06a9 \u06af\u0630\u0627\u0631\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"pad.share.readonly": "\u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc",
|
||||
"pad.share.link": "\u067e\u06cc\u0648\u0646\u062f",
|
||||
"pad.share.emebdcode": "\u062c\u0627\u0633\u0627\u0632\u06cc \u0646\u0634\u0627\u0646\u06cc",
|
||||
"pad.chat": "\u0686\u062a",
|
||||
"pad.chat.title": "\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0686\u062a \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"timeslider.pageTitle": "{{appTitle}} \u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u0632\u0645\u0627\u0646",
|
||||
"pad.chat": "\u06af\u0641\u062a\u06af\u0648",
|
||||
"pad.chat.title": "\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u06af\u0641\u062a\u06af\u0648 \u0628\u0631\u0627\u06cc \u0627\u06cc\u0646 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"timeslider.pageTitle": "\u0627\u0633\u0644\u0627\u06cc\u062f\u0631 \u0632\u0645\u0627\u0646 {{appTitle}}",
|
||||
"timeslider.toolbar.returnbutton": "\u0628\u0627\u0632\u06af\u0634\u062a \u0628\u0647 \u062f\u0641\u062a\u0631\u0686\u0647 \u06cc\u0627\u062f\u062f\u0627\u0634\u062a",
|
||||
"timeslider.toolbar.authors": "\u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u0627\u0646:",
|
||||
"timeslider.toolbar.authorsList": "\u0628\u062f\u0648\u0646 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647",
|
||||
"timeslider.exportCurrent": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0646\u0633\u062e\u0647\u0654 \u06a9\u0646\u0648\u0646\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646:",
|
||||
"timeslider.toolbar.exportlink.title": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc",
|
||||
"timeslider.exportCurrent": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0646\u06af\u0627\u0631\u0634 \u06a9\u0646\u0648\u0646\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646:",
|
||||
"timeslider.version": "\u0646\u06af\u0627\u0631\u0634 {{version}}",
|
||||
"timeslider.saved": "{{month}} {{day}}\u060c {{year}} \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f",
|
||||
"timeslider.dateformat": "{{month}}\/{{day}}\/{{year}} {{hours}}:{{minutes}}:{{seconds}}",
|
||||
"timeslider.month.january": "\u0698\u0627\u0646\u0648\u06cc\u0647",
|
||||
"timeslider.month.february": "\u0641\u0648\u0631\u06cc\u0647",
|
||||
"timeslider.month.march": "\u0645\u0627\u0631\u0633",
|
||||
"timeslider.month.april": "\u0622\u0648\u0631\u06cc\u0644",
|
||||
"timeslider.month.may": "\u0645\u0647",
|
||||
"timeslider.month.february": "\u0641\u0628\u0631\u06cc\u0647",
|
||||
"timeslider.month.march": "\u0645\u0627\u0631\u0686",
|
||||
"timeslider.month.april": "\u0622\u067e\u0631\u06cc\u0644",
|
||||
"timeslider.month.may": "\u0645\u06cc",
|
||||
"timeslider.month.june": "\u0698\u0648\u0626\u0646",
|
||||
"timeslider.month.july": "\u0698\u0648\u0626\u06cc\u0647",
|
||||
"timeslider.month.august": "\u0627\u0648\u062a",
|
||||
"timeslider.month.july": "\u062c\u0648\u0644\u0627\u06cc",
|
||||
"timeslider.month.august": "\u0622\u06af\u0648\u0633\u062a",
|
||||
"timeslider.month.september": "\u0633\u067e\u062a\u0627\u0645\u0628\u0631",
|
||||
"timeslider.month.october": "\u0627\u06a9\u062a\u0628\u0631",
|
||||
"timeslider.month.november": "\u0646\u0648\u0627\u0645\u0628\u0631",
|
||||
"timeslider.month.december": "\u062f\u0633\u0627\u0645\u0628\u0631"
|
||||
"timeslider.month.december": "\u062f\u0633\u0627\u0645\u0628\u0631",
|
||||
"pad.savedrevs.marked": "\u0627\u06cc\u0646 \u0628\u0627\u0632\u0646\u0648\u06cc\u0633\u06cc \u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0630\u062e\u06cc\u0631\u0647 \u0634\u062f\u0647 \u0639\u0644\u0627\u0645\u062a\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f",
|
||||
"pad.userlist.entername": "\u0646\u0627\u0645 \u062e\u0648\u062f \u0631\u0627 \u0628\u0646\u0648\u06cc\u0633\u06cc\u062f",
|
||||
"pad.userlist.unnamed": "\u0628\u062f\u0648\u0646 \u0646\u0627\u0645",
|
||||
"pad.userlist.guest": "\u0645\u0647\u0645\u0627\u0646",
|
||||
"pad.userlist.deny": "\u0631\u062f \u06a9\u0631\u062f\u0646",
|
||||
"pad.userlist.approve": "\u067e\u0630\u06cc\u0631\u0641\u062a\u0646",
|
||||
"pad.editbar.clearcolors": "\u0631\u0646\u06af \u0646\u0648\u06cc\u0633\u0646\u062f\u06af\u06cc \u0627\u0632 \u0647\u0645\u0647\u200c\u06cc \u0633\u0646\u062f \u067e\u0627\u06a9 \u0634\u0648\u062f\u061f",
|
||||
"pad.impexp.importbutton": "\u0647\u0645 \u0627\u06a9\u0646\u0648\u0646 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06a9\u0646",
|
||||
"pad.impexp.importing": "\u062f\u0631 \u062d\u0627\u0644 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc...",
|
||||
"pad.impexp.confirmimport": "\u0628\u0627 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06cc\u06a9 \u0641\u0627\u06cc\u0644 \u0646\u0648\u0634\u062a\u0647\u200c\u06cc \u06a9\u0646\u0648\u0646\u06cc \u062f\u0641\u062a\u0631\u0686\u0647 \u067e\u0627\u06a9 \u0645\u06cc\u200c\u0634\u0648\u062f. \u0622\u06cc\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u062f\u0627\u0645\u0647 \u062f\u0647\u06cc\u062f\u061f",
|
||||
"pad.impexp.convertFailed": "\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u0645 \u0627\u06cc\u0646 \u0641\u0627\u06cc\u0644 \u0631\u0627 \u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u06a9\u0646\u06cc\u0645. \u062e\u0648\u0627\u0647\u0634\u0645\u0646\u062f\u06cc\u0645 \u0642\u0627\u0644\u0628 \u062f\u06cc\u06af\u0631\u06cc \u0628\u0631\u0627\u06cc \u0633\u0646\u062f\u062a\u0627\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u06cc\u0627 \u0628\u0635\u0648\u0631\u062a \u062f\u0633\u062a\u06cc \u0622\u0646\u0631\u0627 \u06a9\u067e\u06cc \u06a9\u0646\u06cc\u062f",
|
||||
"pad.impexp.uploadFailed": "\u0622\u067e\u0644\u0648\u062f \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f\u060c \u062f\u0648\u0628\u0627\u0631\u0647 \u062a\u0644\u0627\u0634 \u06a9\u0646\u06cc\u062f",
|
||||
"pad.impexp.importfailed": "\u062f\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0627\u0646\u062c\u0627\u0645 \u0646\u0634\u062f",
|
||||
"pad.impexp.copypaste": "\u06a9\u067e\u06cc \u067e\u06cc\u0633\u062a \u06a9\u0646\u06cc\u062f",
|
||||
"pad.impexp.exportdisabled": "\u0628\u0631\u0648\u0646\u200c\u0631\u06cc\u0632\u06cc \u0628\u0627 \u0642\u0627\u0644\u0628 {{type}} \u0627\u0632 \u06a9\u0627\u0631 \u0627\u0641\u062a\u0627\u062f\u0647 \u0627\u0633\u062a. \u0628\u0631\u0627\u06cc \u062c\u0632\u0626\u06cc\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0628\u0627 \u0645\u062f\u06cc\u0631 \u0633\u06cc\u0633\u062a\u0645\u062a\u0627\u0646 \u062a\u0645\u0627\u0633 \u0628\u06af\u06cc\u0631\u06cc\u062f."
|
||||
}
|
|
@ -1,11 +1,12 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Artnay",
|
||||
"Jl",
|
||||
"Nedergard",
|
||||
"Nike"
|
||||
]
|
||||
"authors": {
|
||||
"0": "Artnay",
|
||||
"1": "Jl",
|
||||
"2": "Nedergard",
|
||||
"3": "Nike",
|
||||
"5": "VezonThunder"
|
||||
}
|
||||
},
|
||||
"index.newPad": "Uusi muistio",
|
||||
"index.createOpenPad": "tai luo tai avaa muistio nimell\u00e4:",
|
||||
|
@ -56,6 +57,7 @@
|
|||
"pad.modals.connected": "Yhdistetty.",
|
||||
"pad.modals.reconnecting": "Muodostetaan yhteytt\u00e4 muistioon uudelleen...",
|
||||
"pad.modals.forcereconnect": "Pakota yhdist\u00e4m\u00e4\u00e4n uudelleen",
|
||||
"pad.modals.userdup": "Avattu toisessa ikkunassa",
|
||||
"pad.modals.userdup.explanation": "T\u00e4m\u00e4 muistio vaikuttaa olevan avoinna useammassa eri selainikkunassa t\u00e4ll\u00e4 koneella.",
|
||||
"pad.modals.userdup.advice": "Yhdist\u00e4 uudelleen, jos haluat k\u00e4ytt\u00e4\u00e4 t\u00e4t\u00e4 ikkunaa.",
|
||||
"pad.modals.unauth": "Oikeudet eiv\u00e4t riit\u00e4",
|
||||
|
@ -84,6 +86,7 @@
|
|||
"timeslider.toolbar.returnbutton": "Palaa muistioon",
|
||||
"timeslider.toolbar.authors": "Tekij\u00e4t:",
|
||||
"timeslider.toolbar.authorsList": "Ei tekij\u00f6it\u00e4",
|
||||
"timeslider.toolbar.exportlink.title": "Vie",
|
||||
"timeslider.exportCurrent": "Vie nykyinen versio muodossa:",
|
||||
"timeslider.version": "Versio {{version}}",
|
||||
"timeslider.saved": "Tallennettu {{day}}. {{month}}ta {{year}}",
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"timeslider.exportCurrent": "Exporter la version actuelle en\u00a0:",
|
||||
"timeslider.version": "Version {{version}}",
|
||||
"timeslider.saved": "Enregistr\u00e9 le {{day}} {{month}} {{year}}",
|
||||
"timeslider.dateformat": "{{j}}\/{{mois}}\/{{ann\u00e9e}} {{h}}:{{minutes}}:{{secondes}}",
|
||||
"timeslider.dateformat": "{{day}} {{month}} {{year}} {{hours}}:{{minutes}}:{{secondes}}",
|
||||
"timeslider.month.january": "Janvier",
|
||||
"timeslider.month.february": "F\u00e9vrier",
|
||||
"timeslider.month.march": "Mars",
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Beta16",
|
||||
"Gianfranco",
|
||||
"Muxator"
|
||||
]
|
||||
"authors": {
|
||||
"0": "Beta16",
|
||||
"1": "Gianfranco",
|
||||
"2": "Muxator",
|
||||
"4": "Vituzzu"
|
||||
}
|
||||
},
|
||||
"index.newPad": "Nuovo Pad",
|
||||
"index.createOpenPad": "o creare o aprire un Pad con il nome:",
|
||||
|
@ -55,6 +56,7 @@
|
|||
"pad.modals.connected": "Connesso.",
|
||||
"pad.modals.reconnecting": "Riconnessione al pad in corso...",
|
||||
"pad.modals.forcereconnect": "Forza la riconnessione",
|
||||
"pad.modals.userdup": "Aperto in un'altra finestra",
|
||||
"pad.modals.userdup.explanation": "Questo Pad sembra essere aperto in pi\u00f9 di una finestra del browser su questo computer.",
|
||||
"pad.modals.userdup.advice": "Riconnettiti per utilizzare invece questa finestra.",
|
||||
"pad.modals.unauth": "Non autorizzato",
|
||||
|
@ -83,6 +85,7 @@
|
|||
"timeslider.toolbar.returnbutton": "Ritorna al Pad",
|
||||
"timeslider.toolbar.authors": "Autori:",
|
||||
"timeslider.toolbar.authorsList": "Nessun autore",
|
||||
"timeslider.toolbar.exportlink.title": "esporta",
|
||||
"timeslider.exportCurrent": "Esporta la versione corrente come:",
|
||||
"timeslider.version": "Versione {{version}}",
|
||||
"timeslider.saved": "Salvato {{day}} {{month}} {{year}}",
|
||||
|
|
|
@ -91,5 +91,14 @@
|
|||
"timeslider.month.september": "S\u00e4pt\u00e4mber",
|
||||
"timeslider.month.october": "Oktoober",
|
||||
"timeslider.month.november": "Nov\u00e4mber",
|
||||
"timeslider.month.december": "Dez\u00e4mber"
|
||||
"timeslider.month.december": "Dez\u00e4mber",
|
||||
"pad.userlist.entername": "Jif Dinge Naame en",
|
||||
"pad.userlist.unnamed": "naamelo\u00df\u00df",
|
||||
"pad.userlist.guest": "Ja\u00df\u00df",
|
||||
"pad.userlist.deny": "Aflehne",
|
||||
"pad.impexp.importing": "Ben aam Empotteere …",
|
||||
"pad.impexp.uploadFailed": "Et Huhlaade es don\u00e4vve jejange, bes esu jood un probeer et norr_ens",
|
||||
"pad.impexp.importfailed": "Et Empoteere es don\u00e4vve jejange",
|
||||
"pad.impexp.copypaste": "Bes esu jood un donn et koppeere un enf\u00f6\u00f6je",
|
||||
"pad.impexp.exportdisabled": "Et \u00c4xpotteere em {{type}}-Formmaat es affjeschalldt. De Verwallder vun heh d\u00e4 Sigge k\u00fcnne doh velleisch wiggerh\u00e4llefe."
|
||||
}
|
|
@ -74,7 +74,7 @@
|
|||
"pad.modals.disconnected.cause": "De server is mogelijk niet beschikbaar. Stel alstublieft de beheerder op de hoogte.",
|
||||
"pad.share": "Pad delen",
|
||||
"pad.share.readonly": "Alleen-lezen",
|
||||
"pad.share.link": "Verwijzing",
|
||||
"pad.share.link": "Koppeling",
|
||||
"pad.share.emebdcode": "URL insluiten",
|
||||
"pad.chat": "Chatten",
|
||||
"pad.chat.title": "Chat voor dit pad opnenen",
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": {
|
||||
"1": "WTM",
|
||||
"2": "Woytecr"
|
||||
"0": "Rezonansowy",
|
||||
"2": "WTM",
|
||||
"3": "Woytecr"
|
||||
}
|
||||
},
|
||||
"index.newPad": "Nowy Dokument",
|
||||
|
@ -54,6 +55,7 @@
|
|||
"pad.modals.connected": "Po\u0142\u0105czony.",
|
||||
"pad.modals.reconnecting": "Ponowne \u0142\u0105czenie z dokumentem...",
|
||||
"pad.modals.forcereconnect": "Wymu\u015b ponowne po\u0142\u0105czenie",
|
||||
"pad.modals.userdup": "Otwarty w innym oknie",
|
||||
"pad.modals.userdup.explanation": "Ten dokument prawdopodobnie zosta\u0142 otwarty w wi\u0119cej ni\u017c jednym oknie przegl\u0105darki.",
|
||||
"pad.modals.userdup.advice": "Po\u0142\u0105cz ponownie przy u\u017cyciu tego okna.",
|
||||
"pad.modals.unauth": "Brak autoryzacji",
|
||||
|
@ -82,6 +84,7 @@
|
|||
"timeslider.toolbar.returnbutton": "Powr\u00f3\u0107 do dokumentu",
|
||||
"timeslider.toolbar.authors": "Autorzy:",
|
||||
"timeslider.toolbar.authorsList": "Brak autor\u00f3w",
|
||||
"timeslider.toolbar.exportlink.title": "Eksportuj",
|
||||
"timeslider.exportCurrent": "Eksportuj bie\u017c\u0105c\u0105 wersj\u0119 jako:",
|
||||
"timeslider.version": "Wersja {{version}}",
|
||||
"timeslider.saved": "Zapisano {{day}} {{month}} {{year}}",
|
||||
|
|
|
@ -54,6 +54,7 @@
|
|||
"pad.modals.connected": "\u0417'\u0454\u0434\u043d\u0430\u043d\u043e.",
|
||||
"pad.modals.reconnecting": "\u041f\u0435\u0440\u0435\u043f\u0456\u0434\u043b\u044e\u0447\u0435\u043d\u043d\u044f \u0434\u043e \u0412\u0430\u0448\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443..",
|
||||
"pad.modals.forcereconnect": "\u041f\u0440\u0438\u043c\u0443\u0441\u043e\u0432\u0435 \u043f\u0435\u0440\u0435\u043f\u0456\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044f",
|
||||
"pad.modals.userdup": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u043e \u0443 \u0456\u043d\u0448\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456",
|
||||
"pad.modals.userdup.explanation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442, \u043c\u043e\u0436\u043b\u0438\u0432\u043e, \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u043e \u0431\u0456\u043b\u044c\u0448 \u043d\u0456\u0436 \u0432 \u043e\u0434\u043d\u043e\u043c\u0443 \u0432\u0456\u043a\u043d\u0456 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430 \u043d\u0430 \u0446\u044c\u043e\u043c\u0443 \u043a\u043e\u043c\u043f'\u044e\u0442\u0435\u0440\u0456.",
|
||||
"pad.modals.userdup.advice": "\u041f\u0435\u0440\u0435\u043f\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438\u0441\u044c \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u044e\u0447\u0438 \u0446\u0435 \u0432\u0456\u043a\u043d\u043e.",
|
||||
"pad.modals.unauth": "\u041d\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u043e",
|
||||
|
@ -82,6 +83,7 @@
|
|||
"timeslider.toolbar.returnbutton": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044c \u0434\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443",
|
||||
"timeslider.toolbar.authors": "\u0410\u0432\u0442\u043e\u0440\u0438:",
|
||||
"timeslider.toolbar.authorsList": "\u041d\u0435\u043c\u0430\u0454 \u0430\u0432\u0442\u043e\u0440\u0456\u0432",
|
||||
"timeslider.toolbar.exportlink.title": "\u0415\u043a\u0441\u043f\u043e\u0440\u0442",
|
||||
"timeslider.exportCurrent": "\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0442\u043e\u0447\u043d\u0443 \u0432\u0435\u0440\u0441\u0456\u044e \u044f\u043a:",
|
||||
"timeslider.version": "\u0412\u0435\u0440\u0441\u0456\u044f {{version}}",
|
||||
"timeslider.saved": "\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043e {{month}} {{day}}, {{year}}",
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Dimension",
|
||||
"Hydra",
|
||||
"\u71c3\u7389"
|
||||
]
|
||||
},
|
||||
"index.newPad": "\u65b0\u8bb0\u4e8b\u672c",
|
||||
"pad.toolbar.bold.title": "\u7c97\u4f53\uff08Ctrl-B\uff09",
|
||||
"pad.toolbar.italic.title": "\u659c\u4f53 (Ctrl-I)",
|
||||
|
@ -73,12 +80,5 @@
|
|||
"pad.impexp.importbutton": "\u73b0\u5728\u5bfc\u5165",
|
||||
"pad.impexp.importing": "\u6b63\u5728\u5bfc\u5165...",
|
||||
"pad.impexp.uploadFailed": "\u4e0a\u8f7d\u5931\u8d25\uff0c\u8bf7\u91cd\u8bd5",
|
||||
"pad.impexp.importfailed": "\u5bfc\u5165\u5931\u8d25",
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Dimension",
|
||||
"Hydra",
|
||||
"\u71c3\u7389"
|
||||
]
|
||||
}
|
||||
"pad.impexp.importfailed": "\u5bfc\u5165\u5931\u8d25"
|
||||
}
|
|
@ -549,7 +549,7 @@ exports.sendClientsMessage = function (padID, msg, callback) {
|
|||
}
|
||||
|
||||
/**
|
||||
checkToken() returns ok when api token is valid
|
||||
checkToken() returns ok when the current api token is valid
|
||||
|
||||
Example returns:
|
||||
|
||||
|
|
|
@ -46,5 +46,5 @@
|
|||
"engines" : { "node" : ">=0.6.0",
|
||||
"npm" : ">=1.0"
|
||||
},
|
||||
"version" : "1.2.3"
|
||||
"version" : "1.2.4"
|
||||
}
|
||||
|
|
|
@ -29,9 +29,17 @@ $(document).ready(function () {
|
|||
$("#progress.dialog").hide();
|
||||
});
|
||||
|
||||
$("form").submit(function(){
|
||||
var query = $('.search-results').data('query');
|
||||
query.pattern = $("#search-query").val();
|
||||
query.offset = 0;
|
||||
search();
|
||||
return false;
|
||||
});
|
||||
|
||||
$("#do-search").unbind('click').click(function () {
|
||||
var query = $('.search-results').data('query');
|
||||
query.pattern = $("#search-query")[0].value;
|
||||
query.pattern = $("#search-query").val();
|
||||
query.offset = 0;
|
||||
search();
|
||||
});
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
window.html10n = (function(window, document, undefined) {
|
||||
var console = window.console
|
||||
function interceptConsole(method){
|
||||
var original = console[method]
|
||||
|
||||
if (!console) return function() {}
|
||||
|
||||
var original = console[method]
|
||||
|
||||
// do sneaky stuff
|
||||
if (original.bind){
|
||||
// Do this for normal browsers
|
||||
|
|
|
@ -34,16 +34,16 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
||||
<link rel="shortcut icon" href="<%=settings.faviconPad%>">
|
||||
|
||||
<link rel="localizations" type="application/l10n+json" href="../locales.json" />
|
||||
<script type="text/javascript" src="../static/js/html10n.js"></script>
|
||||
<script type="text/javascript" src="../static/js/l10n.js"></script>
|
||||
|
||||
<% e.begin_block("styles"); %>
|
||||
<link href="../static/css/pad.css" rel="stylesheet">
|
||||
<link href="../static/custom/pad.css" rel="stylesheet">
|
||||
<style title="dynamicsyntax"></style>
|
||||
<% e.end_block(); %>
|
||||
|
||||
<link rel="localizations" type="application/l10n+json" href="../locales.json" />
|
||||
<script type="text/javascript" src="../static/js/html10n.js"></script>
|
||||
<script type="text/javascript" src="../static/js/l10n.js"></script>
|
||||
|
||||
<!-- head and body had been removed intentionally -->
|
||||
|
||||
<% e.begin_block("body"); %>
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
<meta name="robots" content="noindex, nofollow">
|
||||
<link rel="shortcut icon" href="<%=settings.faviconTimeslider%>">
|
||||
|
||||
<link rel="localizations" type="application/l10n+json" href="../../locales.json" />
|
||||
<script type="text/javascript" src="../../static/js/html10n.js"></script>
|
||||
<script type="text/javascript" src="../../static/js/l10n.js"></script>
|
||||
|
||||
<link rel="stylesheet" href="../../static/css/pad.css">
|
||||
<link rel="stylesheet" href="../../static/css/timeslider.css">
|
||||
<link rel="stylesheet" href="../../static/custom/timeslider.css">
|
||||
<style type="text/css" title="dynamicsyntax"></style>
|
||||
|
||||
<link rel="localizations" type="application/l10n+json" href="../../locales.json" />
|
||||
<script type="text/javascript" src="../../static/js/html10n.js"></script>
|
||||
<script type="text/javascript" src="../../static/js/l10n.js"></script>
|
||||
</head>
|
||||
|
||||
<body id="padbody" class="timeslider limwidth">
|
||||
|
|
|
@ -5,7 +5,7 @@ describe("timeslider", function(){
|
|||
this.timeout(6000);
|
||||
});
|
||||
|
||||
it("loads adds a hundred revisions", function(done) {
|
||||
xit("loads adds a hundred revisions", function(done) {
|
||||
var inner$ = helper.padInner$;
|
||||
var chrome$ = helper.padChrome$;
|
||||
|
||||
|
|
Loading…
Reference in New Issue