initial commit
This commit is contained in:
39
public/js/Common/ajax-helper.js
vendored
Normal file
39
public/js/Common/ajax-helper.js
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
var ajax_helper = {
|
||||
ajaxDataCallback: function (url,type, datatype, data, header) {
|
||||
var returnData;
|
||||
$.ajax({
|
||||
async: false,
|
||||
type: type,
|
||||
url: url,
|
||||
dataType: datatype,
|
||||
data: data,
|
||||
headers:header,
|
||||
error: function (jqXHR, textStatus, errorMessage) {
|
||||
console.log("Error: ", errorMessage);
|
||||
},
|
||||
success: function (result) {
|
||||
returnData= result;
|
||||
}
|
||||
});
|
||||
return returnData;
|
||||
},
|
||||
ajaxAsyncDataCallback: function (url,type, datatype, data, header, callback) {
|
||||
$.ajax({
|
||||
async: true,
|
||||
type: type,
|
||||
url: url,
|
||||
dataType: datatype,
|
||||
data: data,
|
||||
headers:header,
|
||||
error: function (jqXhr, textStatus, errorMessage) {
|
||||
console.log("Error: ", errorMessage);
|
||||
},
|
||||
success: function (data, textStatus) {
|
||||
callback(data);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
},
|
||||
|
||||
}
|
||||
299
public/js/Common/common-helper.js
vendored
Normal file
299
public/js/Common/common-helper.js
vendored
Normal file
@@ -0,0 +1,299 @@
|
||||
const common_helper = {
|
||||
globalAjaxRequest : async (url,method,data = {})=>{
|
||||
$('#spinner').show();
|
||||
let response = {}
|
||||
try {
|
||||
response = await $.ajax({
|
||||
type: method,
|
||||
url: url,
|
||||
data: data
|
||||
})
|
||||
if (response) {
|
||||
$('#spinner').hide();
|
||||
}
|
||||
}catch (e) {
|
||||
$('#spinner').hide();
|
||||
}
|
||||
return response;
|
||||
},
|
||||
swalAleart:(html_content,iconclass,width,allowOutsideClick,title,showConfirmButton,showCancelButton,confirmButtonText,cancelButtonText)=> {
|
||||
return Swal.fire({
|
||||
title:title,
|
||||
icon: iconclass ,
|
||||
text:'',
|
||||
width: width,
|
||||
html: html_content,
|
||||
showCloseButton: true,
|
||||
focusConfirm: false,
|
||||
showConfirmButton: showConfirmButton,
|
||||
allowOutsideClick:allowOutsideClick,
|
||||
showCancelButton: showCancelButton,
|
||||
confirmButtonText: confirmButtonText??'Ok',
|
||||
cancelButtonText: cancelButtonText??'No',
|
||||
confirmButtonColor:'#5cb85c',
|
||||
});
|
||||
},
|
||||
|
||||
formValidate:(selector,fields,messages = {})=>{
|
||||
$(selector).validate({
|
||||
rules: fields,
|
||||
messages:messages
|
||||
});
|
||||
},
|
||||
|
||||
youtubePopup:(selector,title='')=> {
|
||||
$(selector).magnificPopup({
|
||||
type: 'iframe',
|
||||
iframe: {
|
||||
markup:
|
||||
'<div class="mfp-iframe-scaler">'+
|
||||
'<div class="mfp-close"></div>'+
|
||||
'<iframe class="mfp-iframe" allow="autoplay; encrypted-media"; ></iframe>'+
|
||||
'<div class="mfp-bottom-bar">'+
|
||||
'<div class="mfp-title" style="margin-top: -520px">'+title+'</div>'+
|
||||
'</div>'+
|
||||
'</div>',
|
||||
patterns: {
|
||||
youtube: {
|
||||
index: 'youtube.com',
|
||||
id: 'v=',
|
||||
src: 'https://www.youtube.com/embed/%id%?rel=0&autoplay=1'
|
||||
}
|
||||
}
|
||||
},
|
||||
}).magnificPopup('open');
|
||||
},
|
||||
|
||||
globalAjaxRequestAsync :async (url,method,data={},callback)=>{
|
||||
await $.ajax({
|
||||
async:true,
|
||||
type: method,
|
||||
url: url,
|
||||
headers: {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')},
|
||||
data: data,
|
||||
beforeSend:()=>{
|
||||
$('#spinner').show();
|
||||
},
|
||||
success:(result)=>{
|
||||
console.log('ajax response',result);
|
||||
return callback(result,data);
|
||||
},
|
||||
error:(jqXHR, textStatus, errorMessage)=> {
|
||||
console.log('ajax error',jqXHR, textStatus, errorMessage);
|
||||
return callback(errorMessage,data);
|
||||
},
|
||||
complete:()=>{
|
||||
console.log('ajax complete');
|
||||
$('#spinner').hide();
|
||||
}
|
||||
});
|
||||
},
|
||||
globalPasswordView :(selector,event)=> {
|
||||
event.preventDefault();
|
||||
let inputSelector=selector+' input';
|
||||
let iconSelector=selector+' i';
|
||||
if ($(inputSelector).attr("type") === "text") {
|
||||
$(inputSelector).attr('type', 'password');
|
||||
$(iconSelector).addClass("fa-eye-slash");
|
||||
$(iconSelector).removeClass("fa-eye");
|
||||
} else if ($(inputSelector).attr("type") === "password") {
|
||||
$(inputSelector).attr('type', 'text');
|
||||
$(iconSelector).removeClass("fa-eye-slash");
|
||||
$(iconSelector).addClass("fa-eye");
|
||||
}
|
||||
},
|
||||
|
||||
globalRadioButtonClickEvent:(selector,checkValue,show_hide_selector)=>{
|
||||
let data = parseInt($(selector).val());
|
||||
let returnData=(data === checkValue);
|
||||
$(show_hide_selector).prop("disabled", !returnData);
|
||||
},
|
||||
|
||||
saveCardCheckUncheck: (element, sibling)=> {
|
||||
$(sibling).prop('checked',false)
|
||||
},
|
||||
datePicker:(selector,
|
||||
format = 'yyyy-mm-dd',
|
||||
todayHighlight = true,
|
||||
startDate = new Date(),
|
||||
endDate = new Date())=>{
|
||||
$(selector).datepicker({
|
||||
autoclose: true,
|
||||
format: format,
|
||||
todayHighlight: todayHighlight,
|
||||
startDate: startDate,
|
||||
endDate: endDate
|
||||
|
||||
});
|
||||
},
|
||||
formatDate:()=> {
|
||||
let d = new Date(),
|
||||
month = '' + (d.getMonth() + 1),
|
||||
day = '' + d.getDate(),
|
||||
year = d.getFullYear();
|
||||
|
||||
if (month.length < 2)
|
||||
month = '0' + month;
|
||||
if (day.length < 2)
|
||||
day = '0' + day;
|
||||
|
||||
return [year, month, day].join('-');
|
||||
},
|
||||
|
||||
//summernote for tnymce editor
|
||||
init_summernote:(selector,placeholder)=>{
|
||||
$(selector).summernote({
|
||||
placeholder: placeholder,
|
||||
toolbar: [
|
||||
[ 'style', [ 'style' ] ],
|
||||
[ 'font', [ 'bold', 'italic', 'underline', 'clear'] ],
|
||||
[ 'fontname', [ 'fontname' ] ],
|
||||
[ 'fontsize', [ 'fontsize' ] ],
|
||||
[ 'color', [ 'color' ] ],
|
||||
[ 'para', [ 'ol', 'ul', 'paragraph', 'height' ] ],
|
||||
[ 'table', [ 'table' ] ],
|
||||
[ 'insert', [ 'link'] ],
|
||||
[ 'view', [ 'undo', 'redo', 'help' ] ]
|
||||
],
|
||||
tabsize: 2,
|
||||
height: 400,
|
||||
callbacks: {
|
||||
// onImageUpload: function(files) {
|
||||
// uploadFile(files[0],item_count);
|
||||
// }
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
allChecked:(e,selector)=>{
|
||||
|
||||
$('input:checkbox').prop('checked',e.checked);
|
||||
|
||||
let checkedData = $("[name='"+selector+"']:checked");
|
||||
|
||||
let alldelete = false;
|
||||
|
||||
if(checkedData.length === 0){
|
||||
alldelete = true;
|
||||
}
|
||||
|
||||
$('#btnDeleteMultipleClient').prop('disabled',(alldelete));
|
||||
$('#btnDeleteMultipleEmployee').prop('disabled',(alldelete));
|
||||
|
||||
|
||||
},
|
||||
// fileSizeValidation: (fileSize,selector,max_fileSize) => {
|
||||
// let max_size = max_fileSize / 1024;
|
||||
// let file = fileSize / 1024/1024 ;
|
||||
// let text = 'File size cannot be greater than '+max_size+'MB';
|
||||
// if (file > max_size) { // 1M
|
||||
// Swal.fire({icon: 'error',title: text,width: 450});
|
||||
// $(selector).val('');
|
||||
// }
|
||||
// },
|
||||
fileSizeValidation : (event,max_fileSize)=>{
|
||||
let file_type = event.files[0].type;
|
||||
let file_size = event.files[0].size; // current file size in byte
|
||||
let selector = $('#'+event.id);
|
||||
let max_size = max_fileSize / 1024; //max file size in kb to mb
|
||||
let current_file_size = file_size / 1024/1024 ; //current file size convert to mb
|
||||
let text = 'File size cannot be greater than '+max_size+'MB';
|
||||
let text_type = 'Oops! Please upload a jpeg or Png type of image only.';
|
||||
if(file_type === 'application/pdf' || file_type === 'application/x-zip-compressed' )
|
||||
{
|
||||
Swal.fire({icon: 'error',title: text_type,width: 450});
|
||||
$(selector).val('');
|
||||
return 0;
|
||||
}
|
||||
if (current_file_size > max_size) { // 1M
|
||||
Swal.fire({icon: 'error',title: text,width: 450});
|
||||
$(selector).val('');
|
||||
return 0;
|
||||
}
|
||||
},
|
||||
fileValidation : (event,max_fileSize)=>{
|
||||
let file_type = event.files[0].type;
|
||||
let file_size = event.files[0].size; // current file size in byte
|
||||
let selector = $('#'+event.id);
|
||||
let max_size = max_fileSize / 1024; //max file size in kb to mb
|
||||
let current_file_size = file_size / 1024/1024 ; //current file size convert to mb
|
||||
let text = 'File size cannot be greater than '+max_size+'MB';
|
||||
if (current_file_size > max_size) { // 1M
|
||||
Swal.fire({icon: 'error',title: text,width: 450});
|
||||
$(selector).val('');
|
||||
return 0;
|
||||
}
|
||||
},
|
||||
|
||||
show_hide_textbox : (icon_id,...selectors)=> {
|
||||
|
||||
let class_name = $(icon_id).attr("class");
|
||||
|
||||
let type = 'text';
|
||||
let addClass = 'fa-eye';
|
||||
let removeClass = 'fa-eye-slash';
|
||||
let remove_image_view_class = 'image-view-none';
|
||||
let add_image_view_class = '';
|
||||
let session_data = 0;
|
||||
|
||||
if (class_name === 'fa fa-eye') {
|
||||
type = 'password';
|
||||
addClass = 'fa-eye-slash';
|
||||
removeClass = 'fa-eye';
|
||||
remove_image_view_class = '';
|
||||
add_image_view_class = 'image-view-none';
|
||||
session_data = 1;
|
||||
}
|
||||
|
||||
selectors.forEach(function (item,index ){
|
||||
$(selectors[index]).attr('type', type);
|
||||
})
|
||||
|
||||
$(icon_id).removeClass(removeClass);
|
||||
$(icon_id).addClass(addClass);
|
||||
|
||||
$('#identity_proof_doc_id,#ssn_doc_id,#state_doc_id,#other_doc_id').removeClass(remove_image_view_class);
|
||||
$('#identity_proof_doc_id,#ssn_doc_id,#state_doc_id,#other_doc_id').addClass(add_image_view_class);
|
||||
|
||||
return session_data;
|
||||
},
|
||||
|
||||
validDate:(dValue) =>{
|
||||
if (dValue == '') dValue = $('#exp_date').val();
|
||||
var result = false;
|
||||
dValue = dValue.split('/');
|
||||
var pattern = /^\d{2}$/;
|
||||
var pattern1 = /^\d{4}$/;
|
||||
if (dValue[0] < 1 || dValue[0] > 12)
|
||||
result = true;
|
||||
|
||||
if (!pattern.test(dValue[0]) || !pattern1.test(dValue[1]))
|
||||
result = true;
|
||||
|
||||
if (dValue[2])
|
||||
result = true;
|
||||
|
||||
if (result) {
|
||||
alert("Please enter a valid date in MM/YYYY format.");
|
||||
$('#exp_date').val('');
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
},
|
||||
|
||||
modalView : (url,type,targetModal) => {
|
||||
common_helper.globalAjaxRequestAsync( url ,'POST',{ type: type,targetModal:targetModal },common_helper.modalviewcallback);
|
||||
},
|
||||
|
||||
modalviewcallback : (result,data)=>{
|
||||
|
||||
if(result){
|
||||
|
||||
$('#modal_target').html(result);
|
||||
|
||||
//This shows the modal
|
||||
$('#'+ data.targetModal).modal('show');
|
||||
}
|
||||
}
|
||||
}
|
||||
492
public/js/Common/jquery.validation.js
vendored
Normal file
492
public/js/Common/jquery.validation.js
vendored
Normal file
@@ -0,0 +1,492 @@
|
||||
/*
|
||||
======================= JQUERY PLUGIN =========================
|
||||
*/
|
||||
|
||||
/*! jQuery Validation Plugin - v1.16.0 - 12/2/2016
|
||||
* http://jqueryvalidation.org/
|
||||
* Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */
|
||||
!function (a) {
|
||||
"function" == typeof define && define.amd ? define(["jquery"], a) : "object" == typeof module && module.exports ? module.exports = a(require("jquery")) : a(jQuery)
|
||||
}(function (a) {
|
||||
a.extend(a.fn, {
|
||||
validate: function (b) {
|
||||
if (!this.length) return void (b && b.debug && window.console && console.warn("Nothing selected, can't validate, returning nothing."));
|
||||
var c = a.data(this[0], "validator");
|
||||
return c ? c : (this.attr("novalidate", "novalidate"), c = new a.validator(b, this[0]), a.data(this[0], "validator", c), c.settings.onsubmit && (this.on("click.validate", ":submit", function (b) {
|
||||
c.settings.submitHandler && (c.submitButton = b.target), a(this).hasClass("cancel") && (c.cancelSubmit = !0), void 0 !== a(this).attr("formnovalidate") && (c.cancelSubmit = !0)
|
||||
}), this.on("submit.validate", function (b) {
|
||||
function d() {
|
||||
var d, e;
|
||||
return !c.settings.submitHandler || (c.submitButton && (d = a("<input type='hidden'/>").attr("name", c.submitButton.name).val(a(c.submitButton).val()).appendTo(c.currentForm)), e = c.settings.submitHandler.call(c, c.currentForm, b), c.submitButton && d.remove(), void 0 !== e && e)
|
||||
}
|
||||
|
||||
return c.settings.debug && b.preventDefault(), c.cancelSubmit ? (c.cancelSubmit = !1, d()) : c.form() ? c.pendingRequest ? (c.formSubmitted = !0, !1) : d() : (c.focusInvalid(), !1)
|
||||
})), c)
|
||||
}, valid: function () {
|
||||
var b, c, d;
|
||||
return a(this[0]).is("form") ? b = this.validate().form() : (d = [], b = !0, c = a(this[0].form).validate(), this.each(function () {
|
||||
b = c.element(this) && b, b || (d = d.concat(c.errorList))
|
||||
}), c.errorList = d), b
|
||||
}, rules: function (b, c) {
|
||||
var d, e, f, g, h, i, j = this[0];
|
||||
if (null != j && null != j.form) {
|
||||
if (b) switch (d = a.data(j.form, "validator").settings, e = d.rules, f = a.validator.staticRules(j), b) {
|
||||
case"add":
|
||||
a.extend(f, a.validator.normalizeRule(c)), delete f.messages, e[j.name] = f, c.messages && (d.messages[j.name] = a.extend(d.messages[j.name], c.messages));
|
||||
break;
|
||||
case"remove":
|
||||
return c ? (i = {}, a.each(c.split(/\s/), function (b, c) {
|
||||
i[c] = f[c], delete f[c], "required" === c && a(j).removeAttr("aria-required")
|
||||
}), i) : (delete e[j.name], f)
|
||||
}
|
||||
return g = a.validator.normalizeRules(a.extend({}, a.validator.classRules(j), a.validator.attributeRules(j), a.validator.dataRules(j), a.validator.staticRules(j)), j), g.required && (h = g.required, delete g.required, g = a.extend({required: h}, g), a(j).attr("aria-required", "true")), g.remote && (h = g.remote, delete g.remote, g = a.extend(g, {remote: h})), g
|
||||
}
|
||||
}
|
||||
}), a.extend(a.expr.pseudos || a.expr[":"], {
|
||||
blank: function (b) {
|
||||
return !a.trim("" + a(b).val())
|
||||
}, filled: function (b) {
|
||||
var c = a(b).val();
|
||||
return null !== c && !!a.trim("" + c)
|
||||
}, unchecked: function (b) {
|
||||
return !a(b).prop("checked")
|
||||
}
|
||||
}), a.validator = function (b, c) {
|
||||
this.settings = a.extend(!0, {}, a.validator.defaults, b), this.currentForm = c, this.init()
|
||||
}, a.validator.format = function (b, c) {
|
||||
return 1 === arguments.length ? function () {
|
||||
var c = a.makeArray(arguments);
|
||||
return c.unshift(b), a.validator.format.apply(this, c)
|
||||
} : void 0 === c ? b : (arguments.length > 2 && c.constructor !== Array && (c = a.makeArray(arguments).slice(1)), c.constructor !== Array && (c = [c]), a.each(c, function (a, c) {
|
||||
b = b.replace(new RegExp("\\{" + a + "\\}", "g"), function () {
|
||||
return c
|
||||
})
|
||||
}), b)
|
||||
}, a.extend(a.validator, {
|
||||
defaults: {
|
||||
messages: {},
|
||||
groups: {},
|
||||
rules: {},
|
||||
errorClass: "error",
|
||||
pendingClass: "pending",
|
||||
validClass: "valid",
|
||||
errorElement: "label",
|
||||
focusCleanup: !1,
|
||||
focusInvalid: !0,
|
||||
errorContainer: a([]),
|
||||
errorLabelContainer: a([]),
|
||||
onsubmit: !0,
|
||||
ignore: ":hidden",
|
||||
ignoreTitle: !1,
|
||||
onfocusin: function (a) {
|
||||
this.lastActive = a, this.settings.focusCleanup && (this.settings.unhighlight && this.settings.unhighlight.call(this, a, this.settings.errorClass, this.settings.validClass), this.hideThese(this.errorsFor(a)))
|
||||
},
|
||||
onfocusout: function (a) {
|
||||
this.checkable(a) || !(a.name in this.submitted) && this.optional(a) || this.element(a)
|
||||
},
|
||||
onkeyup: function (b, c) {
|
||||
var d = [16, 17, 18, 20, 35, 36, 37, 38, 39, 40, 45, 144, 225];
|
||||
9 === c.which && "" === this.elementValue(b) || a.inArray(c.keyCode, d) !== -1 || (b.name in this.submitted || b.name in this.invalid) && this.element(b)
|
||||
},
|
||||
onclick: function (a) {
|
||||
a.name in this.submitted ? this.element(a) : a.parentNode.name in this.submitted && this.element(a.parentNode)
|
||||
},
|
||||
highlight: function (b, c, d) {
|
||||
"radio" === b.type ? this.findByName(b.name).addClass(c).removeClass(d) : a(b).addClass(c).removeClass(d)
|
||||
},
|
||||
unhighlight: function (b, c, d) {
|
||||
"radio" === b.type ? this.findByName(b.name).removeClass(c).addClass(d) : a(b).removeClass(c).addClass(d)
|
||||
}
|
||||
},
|
||||
setDefaults: function (b) {
|
||||
a.extend(a.validator.defaults, b)
|
||||
},
|
||||
messages: {
|
||||
required: "This field is required.",
|
||||
remote: "Please fix this field.",
|
||||
email: "Please enter a valid email address.",
|
||||
url: "Please enter a valid URL.",
|
||||
date: "Please enter a valid date.",
|
||||
dateISO: "Please enter a valid date (ISO).",
|
||||
number: "Please enter a valid number.",
|
||||
digits: "Please enter only digits.",
|
||||
equalTo: "Please enter the same value again.",
|
||||
maxlength: a.validator.format("Please enter no more than {0} characters."),
|
||||
minlength: a.validator.format("Please enter at least {0} characters."),
|
||||
rangelength: a.validator.format("Please enter a value between {0} and {1} characters long."),
|
||||
range: a.validator.format("Please enter a value between {0} and {1}."),
|
||||
max: a.validator.format("Please enter a value less than or equal to {0}."),
|
||||
min: a.validator.format("Please enter a value greater than or equal to {0}."),
|
||||
step: a.validator.format("Please enter a multiple of {0}.")
|
||||
},
|
||||
autoCreateRanges: !1,
|
||||
prototype: {
|
||||
init: function () {
|
||||
function b(b) {
|
||||
!this.form && this.hasAttribute("contenteditable") && (this.form = a(this).closest("form")[0]);
|
||||
var c = a.data(this.form, "validator"), d = "on" + b.type.replace(/^validate/, ""), e = c.settings;
|
||||
e[d] && !a(this).is(e.ignore) && e[d].call(c, this, b)
|
||||
}
|
||||
|
||||
this.labelContainer = a(this.settings.errorLabelContainer), this.errorContext = this.labelContainer.length && this.labelContainer || a(this.currentForm), this.containers = a(this.settings.errorContainer).add(this.settings.errorLabelContainer), this.submitted = {}, this.valueCache = {}, this.pendingRequest = 0, this.pending = {}, this.invalid = {}, this.reset();
|
||||
var c, d = this.groups = {};
|
||||
a.each(this.settings.groups, function (b, c) {
|
||||
"string" == typeof c && (c = c.split(/\s/)), a.each(c, function (a, c) {
|
||||
d[c] = b
|
||||
})
|
||||
}), c = this.settings.rules, a.each(c, function (b, d) {
|
||||
c[b] = a.validator.normalizeRule(d)
|
||||
}), a(this.currentForm).on("focusin.validate focusout.validate keyup.validate", ":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'], [type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'], [type='radio'], [type='checkbox'], [contenteditable], [type='button']", b).on("click.validate", "select, option, [type='radio'], [type='checkbox']", b), this.settings.invalidHandler && a(this.currentForm).on("invalid-form.validate", this.settings.invalidHandler), a(this.currentForm).find("[required], [data-rule-required], .required").attr("aria-required", "true")
|
||||
}, form: function () {
|
||||
return this.checkForm(), a.extend(this.submitted, this.errorMap), this.invalid = a.extend({}, this.errorMap), this.valid() || a(this.currentForm).triggerHandler("invalid-form", [this]), this.showErrors(), this.valid()
|
||||
}, checkForm: function () {
|
||||
this.prepareForm();
|
||||
for (var a = 0, b = this.currentElements = this.elements(); b[a]; a++) this.check(b[a]);
|
||||
return this.valid()
|
||||
}, element: function (b) {
|
||||
var c, d, e = this.clean(b), f = this.validationTargetFor(e), g = this, h = !0;
|
||||
return void 0 === f ? delete this.invalid[e.name] : (this.prepareElement(f), this.currentElements = a(f), d = this.groups[f.name], d && a.each(this.groups, function (a, b) {
|
||||
b === d && a !== f.name && (e = g.validationTargetFor(g.clean(g.findByName(a))), e && e.name in g.invalid && (g.currentElements.push(e), h = g.check(e) && h))
|
||||
}), c = this.check(f) !== !1, h = h && c, c ? this.invalid[f.name] = !1 : this.invalid[f.name] = !0, this.numberOfInvalids() || (this.toHide = this.toHide.add(this.containers)), this.showErrors(), a(b).attr("aria-invalid", !c)), h
|
||||
}, showErrors: function (b) {
|
||||
if (b) {
|
||||
var c = this;
|
||||
a.extend(this.errorMap, b), this.errorList = a.map(this.errorMap, function (a, b) {
|
||||
return {message: a, element: c.findByName(b)[0]}
|
||||
}), this.successList = a.grep(this.successList, function (a) {
|
||||
return !(a.name in b)
|
||||
})
|
||||
}
|
||||
this.settings.showErrors ? this.settings.showErrors.call(this, this.errorMap, this.errorList) : this.defaultShowErrors()
|
||||
}, resetForm: function () {
|
||||
a.fn.resetForm && a(this.currentForm).resetForm(), this.invalid = {}, this.submitted = {}, this.prepareForm(), this.hideErrors();
|
||||
var b = this.elements().removeData("previousValue").removeAttr("aria-invalid");
|
||||
this.resetElements(b)
|
||||
}, resetElements: function (a) {
|
||||
var b;
|
||||
if (this.settings.unhighlight) for (b = 0; a[b]; b++) this.settings.unhighlight.call(this, a[b], this.settings.errorClass, ""), this.findByName(a[b].name).removeClass(this.settings.validClass); else a.removeClass(this.settings.errorClass).removeClass(this.settings.validClass)
|
||||
}, numberOfInvalids: function () {
|
||||
return this.objectLength(this.invalid)
|
||||
}, objectLength: function (a) {
|
||||
var b, c = 0;
|
||||
for (b in a) a[b] && c++;
|
||||
return c
|
||||
}, hideErrors: function () {
|
||||
this.hideThese(this.toHide)
|
||||
}, hideThese: function (a) {
|
||||
a.not(this.containers).text(""), this.addWrapper(a).hide()
|
||||
}, valid: function () {
|
||||
return 0 === this.size()
|
||||
}, size: function () {
|
||||
return this.errorList.length
|
||||
}, focusInvalid: function () {
|
||||
if (this.settings.focusInvalid) try {
|
||||
a(this.findLastActive() || this.errorList.length && this.errorList[0].element || []).filter(":visible").focus().trigger("focusin")
|
||||
} catch (b) {
|
||||
}
|
||||
}, findLastActive: function () {
|
||||
var b = this.lastActive;
|
||||
return b && 1 === a.grep(this.errorList, function (a) {
|
||||
return a.element.name === b.name
|
||||
}).length && b
|
||||
}, elements: function () {
|
||||
var b = this, c = {};
|
||||
return a(this.currentForm).find("input, select, textarea, [contenteditable]").not(":submit, :reset, :image, :disabled").not(this.settings.ignore).filter(function () {
|
||||
var d = this.name || a(this).attr("name");
|
||||
return !d && b.settings.debug && window.console && console.error("%o has no name assigned", this), this.hasAttribute("contenteditable") && (this.form = a(this).closest("form")[0]), !(d in c || !b.objectLength(a(this).rules())) && (c[d] = !0, !0)
|
||||
})
|
||||
}, clean: function (b) {
|
||||
return a(b)[0]
|
||||
}, errors: function () {
|
||||
var b = this.settings.errorClass.split(" ").join(".");
|
||||
return a(this.settings.errorElement + "." + b, this.errorContext)
|
||||
}, resetInternals: function () {
|
||||
this.successList = [], this.errorList = [], this.errorMap = {}, this.toShow = a([]), this.toHide = a([])
|
||||
}, reset: function () {
|
||||
this.resetInternals(), this.currentElements = a([])
|
||||
}, prepareForm: function () {
|
||||
this.reset(), this.toHide = this.errors().add(this.containers)
|
||||
}, prepareElement: function (a) {
|
||||
this.reset(), this.toHide = this.errorsFor(a)
|
||||
}, elementValue: function (b) {
|
||||
var c, d, e = a(b), f = b.type;
|
||||
return "radio" === f || "checkbox" === f ? this.findByName(b.name).filter(":checked").val() : "number" === f && "undefined" != typeof b.validity ? b.validity.badInput ? "NaN" : e.val() : (c = b.hasAttribute("contenteditable") ? e.text() : e.val(), "file" === f ? "C:\\fakepath\\" === c.substr(0, 12) ? c.substr(12) : (d = c.lastIndexOf("/"), d >= 0 ? c.substr(d + 1) : (d = c.lastIndexOf("\\"), d >= 0 ? c.substr(d + 1) : c)) : "string" == typeof c ? c.replace(/\r/g, "") : c)
|
||||
}, check: function (b) {
|
||||
b = this.validationTargetFor(this.clean(b));
|
||||
var c, d, e, f = a(b).rules(), g = a.map(f, function (a, b) {
|
||||
return b
|
||||
}).length, h = !1, i = this.elementValue(b);
|
||||
if ("function" == typeof f.normalizer) {
|
||||
if (i = f.normalizer.call(b, i), "string" != typeof i) throw new TypeError("The normalizer should return a string value.");
|
||||
delete f.normalizer
|
||||
}
|
||||
for (d in f) {
|
||||
e = {method: d, parameters: f[d]};
|
||||
try {
|
||||
if (c = a.validator.methods[d].call(this, i, b, e.parameters), "dependency-mismatch" === c && 1 === g) {
|
||||
h = !0;
|
||||
continue
|
||||
}
|
||||
if (h = !1, "pending" === c) return void (this.toHide = this.toHide.not(this.errorsFor(b)));
|
||||
if (!c) return this.formatAndAdd(b, e), !1
|
||||
} catch (j) {
|
||||
throw this.settings.debug && window.console && console.log("Exception occurred when checking element " + b.id + ", check the '" + e.method + "' method.", j), j instanceof TypeError && (j.message += ". Exception occurred when checking element " + b.id + ", check the '" + e.method + "' method."), j
|
||||
}
|
||||
}
|
||||
if (!h) return this.objectLength(f) && this.successList.push(b), !0
|
||||
}, customDataMessage: function (b, c) {
|
||||
return a(b).data("msg" + c.charAt(0).toUpperCase() + c.substring(1).toLowerCase()) || a(b).data("msg")
|
||||
}, customMessage: function (a, b) {
|
||||
var c = this.settings.messages[a];
|
||||
return c && (c.constructor === String ? c : c[b])
|
||||
}, findDefined: function () {
|
||||
for (var a = 0; a < arguments.length; a++) if (void 0 !== arguments[a]) return arguments[a]
|
||||
}, defaultMessage: function (b, c) {
|
||||
"string" == typeof c && (c = {method: c});
|
||||
var d = this.findDefined(this.customMessage(b.name, c.method), this.customDataMessage(b, c.method), !this.settings.ignoreTitle && b.title || void 0, a.validator.messages[c.method], "<strong>Warning: No message defined for " + b.name + "</strong>"),
|
||||
e = /\$?\{(\d+)\}/g;
|
||||
return "function" == typeof d ? d = d.call(this, c.parameters, b) : e.test(d) && (d = a.validator.format(d.replace(e, "{$1}"), c.parameters)), d
|
||||
}, formatAndAdd: function (a, b) {
|
||||
var c = this.defaultMessage(a, b);
|
||||
this.errorList.push({
|
||||
message: c,
|
||||
element: a,
|
||||
method: b.method
|
||||
}), this.errorMap[a.name] = c, this.submitted[a.name] = c
|
||||
}, addWrapper: function (a) {
|
||||
return this.settings.wrapper && (a = a.add(a.parent(this.settings.wrapper))), a
|
||||
}, defaultShowErrors: function () {
|
||||
var a, b, c;
|
||||
for (a = 0; this.errorList[a]; a++) c = this.errorList[a], this.settings.highlight && this.settings.highlight.call(this, c.element, this.settings.errorClass, this.settings.validClass), this.showLabel(c.element, c.message);
|
||||
if (this.errorList.length && (this.toShow = this.toShow.add(this.containers)), this.settings.success) for (a = 0; this.successList[a]; a++) this.showLabel(this.successList[a]);
|
||||
if (this.settings.unhighlight) for (a = 0, b = this.validElements(); b[a]; a++) this.settings.unhighlight.call(this, b[a], this.settings.errorClass, this.settings.validClass);
|
||||
this.toHide = this.toHide.not(this.toShow), this.hideErrors(), this.addWrapper(this.toShow).show()
|
||||
}, validElements: function () {
|
||||
return this.currentElements.not(this.invalidElements())
|
||||
}, invalidElements: function () {
|
||||
return a(this.errorList).map(function () {
|
||||
return this.element
|
||||
})
|
||||
}, showLabel: function (b, c) {
|
||||
var d, e, f, g, h = this.errorsFor(b), i = this.idOrName(b), j = a(b).attr("aria-describedby");
|
||||
h.length ? (h.removeClass(this.settings.validClass).addClass(this.settings.errorClass), h.html(c)) : (h = a("<" + this.settings.errorElement + ">").attr("id", i + "-error").addClass(this.settings.errorClass).html(c || ""), d = h, this.settings.wrapper && (d = h.hide().show().wrap("<" + this.settings.wrapper + "/>").parent()), this.labelContainer.length ? this.labelContainer.append(d) : this.settings.errorPlacement ? this.settings.errorPlacement.call(this, d, a(b)) : d.insertAfter(b), h.is("label") ? h.attr("for", i) : 0 === h.parents("label[for='" + this.escapeCssMeta(i) + "']").length && (f = h.attr("id"), j ? j.match(new RegExp("\\b" + this.escapeCssMeta(f) + "\\b")) || (j += " " + f) : j = f, a(b).attr("aria-describedby", j), e = this.groups[b.name], e && (g = this, a.each(g.groups, function (b, c) {
|
||||
c === e && a("[name='" + g.escapeCssMeta(b) + "']", g.currentForm).attr("aria-describedby", h.attr("id"))
|
||||
})))), !c && this.settings.success && (h.text(""), "string" == typeof this.settings.success ? h.addClass(this.settings.success) : this.settings.success(h, b)), this.toShow = this.toShow.add(h)
|
||||
}, errorsFor: function (b) {
|
||||
var c = this.escapeCssMeta(this.idOrName(b)), d = a(b).attr("aria-describedby"),
|
||||
e = "label[for='" + c + "'], label[for='" + c + "'] *";
|
||||
return d && (e = e + ", #" + this.escapeCssMeta(d).replace(/\s+/g, ", #")), this.errors().filter(e)
|
||||
}, escapeCssMeta: function (a) {
|
||||
return a.replace(/([\\!"#$%&'()*+,./:;<=>?@\[\]^`{|}~])/g, "\\$1")
|
||||
}, idOrName: function (a) {
|
||||
return this.groups[a.name] || (this.checkable(a) ? a.name : a.id || a.name)
|
||||
}, validationTargetFor: function (b) {
|
||||
return this.checkable(b) && (b = this.findByName(b.name)), a(b).not(this.settings.ignore)[0]
|
||||
}, checkable: function (a) {
|
||||
return /radio|checkbox/i.test(a.type)
|
||||
}, findByName: function (b) {
|
||||
return a(this.currentForm).find("[name='" + this.escapeCssMeta(b) + "']")
|
||||
}, getLength: function (b, c) {
|
||||
switch (c.nodeName.toLowerCase()) {
|
||||
case"select":
|
||||
return a("option:selected", c).length;
|
||||
case"input":
|
||||
if (this.checkable(c)) return this.findByName(c.name).filter(":checked").length
|
||||
}
|
||||
return b.length
|
||||
}, depend: function (a, b) {
|
||||
return !this.dependTypes[typeof a] || this.dependTypes[typeof a](a, b)
|
||||
}, dependTypes: {
|
||||
"boolean": function (a) {
|
||||
return a
|
||||
}, string: function (b, c) {
|
||||
return !!a(b, c.form).length
|
||||
}, "function": function (a, b) {
|
||||
return a(b)
|
||||
}
|
||||
}, optional: function (b) {
|
||||
var c = this.elementValue(b);
|
||||
return !a.validator.methods.required.call(this, c, b) && "dependency-mismatch"
|
||||
}, startRequest: function (b) {
|
||||
this.pending[b.name] || (this.pendingRequest++, a(b).addClass(this.settings.pendingClass), this.pending[b.name] = !0)
|
||||
}, stopRequest: function (b, c) {
|
||||
this.pendingRequest--, this.pendingRequest < 0 && (this.pendingRequest = 0), delete this.pending[b.name], a(b).removeClass(this.settings.pendingClass), c && 0 === this.pendingRequest && this.formSubmitted && this.form() ? (a(this.currentForm).submit(), this.formSubmitted = !1) : !c && 0 === this.pendingRequest && this.formSubmitted && (a(this.currentForm).triggerHandler("invalid-form", [this]), this.formSubmitted = !1)
|
||||
}, previousValue: function (b, c) {
|
||||
return c = "string" == typeof c && c || "remote", a.data(b, "previousValue") || a.data(b, "previousValue", {
|
||||
old: null,
|
||||
valid: !0,
|
||||
message: this.defaultMessage(b, {method: c})
|
||||
})
|
||||
}, destroy: function () {
|
||||
this.resetForm(), a(this.currentForm).off(".validate").removeData("validator").find(".validate-equalTo-blur").off(".validate-equalTo").removeClass("validate-equalTo-blur")
|
||||
}
|
||||
},
|
||||
classRuleSettings: {
|
||||
required: {required: !0},
|
||||
email: {email: !0},
|
||||
url: {url: !0},
|
||||
date: {date: !0},
|
||||
dateISO: {dateISO: !0},
|
||||
number: {number: !0},
|
||||
digits: {digits: !0},
|
||||
creditcard: {creditcard: !0}
|
||||
},
|
||||
addClassRules: function (b, c) {
|
||||
b.constructor === String ? this.classRuleSettings[b] = c : a.extend(this.classRuleSettings, b)
|
||||
},
|
||||
classRules: function (b) {
|
||||
var c = {}, d = a(b).attr("class");
|
||||
return d && a.each(d.split(" "), function () {
|
||||
this in a.validator.classRuleSettings && a.extend(c, a.validator.classRuleSettings[this])
|
||||
}), c
|
||||
},
|
||||
normalizeAttributeRule: function (a, b, c, d) {
|
||||
/min|max|step/.test(c) && (null === b || /number|range|text/.test(b)) && (d = Number(d), isNaN(d) && (d = void 0)), d || 0 === d ? a[c] = d : b === c && "range" !== b && (a[c] = !0)
|
||||
},
|
||||
attributeRules: function (b) {
|
||||
var c, d, e = {}, f = a(b), g = b.getAttribute("type");
|
||||
for (c in a.validator.methods) "required" === c ? (d = b.getAttribute(c), "" === d && (d = !0), d = !!d) : d = f.attr(c), this.normalizeAttributeRule(e, g, c, d);
|
||||
return e.maxlength && /-1|2147483647|524288/.test(e.maxlength) && delete e.maxlength, e
|
||||
},
|
||||
dataRules: function (b) {
|
||||
var c, d, e = {}, f = a(b), g = b.getAttribute("type");
|
||||
for (c in a.validator.methods) d = f.data("rule" + c.charAt(0).toUpperCase() + c.substring(1).toLowerCase()), this.normalizeAttributeRule(e, g, c, d);
|
||||
return e
|
||||
},
|
||||
staticRules: function (b) {
|
||||
var c = {}, d = a.data(b.form, "validator");
|
||||
return d.settings.rules && (c = a.validator.normalizeRule(d.settings.rules[b.name]) || {}), c
|
||||
},
|
||||
normalizeRules: function (b, c) {
|
||||
return a.each(b, function (d, e) {
|
||||
if (e === !1) return void delete b[d];
|
||||
if (e.param || e.depends) {
|
||||
var f = !0;
|
||||
switch (typeof e.depends) {
|
||||
case"string":
|
||||
f = !!a(e.depends, c.form).length;
|
||||
break;
|
||||
case"function":
|
||||
f = e.depends.call(c, c)
|
||||
}
|
||||
f ? b[d] = void 0 === e.param || e.param : (a.data(c.form, "validator").resetElements(a(c)), delete b[d])
|
||||
}
|
||||
}), a.each(b, function (d, e) {
|
||||
b[d] = a.isFunction(e) && "normalizer" !== d ? e(c) : e
|
||||
}), a.each(["minlength", "maxlength"], function () {
|
||||
b[this] && (b[this] = Number(b[this]))
|
||||
}), a.each(["rangelength", "range"], function () {
|
||||
var c;
|
||||
b[this] && (a.isArray(b[this]) ? b[this] = [Number(b[this][0]), Number(b[this][1])] : "string" == typeof b[this] && (c = b[this].replace(/[\[\]]/g, "").split(/[\s,]+/), b[this] = [Number(c[0]), Number(c[1])]))
|
||||
}), a.validator.autoCreateRanges && (null != b.min && null != b.max && (b.range = [b.min, b.max], delete b.min, delete b.max), null != b.minlength && null != b.maxlength && (b.rangelength = [b.minlength, b.maxlength], delete b.minlength, delete b.maxlength)), b
|
||||
},
|
||||
normalizeRule: function (b) {
|
||||
if ("string" == typeof b) {
|
||||
var c = {};
|
||||
a.each(b.split(/\s/), function () {
|
||||
c[this] = !0
|
||||
}), b = c
|
||||
}
|
||||
return b
|
||||
},
|
||||
addMethod: function (b, c, d) {
|
||||
a.validator.methods[b] = c, a.validator.messages[b] = void 0 !== d ? d : a.validator.messages[b], c.length < 3 && a.validator.addClassRules(b, a.validator.normalizeRule(b))
|
||||
},
|
||||
methods: {
|
||||
required: function (b, c, d) {
|
||||
if (!this.depend(d, c)) return "dependency-mismatch";
|
||||
if ("select" === c.nodeName.toLowerCase()) {
|
||||
var e = a(c).val();
|
||||
return e && e.length > 0
|
||||
}
|
||||
return this.checkable(c) ? this.getLength(b, c) > 0 : b.length > 0
|
||||
}, email: function (a, b) {
|
||||
return this.optional(b) || /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(a)
|
||||
}, url: function (a, b) {
|
||||
return this.optional(b) || /^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})).?)(?::\d{2,5})?(?:[/?#]\S*)?$/i.test(a)
|
||||
}, date: function (a, b) {
|
||||
return this.optional(b) || !/Invalid|NaN/.test(new Date(a).toString())
|
||||
}, dateISO: function (a, b) {
|
||||
return this.optional(b) || /^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(a)
|
||||
}, number: function (a, b) {
|
||||
return this.optional(b) || /^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(a)
|
||||
}, digits: function (a, b) {
|
||||
return this.optional(b) || /^\d+$/.test(a)
|
||||
}, minlength: function (b, c, d) {
|
||||
var e = a.isArray(b) ? b.length : this.getLength(b, c);
|
||||
return this.optional(c) || e >= d
|
||||
}, maxlength: function (b, c, d) {
|
||||
var e = a.isArray(b) ? b.length : this.getLength(b, c);
|
||||
return this.optional(c) || e <= d
|
||||
}, rangelength: function (b, c, d) {
|
||||
var e = a.isArray(b) ? b.length : this.getLength(b, c);
|
||||
return this.optional(c) || e >= d[0] && e <= d[1]
|
||||
}, min: function (a, b, c) {
|
||||
return this.optional(b) || a >= c
|
||||
}, max: function (a, b, c) {
|
||||
return this.optional(b) || a <= c
|
||||
}, range: function (a, b, c) {
|
||||
return this.optional(b) || a >= c[0] && a <= c[1]
|
||||
}, step: function (b, c, d) {
|
||||
var e, f = a(c).attr("type"), g = "Step attribute on input type " + f + " is not supported.",
|
||||
h = ["text", "number", "range"], i = new RegExp("\\b" + f + "\\b"), j = f && !i.test(h.join()),
|
||||
k = function (a) {
|
||||
var b = ("" + a).match(/(?:\.(\d+))?$/);
|
||||
return b && b[1] ? b[1].length : 0
|
||||
}, l = function (a) {
|
||||
return Math.round(a * Math.pow(10, e))
|
||||
}, m = !0;
|
||||
if (j) throw new Error(g);
|
||||
return e = k(d), (k(b) > e || l(b) % l(d) !== 0) && (m = !1), this.optional(c) || m
|
||||
}, equalTo: function (b, c, d) {
|
||||
var e = a(d);
|
||||
return this.settings.onfocusout && e.not(".validate-equalTo-blur").length && e.addClass("validate-equalTo-blur").on("blur.validate-equalTo", function () {
|
||||
a(c).valid()
|
||||
}), b === e.val()
|
||||
}, remote: function (b, c, d, e) {
|
||||
if (this.optional(c)) return "dependency-mismatch";
|
||||
e = "string" == typeof e && e || "remote";
|
||||
var f, g, h, i = this.previousValue(c, e);
|
||||
return this.settings.messages[c.name] || (this.settings.messages[c.name] = {}), i.originalMessage = i.originalMessage || this.settings.messages[c.name][e], this.settings.messages[c.name][e] = i.message, d = "string" == typeof d && {url: d} || d, h = a.param(a.extend({data: b}, d.data)), i.old === h ? i.valid : (i.old = h, f = this, this.startRequest(c), g = {}, g[c.name] = b, a.ajax(a.extend(!0, {
|
||||
mode: "abort",
|
||||
port: "validate" + c.name,
|
||||
dataType: "json",
|
||||
data: g,
|
||||
context: f.currentForm,
|
||||
success: function (a) {
|
||||
var d, g, h, j = a === !0 || "true" === a;
|
||||
f.settings.messages[c.name][e] = i.originalMessage, j ? (h = f.formSubmitted, f.resetInternals(), f.toHide = f.errorsFor(c), f.formSubmitted = h, f.successList.push(c), f.invalid[c.name] = !1, f.showErrors()) : (d = {}, g = a || f.defaultMessage(c, {
|
||||
method: e,
|
||||
parameters: b
|
||||
}), d[c.name] = i.message = g, f.invalid[c.name] = !0, f.showErrors(d)), i.valid = j, f.stopRequest(c, j)
|
||||
}
|
||||
}, d)), "pending")
|
||||
}
|
||||
}
|
||||
});
|
||||
var b, c = {};
|
||||
return a.ajaxPrefilter ? a.ajaxPrefilter(function (a, b, d) {
|
||||
var e = a.port;
|
||||
"abort" === a.mode && (c[e] && c[e].abort(), c[e] = d)
|
||||
}) : (b = a.ajax, a.ajax = function (d) {
|
||||
var e = ("mode" in d ? d : a.ajaxSettings).mode, f = ("port" in d ? d : a.ajaxSettings).port;
|
||||
return "abort" === e ? (c[f] && c[f].abort(), c[f] = b.apply(this, arguments), c[f]) : b.apply(this, arguments)
|
||||
}), a
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
======================= JQUERY PLUGIN =========================
|
||||
*/
|
||||
|
||||
|
||||
const formValidate = (selector,fields,messages = {})=>{
|
||||
jQuery.validator.setDefaults({
|
||||
debug: true,
|
||||
success: "valid"
|
||||
});
|
||||
$(selector).validate({
|
||||
rules: fields,
|
||||
messages:messages
|
||||
});
|
||||
}
|
||||
320
public/js/accountinfo/clientinfo.js
vendored
Normal file
320
public/js/accountinfo/clientinfo.js
vendored
Normal file
@@ -0,0 +1,320 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
"use strict"
|
||||
if (sessionStorage.getItem("user_data_viewed") === "1") {
|
||||
$('#show_hide_icon').removeClass('fa-eye-slash');
|
||||
$('#show_hide_icon').addClass('fa-eye');
|
||||
}
|
||||
|
||||
if (sessionStorage.getItem("user_data_viewed") === "0") {
|
||||
$('#show_hide_icon').removeClass('fa-eye');
|
||||
$('#show_hide_icon').addClass('fa-eye-slash');
|
||||
}
|
||||
|
||||
show_hide_textbox();
|
||||
|
||||
$("#manage_client_show_hide_password a").on('click', function(event) {
|
||||
common_helper.globalPasswordView('#manage_client_show_hide_password',event);
|
||||
});
|
||||
|
||||
common_helper.formValidate('#payment-report_form',
|
||||
{'card_number': 'required', 'expiry': 'required', 'cvv': 'required'},
|
||||
{
|
||||
'card_number': {required: "Please enter your card number"},
|
||||
'expiry': {required: "Please enter expire date"},
|
||||
'cvv': {required: "Please enter your card code"}
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
$('#client_form').validate({
|
||||
rules: {
|
||||
'creditreport[first_name]': 'required',
|
||||
'creditreport[last_name]': 'required',
|
||||
'creditreport[birth_date]': 'required',
|
||||
'creditreport[street_no]' : 'required',
|
||||
'creditreport[street_name]' : 'required',
|
||||
'creditreport[city]' : 'required',
|
||||
'creditreport[state]' : 'required',
|
||||
'creditreport[zip_code]' : 'required',
|
||||
'creditreport[phone]' : 'required',
|
||||
'creditreport[ssn]' : {'required': true,'minlength':4,'maxlength':4},
|
||||
'creditreport[password]': 'required',
|
||||
'creditreport[credit_report_company_type]': 'required'
|
||||
},
|
||||
messages: {
|
||||
'creditreport[first_name]': {
|
||||
required: "Please enter your first name"
|
||||
},
|
||||
'creditreport[last_name]': {
|
||||
required: "Please enter your last name"
|
||||
},
|
||||
'creditreport[birth_date]': {
|
||||
required: "Please enter your birth date",
|
||||
},
|
||||
'creditreport[street_no]': {
|
||||
required: "Please enter your street number"
|
||||
},
|
||||
'creditreport[street_name]': {
|
||||
required: "Please enter your street name"
|
||||
},
|
||||
'creditreport[state]': {
|
||||
required: "Please enter your state"
|
||||
},
|
||||
'creditreport[city]': {
|
||||
required: "Please enter your city"
|
||||
},
|
||||
'creditreport[zip_code]': {
|
||||
required: "Please enter your zip code"
|
||||
},
|
||||
'creditreport[phone]': {
|
||||
required: "Please enter your zip code"
|
||||
},
|
||||
'creditreport[ssn]': {
|
||||
required: "Please enter last 4 digit of your ssn",
|
||||
minlength:"Please enter last 4 digit of your ssn",
|
||||
maxlength:"Please enter last 4 digit of your ssn"
|
||||
},
|
||||
'creditreport[password]': {
|
||||
required: "Please enter your password"
|
||||
},
|
||||
'creditreport[credit_report_company_type]': {
|
||||
required: "Please enter your source type"
|
||||
}
|
||||
},
|
||||
highlight: function (element) {
|
||||
$(element).parent().addClass("has-error");
|
||||
},
|
||||
submitHandler: function (form) {
|
||||
form.submit();
|
||||
}
|
||||
});
|
||||
|
||||
$('input[name=isReceiveNotificationEmail]').click(function () {
|
||||
$('#alternate-email').attr('required', false);
|
||||
$('#alternate-email').attr('disabled', true);
|
||||
if ($(this).prop('checked')) {
|
||||
$('#alternate-email').attr('required', true);
|
||||
$('#alternate-email').attr('disabled', false);
|
||||
}
|
||||
});
|
||||
|
||||
$('input[name=is_letterstream_return_address]').click(function () {
|
||||
$('#client-city').attr('required', false);
|
||||
$('#client-zip-code').attr('required', false);
|
||||
$('#client-address').attr('required', false);
|
||||
$('#client-state').attr('required', false);
|
||||
$('#client-country').attr('required', false);
|
||||
$('.letter-stream-check').removeClass('required')
|
||||
// $('#alternate-email').attr('disabled',true);
|
||||
if ($(this).prop('checked')) {
|
||||
$('#client-city').attr('required', true);
|
||||
$('#client-zip-code').attr('required', true);
|
||||
$('#client-address').attr('required', true);
|
||||
$('#client-state').attr('required', true);
|
||||
$('.letter-stream-check').addClass('required')
|
||||
//$('#alternate-email').attr('disabled',false);
|
||||
}
|
||||
});
|
||||
|
||||
function firstTimeLoginUserUpdate(){
|
||||
$('#first_time_login_view_modal').modal('show');
|
||||
$('#btn_first_time_login').click((e)=>{
|
||||
$(`#first_time_login_view_modal`).modal('hide');
|
||||
var scrollpanel = $("#upload-document-panel").offset().top;
|
||||
$(window).scrollTop(scrollpanel);
|
||||
$('#upload-document-panel').focus();
|
||||
});
|
||||
}
|
||||
|
||||
const showSubscription=()=> {
|
||||
$('#recurring_view_modal').modal('show');
|
||||
$('#btn_recurring').click((e)=>{
|
||||
$('#recurring_view_modal').modal('hide');
|
||||
$('#payment-report-modal').modal('show');
|
||||
});
|
||||
}
|
||||
|
||||
$("#show_hide_answer1 a").on('click', function(event) {
|
||||
common_helper.globalPasswordView('#show_hide_answer1',event);
|
||||
})
|
||||
$("#show_hide_answer2 a").on('click', function(event) {
|
||||
common_helper.globalPasswordView('#show_hide_answer2',event);
|
||||
})
|
||||
$("#show_hide_answer3 a").on('click', function(event) {
|
||||
common_helper.globalPasswordView('#show_hide_answer3',event);
|
||||
})
|
||||
|
||||
const birthDateCompleted=()=>{
|
||||
let birth_date=$("[name='creditreport[birth_date]']").val();
|
||||
if(birth_date.length===2){
|
||||
birth_date+='/';
|
||||
}
|
||||
else if(birth_date.length===5){
|
||||
birth_date+='/';
|
||||
}
|
||||
$("[name='creditreport[birth_date]']").val(birth_date);
|
||||
}
|
||||
|
||||
const sourceTypeOnchange=(current_source_type)=>{
|
||||
|
||||
let selected_value = $("select[name='credit_report_company_type']").val();
|
||||
|
||||
let source_name = current_source_type === 1 ? 'SmartCredit' : "Identity IQ" ;
|
||||
|
||||
sourceTypeConfigUnset();
|
||||
|
||||
if( selected_value !== current_source_type){
|
||||
|
||||
let html = 'Set up your '+ source_name+ ' first, use the same email and password you used to set up your credit zombies account';
|
||||
$('#common_message_text').text(html);
|
||||
sourceTypeConfigSetup(current_source_type);
|
||||
$('#common_confirmation_modal').modal('show');
|
||||
|
||||
}
|
||||
//$("select[name='source_type']").val(current_source_type);
|
||||
}
|
||||
|
||||
const showFirstTimeLoginVideoModalView=()=> {
|
||||
|
||||
$('#first_time_login_video_modal').modal('show');
|
||||
|
||||
}
|
||||
|
||||
const showFirstTimeLoginModalView=()=> {
|
||||
sessionStorage.setItem('video_shown','1');
|
||||
$('#first_time_login_video_modal').modal('hide');
|
||||
$('#first_time_login_modal').modal('show');
|
||||
|
||||
}
|
||||
|
||||
const hideModalView=()=>{
|
||||
|
||||
$('#first_time_login_modal').modal('hide');
|
||||
firstTimeLoginUserUpdate();
|
||||
}
|
||||
|
||||
const hideFirstTimeLoginModalView=(providers)=>{
|
||||
|
||||
$('#first_time_login_modal').modal('hide');
|
||||
|
||||
let provider = $('#report_provider').val();
|
||||
let go_to_url = '';
|
||||
|
||||
go_to_url = providers[parseInt(provider)];
|
||||
|
||||
window.open(go_to_url,'_blank') ;
|
||||
|
||||
firstTimeLoginUserUpdate();
|
||||
}
|
||||
|
||||
const sourceTypeConfigUnset = () => {
|
||||
$('#ok-btn').remove()
|
||||
$('#common_confirmation_modal .modal-footer button').removeClass('btn2')
|
||||
$('#common_confirmation_modal .modal-footer button').removeAttr('onclick')
|
||||
}
|
||||
|
||||
const sourceTypeConfigSetup = (current_source_type) => {
|
||||
$('#common_confirmation_modal .modal-footer button').addClass('btn2')
|
||||
$('#common_confirmation_modal .modal-footer button').attr('onclick',`setPrevious(${current_source_type})`)
|
||||
$('#common_confirmation_modal .modal-footer').prepend(sourceTypeSelectBtn())
|
||||
}
|
||||
|
||||
const setPrevious = (value) => {
|
||||
$("select[name='credit_report_company_type']").val(value);
|
||||
}
|
||||
|
||||
const sourceTypeSelectBtn = (value) =>{
|
||||
|
||||
let html = `<button id="ok-btn" type="button" class="btn btn-secondary btn2 btn-lg" data-dismiss="modal">Ok</button>`;
|
||||
|
||||
return html
|
||||
}
|
||||
|
||||
const client_form_submit = (e,url,userType)=>{
|
||||
$('.has-error').removeClass('has-error')
|
||||
if($('#client_form').valid()) {
|
||||
let email = $('#client_form').find('input[name="creditreport[email]"]').val();
|
||||
let password = $('[name="creditreport[password]"]').val();
|
||||
let source_type = $("#company_type").val();
|
||||
let ssn = $('[name="creditreport[ssn]"]').val();
|
||||
let data = {
|
||||
action: 'GET_SUBSCRIPTION_STATUS_CREDIT_REPORT_PROVIDER',
|
||||
email: email,
|
||||
password: password,
|
||||
source_type: source_type,
|
||||
ssn: ssn,
|
||||
};
|
||||
|
||||
if(userType === 3){
|
||||
$('#client_form').submit();
|
||||
}else {
|
||||
common_helper.globalAjaxRequestAsync(url, 'POST', data, callbackfromreportprovider);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
const callbackfromreportprovider =(response)=>{
|
||||
|
||||
console.log('test result',response);
|
||||
if(response.status) {
|
||||
$('#client_form').submit();
|
||||
}else {
|
||||
sourceTypeConfigUnset()
|
||||
let html = response.message;
|
||||
// let html = 'Email or Password do not match in credit report provider.';
|
||||
$('#common_message_text').text(html);
|
||||
$('#common_confirmation_modal').modal('show');
|
||||
}
|
||||
}
|
||||
|
||||
const show_hide_textbox = (e)=>{
|
||||
$return_data = common_helper.show_hide_textbox($('#show_hide_icon'),
|
||||
$('[name="creditreport[phone]"]'),$('[name="creditreport[email]"]'),
|
||||
$('[name="creditreport[first_name]"]'),$('[name="creditreport[last_name]"]'),
|
||||
$('[name="creditreport[ssn]"]'),$('[name="creditreport[birth_date]"]'),
|
||||
$('[name="creditreport[street_no]"]'),$('[name="creditreport[street_name]"]'),
|
||||
$('[name="creditreport[city]"]'),$('[name="creditreport[state]"]'),
|
||||
$('[name="creditreport[zip_code]"]')
|
||||
);
|
||||
|
||||
sessionStorage.setItem('user_data_viewed',$return_data);
|
||||
|
||||
}
|
||||
|
||||
const file_upload = (title,image,type,nameatrr)=>{
|
||||
|
||||
let encoded = encodeURIComponent(image);
|
||||
$('#pic_header').text(title);
|
||||
$('#doc_type').val(type);
|
||||
$("#uploaded_doc").attr("src",decodeURIComponent(encoded));
|
||||
$('input[id="profile_pic"]').attr('name', nameatrr);
|
||||
|
||||
$('#upload_pic_modal').modal('show');
|
||||
}
|
||||
|
||||
const file_delete = (title,image)=>{
|
||||
let action = 'DELETE_CLIENT_DOC_FILE';
|
||||
let url = $('[name="ajax_url"]').val();
|
||||
let html_content = `<h4>Are you sure you want to delete </h4>`;
|
||||
html_content += `<h4>`+ title + ` file?` +`</h4>`;
|
||||
const swalresponse = common_helper.swalAleart(html_content, 'warning', 450, true, '', true, true, 'Yes');
|
||||
swalresponse.then(async function (result) {
|
||||
if (result.isConfirmed) {
|
||||
let response = await common_helper.globalAjaxRequest(url, 'POST', {
|
||||
action: action,
|
||||
userData: image,
|
||||
_token: $('meta[name="csrf-token"]').attr('content')
|
||||
});
|
||||
if (response.status) {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
window.location = $('[name="redirect_url"]').val();
|
||||
} else {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
1776
public/js/bootstrap-multiselect.js
vendored
Normal file
1776
public/js/bootstrap-multiselect.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
8
public/js/datepicker.js
vendored
Normal file
8
public/js/datepicker.js
vendored
Normal file
File diff suppressed because one or more lines are too long
310
public/js/destinations-script.js
vendored
Normal file
310
public/js/destinations-script.js
vendored
Normal file
@@ -0,0 +1,310 @@
|
||||
var options = [];
|
||||
|
||||
function chooseDropDown(elem) {
|
||||
event.preventDefault();
|
||||
|
||||
$(elem).parent().parent().parent().children('dd').children('div.mutliSelect').children('ul').slideToggle('fast');
|
||||
|
||||
$(".dropdown-x dd ul").hide();
|
||||
$(elem).parent().parent().next('dd').children('div').children('ul').show();
|
||||
////console.log();
|
||||
}
|
||||
|
||||
$(document).bind('click', function(e) {
|
||||
|
||||
var $clicked = $(e.target);
|
||||
//alert($clicked);
|
||||
if (!$clicked.parents().hasClass("dropdown-x")) $(".dropdown-x dd ul").hide();
|
||||
});
|
||||
|
||||
|
||||
|
||||
var checkboxString = '';
|
||||
var attcheckboxString = '';
|
||||
|
||||
function getAddressList(dest_id){
|
||||
var array = [];
|
||||
array[1] = ['EXPERIAN PO BOX 9701, ALLEN, TX 75013',
|
||||
'EXPERIAN PO BOX 4500, ALLEN, TX 75013',
|
||||
//'EXPERIAN PO BOX 2202, ALLEN, TX 75013',
|
||||
'OTHER'
|
||||
];
|
||||
|
||||
array[2] = ['EQUIFAX PO Box740256, ATLANTA,GA 30374-0256',
|
||||
'EQUIFAX PO Box740241, ATLANTA,GA 30374-0241',
|
||||
'OTHER'
|
||||
];
|
||||
|
||||
array[3] = ['Trans Union PO Box 2000, CHESTER, PA 19016-2000',
|
||||
'Trans Union PO Box 1000, CHESTER, PA 19022-1000',
|
||||
'Trans Union PO Box 2000, CHESTER, PA 19022-2000',
|
||||
'OTHER'
|
||||
|
||||
];
|
||||
|
||||
array[4] = ['INNOVIS PO Box 1640, Pittsburgh, PA 15230-1640',
|
||||
'INNOVIS 875 Greentree Road, 8 Parkway Center, Pittsburgh, PA 15220',
|
||||
'OTHER'
|
||||
];
|
||||
|
||||
array[5] = ['LexisNexis PO Box 105108, Atlanta, GA 30348','OTHER'];
|
||||
|
||||
array[6] = [' SageStream, LLC, LexisNexis Risk Solutions Consumer Center P. O. Box 105108. Atlanta, Georgia 30348-5108','OTHER'];
|
||||
|
||||
array[7] = ['Chex Systems ATTN: Consumer Relations, 7805 Hudson Rd., Ste. 100, Woodbury, MN 55125','OTHER'];
|
||||
|
||||
array[8] = ['(US RESIDENTS) MIB Inc 50 Braintree Hill Park, Suite 400, Braintree, MA 02184-8734',
|
||||
'(CANADIAN RESIDENTS) MIB Inc 330 university Avenue, Suite 501, Toronto, Canada M5G 1R7',
|
||||
'OTHER'
|
||||
];
|
||||
|
||||
array[9] = ['FactorTrust PO Box 3653,Alpharhetta, GA 30023','OTHER'];
|
||||
|
||||
return array[dest_id];
|
||||
}
|
||||
|
||||
function getAddresses(value,title){
|
||||
|
||||
var array = getAddressList(value);
|
||||
//var selectTag = '<select id="address_'+value+'" onchange="otherAddress(this)" data-placeholder="CHOOSE '+title+' ADDRESS" name="destination_sub_menu_'+value+'[]" class="form-control select2" multiple="multiple">';
|
||||
var selectTag = '<dl class="dropdown-x" id="address_'+value+'">'
|
||||
+'<dt>'
|
||||
+'<div>'
|
||||
+'<a onclick="chooseDropDown(this);" href="javascript:;" class="form-control">'
|
||||
+'<span class="choose-dest">CHOOSE '+title+' ADDRESS</span>'
|
||||
+'<p class="multiSel"></p>'
|
||||
+'</a>'
|
||||
+'</div>'
|
||||
+'</dt>'
|
||||
+'<dd>'
|
||||
+'<div class="mutliSelect">'
|
||||
+'<ul>';
|
||||
|
||||
var count = 1
|
||||
for(var x in array){
|
||||
var val = array[x];
|
||||
if(val == 'OTHER'){
|
||||
val = -1;
|
||||
selectTag = selectTag + '<li><input onclick="getDestOption(this);" data-view="'+array[x]+'" type="checkbox" value = "'+val+'" name="destination_sub_menu_'+value+'[]"> '+array[x]+'</li>';//'<option value = "'+val+'">'+array[x]+'</option>';
|
||||
}else{
|
||||
selectTag = selectTag + '<li><input onclick="getDestOption(this);" data-view="'+array[x]+'" type="checkbox" value = "'+array[x]+'" name="destination_sub_menu[]"> '+array[x]+'</li>';
|
||||
}
|
||||
count++;
|
||||
}
|
||||
|
||||
selectTag = selectTag +'</ul>'
|
||||
+'</div>'
|
||||
+'</dd>'
|
||||
+'</dl>';
|
||||
|
||||
var addressHTML = '<div class="remove-all"><div class="form-group">'
|
||||
+'<label class="col-sm-5 control-label"></label>'
|
||||
+'<div class="col-sm-12">'
|
||||
+ selectTag
|
||||
+'</div>'
|
||||
+'</div>'
|
||||
+'<div class="form-group" id="address_other" style="display:none;">'
|
||||
+'<label class="col-sm-5 control-label">OTHER</label>'
|
||||
+'<div class="col-sm-12">'
|
||||
+'<textarea id="destination_sub_menu_other_'+value+'" class="form-control" name="destination_sub_menu_other_'+value+'"></textarea>'
|
||||
+'</div>'
|
||||
+'</div></div>';
|
||||
|
||||
$('#address-div').append(addressHTML);
|
||||
$('.select2').select2();
|
||||
|
||||
|
||||
// return selectTag;
|
||||
|
||||
|
||||
}
|
||||
|
||||
function get_destination_name(dest_value) {
|
||||
var destination = ['','EXPERIAN DESTINATIONS','EQUIFAX DESTINATIONS','TRANS UNION DESTINATIONS','INNOVIS DESTINATIONS','LEXISNEXIS DESTINATIONS','SAGESTREAM LLC DESTINATIONS', 'CHEX SYSTEMS DESTINATIONS','MIB INC DESTINATIONS','FACTOR TRUST DESTINATIONS','OTHER'];
|
||||
return destination[dest_value];
|
||||
}
|
||||
|
||||
function otherAddress(selectTag){
|
||||
var value = $(selectTag).val();
|
||||
var destValue = selectTag.name.replace('destination_sub_menu_','').replace('[]','');
|
||||
if($.inArray("-1", value) !== -1){
|
||||
var placeholder = get_destination_name(destValue);
|
||||
var tag = $(selectTag).parent().parent().next('div');
|
||||
//tag.children('div').children('textarea').attr('name','destination_sub_menu_'+selectTag.value);
|
||||
tag.children('div').children('textarea').attr("placeholder",placeholder);
|
||||
tag.css('display','block');
|
||||
}else{
|
||||
$(selectTag).parent().parent().next('div').css('display','none');
|
||||
}
|
||||
}
|
||||
function getOption(elem) {
|
||||
$('.view-allcheck').children().remove();
|
||||
var isFirst = $('input[name=isFirst]').val();
|
||||
attAllcheck = '';
|
||||
var destCount = $('#maindestination ul li input:checked').length;
|
||||
|
||||
var attLength = destCount;
|
||||
if(destCount > 1){
|
||||
attAllcheck = '<input data-id="' + attLength + '" style="margin-left: 10px;" type="checkbox" name=all_att_check_' + attLength + ' id="all_att_check_' + attLength + '" onclick="setAllCheck(this)"><span> Check all</span>';
|
||||
$('.view-allcheck').append(attAllcheck) ;
|
||||
}
|
||||
//alert(destCount);
|
||||
//var title = $(this).closest('.mutliSelect').find('input[type="checkbox"]').val(),
|
||||
var title = $(elem).data('view');
|
||||
//console.log(title);
|
||||
if(title=='EXPERIAN DESTINATIONS'){
|
||||
var checkboxes = $('.check-exp').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='EQUIFAX DESTINATIONS'){
|
||||
var checkboxes = $('.check-equ').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='TRANS UNION DESTINATIONS'){
|
||||
var checkboxes = $('.check-tra').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='INNOVIS DESTINATIONS'){
|
||||
var checkboxes = $('.check-ino').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='LEXISNEXIS DESTINATIONS'){
|
||||
var checkboxes = $('.check-lex').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='SAGESTREAM LLC DESTINATIONS'){
|
||||
var checkboxes = $('.check-sag').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='CHEX SYSTEMS DESTINATIONS'){
|
||||
var checkboxes = $('.check-chex').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if(title=='MIB INC DESTINATIONS'){
|
||||
var checkboxes = $('.check-mib').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
else if (title=='FACTOR TRUST DESTINATIONS'){
|
||||
var checkboxes = $('.check-fact').first();
|
||||
checkboxes.prop('checked', $(elem).is(':checked'));
|
||||
}
|
||||
var checkVal = $(elem).val();
|
||||
var dfClass = '';
|
||||
if(checkVal==11){
|
||||
dfClass = 'dfclass'
|
||||
}
|
||||
if ($(elem).is(':checked')) {
|
||||
var html = '<span class="hida" title="' + title + '">' + title + '</span>';
|
||||
$(elem).parent().parent().parent().parent().prev('dt').children('div').children('a').children('p').append(html);
|
||||
|
||||
//alert($(this).val());
|
||||
|
||||
var dest_other = '<div class="form-group remove-all" id="dest_other_'+checkVal+'">'
|
||||
+'<label class="col-sm-5 control-label">OTHER</label>'
|
||||
+'<div class="col-sm-12">'
|
||||
+'<textarea id="input_order_address" class="form-control" name="other_address"></textarea>'
|
||||
+'</div>'
|
||||
+'</div></div>';
|
||||
|
||||
if(checkVal==10){
|
||||
$('#address-div').after(dest_other);
|
||||
}else{
|
||||
if(checkVal !=11){
|
||||
getAddresses(checkVal,title);
|
||||
}
|
||||
}
|
||||
// var attIndicator = $('.dest-checkbox').parent().prevAll('div')[0];
|
||||
////console.log($('.add-new-attach').length);
|
||||
|
||||
var appendText = '<li><input onclick="makeAllCheck(this)" class="dest_check_'+checkVal+' remove-all '+dfClass+'" id="dest_check_'+checkVal+'" name="dest_check_1[]" type="checkbox" value="'+checkVal+'" /> '+title+'</li>';
|
||||
|
||||
var appendTextAtt = '<li><input onclick="makeAllCheck(this)" class="att_check_' + checkVal + ' remove-all" id="att_check_' + checkVal + '" name="att_check_1[]" type="checkbox" value="' + checkVal + '" /> ' + title + '</li>';
|
||||
if(checkVal == 11) {
|
||||
appendTextAtt = '';
|
||||
}
|
||||
checkboxString = checkboxString + appendText;
|
||||
attcheckboxString = attcheckboxString + appendTextAtt;
|
||||
$('.dest-checkbox').children('ul').append(appendText);
|
||||
$('.att-checkbox').children('ul').append(appendTextAtt);
|
||||
//alert(address);
|
||||
$(elem).parent().parent().parent().parent().prev('dt').children('div').children('a').children('p.multiSel').prev("span").hide();
|
||||
} else {
|
||||
var removal = $(elem).val();
|
||||
$('#destination_sub_menu_other_'+removal).parents('div#address_other').remove();
|
||||
$(elem).parent().parent().parent().parent().prev('dt').children('div').children('a').children('p').children('span[title="' + title + '"]').remove();
|
||||
$checkStr = '<li><input onclick="makeAllCheck(this)" class="dest_check_'+removal+' remove-all '+dfClass+'" id="dest_check_'+removal+'" name="dest_check_1[]" type="checkbox" value="'+removal+'" /> '+title+'</li>';
|
||||
if(checkVal != 11) {
|
||||
$checkAttStr = '<li><input onclick="makeAllCheck(this)" class="att_check_' + removal + ' remove-all" id="att_check_' + removal + '" name="att_check_1[]" type="checkbox" value="' + removal + '" /> ' + title + '</li>';
|
||||
}
|
||||
checkboxString = checkboxString.replace($checkStr,'');
|
||||
attcheckboxString = attcheckboxString.replace($checkAttStr,'');
|
||||
$('#address_'+removal).parent().parent().remove();
|
||||
$('.dest_check_'+removal).parent().remove();
|
||||
$('.att_check_'+removal).parent().remove();
|
||||
$('#dest_other_'+removal).remove();
|
||||
|
||||
/*var ret = $(".hida");
|
||||
$('.dropdown-x dt a').append(ret);*/
|
||||
|
||||
}
|
||||
|
||||
var plen = $(elem).parent().parent().parent().parent().prev('dt').children('div').children('a').children('p').children('span').length;
|
||||
|
||||
if(plen > 1){
|
||||
$('.view-allcheck').show();
|
||||
}else {
|
||||
$('.view-allcheck').hide();
|
||||
}
|
||||
////console.log('test : '+checkboxString);
|
||||
if(!$('.hida').is(':visible')){
|
||||
$(".choose-dest").show();
|
||||
}
|
||||
|
||||
if(isFirst == 1){
|
||||
var count = 1;
|
||||
$('.att-checkbox').each(function(){
|
||||
$(this).children('ul')
|
||||
.children('li')
|
||||
.each(function(){
|
||||
$(this).children('input').attr('name','att_check_'+count+'[]');
|
||||
});
|
||||
count++;
|
||||
})
|
||||
}
|
||||
// if(isFirst == 1){
|
||||
// var count = 1;
|
||||
// $('input[name=att_check_1\\[\\]]').each(function(){
|
||||
// $(this).attr('name','att_check_'+count+'[]');
|
||||
// $(this).attr('id','att_check_'+count);
|
||||
// $(this).attr('class','att_check_'+count+' remove-all');
|
||||
// count++;
|
||||
// });
|
||||
// }
|
||||
};
|
||||
|
||||
|
||||
function getDestOption(elem){
|
||||
var value = $(elem).val();
|
||||
//alert(value);
|
||||
var flag = false;
|
||||
var title = $(elem).data('view');
|
||||
var multiSelP = $(elem).parent().parent().parent().parent().prev('dt').children('div').children('a').children('p.multiSel');
|
||||
var tag = $('#address_'+value).next('div');
|
||||
if ($(elem).is(':checked')) {
|
||||
var html = '<span class="hida" title="' + title + '">' + title + '</span>';
|
||||
multiSelP.append(html);
|
||||
multiSelP.prev("span.choose-dest").hide();
|
||||
|
||||
|
||||
}else{
|
||||
multiSelP.children('span[title="' + title + '"]').remove();
|
||||
|
||||
}
|
||||
|
||||
if(value == -1){
|
||||
// //console.log();
|
||||
$(elem).parents('dl').parent('div').parent('div').next('div').toggle();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
1
public/js/destinations-script.min.js
vendored
Normal file
1
public/js/destinations-script.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1152
public/js/epicSmartCredit.js
vendored
Normal file
1152
public/js/epicSmartCredit.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1137
public/js/epic_custom.js
vendored
Normal file
1137
public/js/epic_custom.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/js/evlg-page.min.js
vendored
Normal file
1
public/js/evlg-page.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1833
public/js/evlg-page_111.js
vendored
Normal file
1833
public/js/evlg-page_111.js
vendored
Normal file
File diff suppressed because one or more lines are too long
31
public/js/js.input.validation.js
vendored
Normal file
31
public/js/js.input.validation.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
||||
|
||||
function onlyInteger(elem) {
|
||||
|
||||
var result = true;
|
||||
var value = event.which;
|
||||
|
||||
if (value < 48 || value > 57) {
|
||||
result = false;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function imageShow(element,img){
|
||||
var file = event.target.files[0];
|
||||
if(file.type.match(/image.*/)) {
|
||||
var imgInp = element;
|
||||
var blah = document.getElementById(img);
|
||||
const [file] = imgInp.files
|
||||
if (file) {
|
||||
blah.src = URL.createObjectURL(file)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
261
public/js/jsvalidate/custom_validation_methods.js
vendored
Normal file
261
public/js/jsvalidate/custom_validation_methods.js
vendored
Normal file
@@ -0,0 +1,261 @@
|
||||
// Domain Validation
|
||||
jQuery.validator.addMethod("domain_http", function (nname){
|
||||
if(!nname){
|
||||
return true;
|
||||
}
|
||||
if(nname.substring(0,8) == "https://"){
|
||||
return httpsCheck(nname);
|
||||
}else if(nname.substring(0,7) == "http://" ){
|
||||
return httpCheck(nname);
|
||||
}else{
|
||||
return false
|
||||
}
|
||||
|
||||
|
||||
},"Invalid website name");
|
||||
// /^[a-zA-Z0-9][a-zA-Z0-9-]{1,61}[a-zA-Z0-9]\.[a-zA-Z]{2,}$/
|
||||
jQuery.validator.addMethod("domain", function (nname)
|
||||
{
|
||||
var name = nname.replace('http://', '');
|
||||
nname = nname.replace('https://', '');
|
||||
|
||||
var arr = new Array(
|
||||
'.com', '.net', '.org', '.biz', '.coop', '.info', '.museum', '.name',
|
||||
'.pro', '.edu', '.gov', '.int', '.mil', '.ac', '.ad', '.ae', '.af', '.ag',
|
||||
'.ai', '.al', '.am', '.an', '.ao', '.aq', '.ar', '.as', '.at', '.au', '.aw',
|
||||
'.az', '.ba', '.bb', '.bd', '.be', '.bf', '.bg', '.bh', '.bi', '.bj', '.bm',
|
||||
'.bn', '.bo', '.br', '.bs', '.bt', '.bv', '.bw', '.by', '.bz', '.ca', '.cc',
|
||||
'.cd', '.cf', '.cg', '.ch', '.ci', '.ck', '.cl', '.cm', '.cn', '.co', '.cr',
|
||||
'.cu', '.cv', '.cx', '.cy', '.cz', '.de', '.dj', '.dk', '.dm', '.do', '.dz',
|
||||
'.ec', '.ee', '.eg', '.eh', '.er', '.es', '.et', '.fi', '.fj', '.fk', '.fm',
|
||||
'.fo', '.fr', '.ga', '.gd', '.ge', '.gf', '.gg', '.gh', '.gi', '.gl', '.gm',
|
||||
'.gn', '.gp', '.gq', '.gr', '.gs', '.gt', '.gu', '.gv', '.gy', '.hk', '.hm',
|
||||
'.hn', '.hr', '.ht', '.hu', '.id', '.ie', '.il', '.im', '.in', '.io', '.iq',
|
||||
'.ir', '.is', '.it', '.je', '.jm', '.jo', '.jp', '.ke', '.kg', '.kh', '.ki',
|
||||
'.km', '.kn', '.kp', '.kr', '.kw', '.ky', '.kz', '.la', '.lb', '.lc', '.li',
|
||||
'.lk', '.lr', '.ls', '.lt', '.lu', '.lv', '.ly', '.ma', '.mc', '.md', '.mg',
|
||||
'.mh', '.mk', '.ml', '.mm', '.mn', '.mo', '.mp', '.mq', '.mr', '.ms', '.mt',
|
||||
'.mu', '.mv', '.mw', '.mx', '.my', '.mz', '.na', '.nc', '.ne', '.nf', '.ng',
|
||||
'.ni', '.nl', '.no', '.np', '.nr', '.nu', '.nz', '.om', '.pa', '.pe', '.pf',
|
||||
'.pg', '.ph', '.pk', '.pl', '.pm', '.pn', '.pr', '.ps', '.pt', '.pw', '.py',
|
||||
'.qa', '.re', '.ro', '.rw', '.ru', '.sa', '.sb', '.sc', '.sd', '.se', '.sg',
|
||||
'.sh', '.si', '.sj', '.sk', '.sl', '.sm', '.sn', '.so', '.sr', '.st', '.sv',
|
||||
'.sy', '.sz', '.tc', '.td', '.tf', '.tg', '.th', '.tj', '.tk', '.tm', '.tn',
|
||||
'.to', '.tp', '.tr', '.tt', '.tv', '.tw', '.tz', '.ua', '.ug', '.uk', '.um',
|
||||
'.us', '.uy', '.uz', '.va', '.vc', '.ve', '.vg', '.vi', '.vn', '.vu', '.ws',
|
||||
'.wf', '.ye', '.yt', '.yu', '.za', '.zm', '.zw');
|
||||
|
||||
var mai = nname;
|
||||
var val = true;
|
||||
|
||||
var dot = mai.lastIndexOf(".");
|
||||
var dname = mai.substring(0, dot);
|
||||
var ext = mai.substring(dot, mai.length);
|
||||
//alert(ext);
|
||||
|
||||
if (dot > 2 && dot < 57)
|
||||
{
|
||||
for (var i = 0; i < arr.length; i++)
|
||||
{
|
||||
if (ext == arr[i])
|
||||
{
|
||||
val = true;
|
||||
break;
|
||||
} else
|
||||
{
|
||||
val = false;
|
||||
}
|
||||
}
|
||||
if (val == false)
|
||||
{
|
||||
return false;
|
||||
} else
|
||||
{
|
||||
for (var j = 0; j < dname.length; j++)
|
||||
{
|
||||
var dh = dname.charAt(j);
|
||||
var hh = dh.charCodeAt(0);
|
||||
if ((hh > 47 && hh < 59) || (hh > 64 && hh < 91) || (hh > 96 && hh < 123) || hh == 45 || hh == 46)
|
||||
{
|
||||
if ((j == 0 || j == dname.length - 1) && hh == 45)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
|
||||
}, 'Invalid domain name.');
|
||||
|
||||
|
||||
function httpsCheck(nname){
|
||||
var name = nname.replace('http://', '');
|
||||
nname = nname.replace('https://', '');
|
||||
|
||||
var arr = new Array(
|
||||
'.com', '.net', '.org', '.biz', '.coop', '.info', '.museum', '.name',
|
||||
'.pro', '.edu', '.gov', '.int', '.mil', '.ac', '.ad', '.ae', '.af', '.ag',
|
||||
'.ai', '.al', '.am', '.an', '.ao', '.aq', '.ar', '.as', '.at', '.au', '.aw',
|
||||
'.az', '.ba', '.bb', '.bd', '.be', '.bf', '.bg', '.bh', '.bi', '.bj', '.bm',
|
||||
'.bn', '.bo', '.br', '.bs', '.bt', '.bv', '.bw', '.by', '.bz', '.ca', '.cc',
|
||||
'.cd', '.cf', '.cg', '.ch', '.ci', '.ck', '.cl', '.cm', '.cn', '.co', '.cr',
|
||||
'.cu', '.cv', '.cx', '.cy', '.cz', '.de', '.dj', '.dk', '.dm', '.do', '.dz',
|
||||
'.ec', '.ee', '.eg', '.eh', '.er', '.es', '.et', '.fi', '.fj', '.fk', '.fm',
|
||||
'.fo', '.fr', '.ga', '.gd', '.ge', '.gf', '.gg', '.gh', '.gi', '.gl', '.gm',
|
||||
'.gn', '.gp', '.gq', '.gr', '.gs', '.gt', '.gu', '.gv', '.gy', '.hk', '.hm',
|
||||
'.hn', '.hr', '.ht', '.hu', '.id', '.ie', '.il', '.im', '.in', '.io', '.iq',
|
||||
'.ir', '.is', '.it', '.je', '.jm', '.jo', '.jp', '.ke', '.kg', '.kh', '.ki',
|
||||
'.km', '.kn', '.kp', '.kr', '.kw', '.ky', '.kz', '.la', '.lb', '.lc', '.li',
|
||||
'.lk', '.lr', '.ls', '.lt', '.lu', '.lv', '.ly', '.ma', '.mc', '.md', '.mg',
|
||||
'.mh', '.mk', '.ml', '.mm', '.mn', '.mo', '.mp', '.mq', '.mr', '.ms', '.mt',
|
||||
'.mu', '.mv', '.mw', '.mx', '.my', '.mz', '.na', '.nc', '.ne', '.nf', '.ng',
|
||||
'.ni', '.nl', '.no', '.np', '.nr', '.nu', '.nz', '.om', '.pa', '.pe', '.pf',
|
||||
'.pg', '.ph', '.pk', '.pl', '.pm', '.pn', '.pr', '.ps', '.pt', '.pw', '.py',
|
||||
'.qa', '.re', '.ro', '.rw', '.ru', '.sa', '.sb', '.sc', '.sd', '.se', '.sg',
|
||||
'.sh', '.si', '.sj', '.sk', '.sl', '.sm', '.sn', '.so', '.sr', '.st', '.sv',
|
||||
'.sy', '.sz', '.tc', '.td', '.tf', '.tg', '.th', '.tj', '.tk', '.tm', '.tn',
|
||||
'.to', '.tp', '.tr', '.tt', '.tv', '.tw', '.tz', '.ua', '.ug', '.uk', '.um',
|
||||
'.us', '.uy', '.uz', '.va', '.vc', '.ve', '.vg', '.vi', '.vn', '.vu', '.ws',
|
||||
'.wf', '.ye', '.yt', '.yu', '.za', '.zm', '.zw');
|
||||
|
||||
var mai = nname;
|
||||
var val = true;
|
||||
|
||||
var dot = mai.lastIndexOf(".");
|
||||
var dname = mai.substring(0, dot);
|
||||
var ext = mai.substring(dot, mai.length);
|
||||
//alert(ext);
|
||||
|
||||
if (dot > 2 && dot < 57)
|
||||
{
|
||||
for (var i = 0; i < arr.length; i++)
|
||||
{
|
||||
if (ext == arr[i])
|
||||
{
|
||||
val = true;
|
||||
break;
|
||||
} else
|
||||
{
|
||||
val = false;
|
||||
}
|
||||
}
|
||||
if (val == false)
|
||||
{
|
||||
return false;
|
||||
} else
|
||||
{
|
||||
for (var j = 0; j < dname.length; j++)
|
||||
{
|
||||
var dh = dname.charAt(j);
|
||||
var hh = dh.charCodeAt(0);
|
||||
if ((hh > 47 && hh < 59) || (hh > 64 && hh < 91) || (hh > 96 && hh < 123) || hh == 45 || hh == 46)
|
||||
{
|
||||
if ((j == 0 || j == dname.length - 1) && hh == 45)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
function httpCheck(nname){
|
||||
var name = nname.replace('http://', '');
|
||||
nname = nname.replace('http://', '');
|
||||
|
||||
var arr = new Array(
|
||||
'.com', '.net', '.org', '.biz', '.coop', '.info', '.museum', '.name',
|
||||
'.pro', '.edu', '.gov', '.int', '.mil', '.ac', '.ad', '.ae', '.af', '.ag',
|
||||
'.ai', '.al', '.am', '.an', '.ao', '.aq', '.ar', '.as', '.at', '.au', '.aw',
|
||||
'.az', '.ba', '.bb', '.bd', '.be', '.bf', '.bg', '.bh', '.bi', '.bj', '.bm',
|
||||
'.bn', '.bo', '.br', '.bs', '.bt', '.bv', '.bw', '.by', '.bz', '.ca', '.cc',
|
||||
'.cd', '.cf', '.cg', '.ch', '.ci', '.ck', '.cl', '.cm', '.cn', '.co', '.cr',
|
||||
'.cu', '.cv', '.cx', '.cy', '.cz', '.de', '.dj', '.dk', '.dm', '.do', '.dz',
|
||||
'.ec', '.ee', '.eg', '.eh', '.er', '.es', '.et', '.fi', '.fj', '.fk', '.fm',
|
||||
'.fo', '.fr', '.ga', '.gd', '.ge', '.gf', '.gg', '.gh', '.gi', '.gl', '.gm',
|
||||
'.gn', '.gp', '.gq', '.gr', '.gs', '.gt', '.gu', '.gv', '.gy', '.hk', '.hm',
|
||||
'.hn', '.hr', '.ht', '.hu', '.id', '.ie', '.il', '.im', '.in', '.io', '.iq',
|
||||
'.ir', '.is', '.it', '.je', '.jm', '.jo', '.jp', '.ke', '.kg', '.kh', '.ki',
|
||||
'.km', '.kn', '.kp', '.kr', '.kw', '.ky', '.kz', '.la', '.lb', '.lc', '.li',
|
||||
'.lk', '.lr', '.ls', '.lt', '.lu', '.lv', '.ly', '.ma', '.mc', '.md', '.mg',
|
||||
'.mh', '.mk', '.ml', '.mm', '.mn', '.mo', '.mp', '.mq', '.mr', '.ms', '.mt',
|
||||
'.mu', '.mv', '.mw', '.mx', '.my', '.mz', '.na', '.nc', '.ne', '.nf', '.ng',
|
||||
'.ni', '.nl', '.no', '.np', '.nr', '.nu', '.nz', '.om', '.pa', '.pe', '.pf',
|
||||
'.pg', '.ph', '.pk', '.pl', '.pm', '.pn', '.pr', '.ps', '.pt', '.pw', '.py',
|
||||
'.qa', '.re', '.ro', '.rw', '.ru', '.sa', '.sb', '.sc', '.sd', '.se', '.sg',
|
||||
'.sh', '.si', '.sj', '.sk', '.sl', '.sm', '.sn', '.so', '.sr', '.st', '.sv',
|
||||
'.sy', '.sz', '.tc', '.td', '.tf', '.tg', '.th', '.tj', '.tk', '.tm', '.tn',
|
||||
'.to', '.tp', '.tr', '.tt', '.tv', '.tw', '.tz', '.ua', '.ug', '.uk', '.um',
|
||||
'.us', '.uy', '.uz', '.va', '.vc', '.ve', '.vg', '.vi', '.vn', '.vu', '.ws',
|
||||
'.wf', '.ye', '.yt', '.yu', '.za', '.zm', '.zw');
|
||||
|
||||
var mai = nname;
|
||||
var val = true;
|
||||
|
||||
var dot = mai.lastIndexOf(".");
|
||||
var dname = mai.substring(0, dot);
|
||||
var ext = mai.substring(dot, mai.length);
|
||||
//alert(ext);
|
||||
|
||||
if (dot > 2 && dot < 57)
|
||||
{
|
||||
for (var i = 0; i < arr.length; i++)
|
||||
{
|
||||
if (ext == arr[i])
|
||||
{
|
||||
val = true;
|
||||
break;
|
||||
} else
|
||||
{
|
||||
val = false;
|
||||
}
|
||||
}
|
||||
if (val == false)
|
||||
{
|
||||
return false;
|
||||
} else
|
||||
{
|
||||
for (var j = 0; j < dname.length; j++)
|
||||
{
|
||||
var dh = dname.charAt(j);
|
||||
var hh = dh.charCodeAt(0);
|
||||
if ((hh > 47 && hh < 59) || (hh > 64 && hh < 91) || (hh > 96 && hh < 123) || hh == 45 || hh == 46)
|
||||
{
|
||||
if ((j == 0 || j == dname.length - 1) && hh == 45)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
jQuery.validator.addMethod("textInMce", function textInMce(value, element){
|
||||
return $('textarea.editable').html().length == 0;
|
||||
}, "The field is required");
|
||||
|
||||
// Domain Validation
|
||||
10
public/js/jsvalidate/jquery.validate.min.js
vendored
Normal file
10
public/js/jsvalidate/jquery.validate.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
public/js/jsvalidate/validate-latest.js
vendored
Normal file
4
public/js/jsvalidate/validate-latest.js
vendored
Normal file
File diff suppressed because one or more lines are too long
80
public/js/laravel.js
vendored
Normal file
80
public/js/laravel.js
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
<a href="posts/2" data-method="delete"> <---- We want to send an HTTP DELETE request
|
||||
- Or, request confirmation in the process -
|
||||
<a href="posts/2" data-method="delete" data-confirm="Are you sure?">
|
||||
|
||||
Add this to your view:
|
||||
<script>
|
||||
window.csrfToken = '<?php echo csrf_token(); ?>';
|
||||
</script>
|
||||
<script src="/js/deleteHandler.js"></script>
|
||||
*/
|
||||
|
||||
(function() {
|
||||
|
||||
var laravel = {
|
||||
initialize: function() {
|
||||
this.registerEvents();
|
||||
},
|
||||
|
||||
registerEvents: function() {
|
||||
$('body').on('click', 'a[data-method]', this.handleMethod);
|
||||
},
|
||||
|
||||
handleMethod: function(e) {
|
||||
var link = $(this);
|
||||
var httpMethod = link.data('method').toUpperCase();
|
||||
var form;
|
||||
|
||||
// If the data-method attribute is not PUT or DELETE,
|
||||
// then we don't know what to do. Just ignore.
|
||||
if ( $.inArray(httpMethod, ['PUT', 'DELETE']) === - 1 ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Allow user to optionally provide data-confirm="Are you sure?"
|
||||
if ( link.data('confirm') ) {
|
||||
if ( ! laravel.verifyConfirm(link) ) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
form = laravel.createForm(link);
|
||||
form.submit();
|
||||
|
||||
e.preventDefault();
|
||||
},
|
||||
|
||||
verifyConfirm: function(link) {
|
||||
return confirm(link.data('confirm'));
|
||||
},
|
||||
|
||||
createForm: function(link) {
|
||||
var form =
|
||||
$('<form>', {
|
||||
'method': 'POST',
|
||||
'action': link.attr('href')
|
||||
});
|
||||
|
||||
var token =
|
||||
$('<input>', {
|
||||
'name': '_token',
|
||||
'type': 'hidden',
|
||||
'value': window.csrfToken
|
||||
});
|
||||
|
||||
var hiddenInput =
|
||||
$('<input>', {
|
||||
'name': '_method',
|
||||
'type': 'hidden',
|
||||
'value': link.data('method')
|
||||
});
|
||||
|
||||
return form.append(token, hiddenInput)
|
||||
.appendTo('body');
|
||||
}
|
||||
};
|
||||
|
||||
laravel.initialize();
|
||||
|
||||
})();
|
||||
1860
public/js/magnify/jquery.magnific-popup.js
vendored
Normal file
1860
public/js/magnify/jquery.magnific-popup.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
public/js/magnify/jquery.magnific-popup.min.js
vendored
Normal file
4
public/js/magnify/jquery.magnific-popup.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
351
public/js/magnify/magnific-popup.css
vendored
Normal file
351
public/js/magnify/magnific-popup.css
vendored
Normal file
@@ -0,0 +1,351 @@
|
||||
/* Magnific Popup CSS */
|
||||
.mfp-bg {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1042;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
background: #0b0b0b;
|
||||
opacity: 0.8; }
|
||||
|
||||
.mfp-wrap {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 300000;
|
||||
position: fixed;
|
||||
outline: none !important;
|
||||
-webkit-backface-visibility: hidden; }
|
||||
|
||||
.mfp-container {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
padding: 0 8px;
|
||||
box-sizing: border-box; }
|
||||
|
||||
.mfp-container:before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle; }
|
||||
|
||||
.mfp-align-top .mfp-container:before {
|
||||
display: none; }
|
||||
|
||||
.mfp-content {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
z-index: 1045; }
|
||||
|
||||
.mfp-inline-holder .mfp-content,
|
||||
.mfp-ajax-holder .mfp-content {
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-ajax-cur {
|
||||
cursor: progress; }
|
||||
|
||||
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
|
||||
cursor: -moz-zoom-out;
|
||||
cursor: -webkit-zoom-out;
|
||||
cursor: zoom-out; }
|
||||
|
||||
.mfp-zoom {
|
||||
cursor: pointer;
|
||||
cursor: -webkit-zoom-in;
|
||||
cursor: -moz-zoom-in;
|
||||
cursor: zoom-in; }
|
||||
|
||||
.mfp-auto-cursor .mfp-content {
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-close,
|
||||
.mfp-arrow,
|
||||
.mfp-preloader,
|
||||
.mfp-counter {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none; }
|
||||
|
||||
.mfp-loading.mfp-figure {
|
||||
display: none; }
|
||||
|
||||
.mfp-hide {
|
||||
display: none !important; }
|
||||
|
||||
.mfp-preloader {
|
||||
color: #CCC;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: auto;
|
||||
text-align: center;
|
||||
margin-top: -0.8em;
|
||||
left: 8px;
|
||||
right: 8px;
|
||||
z-index: 1044; }
|
||||
.mfp-preloader a {
|
||||
color: #CCC; }
|
||||
.mfp-preloader a:hover {
|
||||
color: #FFF; }
|
||||
|
||||
.mfp-s-ready .mfp-preloader {
|
||||
display: none; }
|
||||
|
||||
.mfp-s-error .mfp-content {
|
||||
display: none; }
|
||||
|
||||
button.mfp-close,
|
||||
button.mfp-arrow {
|
||||
overflow: visible;
|
||||
cursor: pointer;
|
||||
background: transparent;
|
||||
border: 0;
|
||||
-webkit-appearance: none;
|
||||
display: block;
|
||||
outline: none;
|
||||
padding: 0;
|
||||
z-index: 1046;
|
||||
box-shadow: none;
|
||||
touch-action: manipulation; }
|
||||
|
||||
button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0; }
|
||||
|
||||
.mfp-close {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
opacity: 0.65;
|
||||
padding: 0 0 18px 10px;
|
||||
color: #FFF;
|
||||
font-style: normal;
|
||||
font-size: 28px;
|
||||
font-family: Arial, Baskerville, monospace; }
|
||||
.mfp-close:hover,
|
||||
.mfp-close:focus {
|
||||
opacity: 1; }
|
||||
.mfp-close:active {
|
||||
top: 1px; }
|
||||
|
||||
.mfp-close-btn-in .mfp-close {
|
||||
color: #333; }
|
||||
|
||||
.mfp-image-holder .mfp-close,
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
color: #FFF;
|
||||
right: -6px;
|
||||
text-align: right;
|
||||
padding-right: 6px;
|
||||
width: 100%; }
|
||||
|
||||
.mfp-counter {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
color: #CCC;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
white-space: nowrap; }
|
||||
|
||||
.mfp-arrow {
|
||||
position: absolute;
|
||||
opacity: 0.65;
|
||||
margin: 0;
|
||||
top: 50%;
|
||||
margin-top: -55px;
|
||||
padding: 0;
|
||||
width: 90px;
|
||||
height: 110px;
|
||||
-webkit-tap-highlight-color: transparent; }
|
||||
.mfp-arrow:active {
|
||||
margin-top: -54px; }
|
||||
.mfp-arrow:hover,
|
||||
.mfp-arrow:focus {
|
||||
opacity: 1; }
|
||||
.mfp-arrow:before,
|
||||
.mfp-arrow:after {
|
||||
content: '';
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
margin-top: 35px;
|
||||
margin-left: 35px;
|
||||
border: medium inset transparent; }
|
||||
.mfp-arrow:after {
|
||||
border-top-width: 13px;
|
||||
border-bottom-width: 13px;
|
||||
top: 8px; }
|
||||
.mfp-arrow:before {
|
||||
border-top-width: 21px;
|
||||
border-bottom-width: 21px;
|
||||
opacity: 0.7; }
|
||||
|
||||
.mfp-arrow-left {
|
||||
left: 0; }
|
||||
.mfp-arrow-left:after {
|
||||
border-right: 17px solid #FFF;
|
||||
margin-left: 31px; }
|
||||
.mfp-arrow-left:before {
|
||||
margin-left: 25px;
|
||||
border-right: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-arrow-right {
|
||||
right: 0; }
|
||||
.mfp-arrow-right:after {
|
||||
border-left: 17px solid #FFF;
|
||||
margin-left: 39px; }
|
||||
.mfp-arrow-right:before {
|
||||
border-left: 27px solid #3F3F3F; }
|
||||
|
||||
.mfp-iframe-holder {
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px; }
|
||||
.mfp-iframe-holder .mfp-content {
|
||||
line-height: 0;
|
||||
width: 100%;
|
||||
max-width: 900px; }
|
||||
.mfp-iframe-holder .mfp-close {
|
||||
top: -40px; }
|
||||
|
||||
.mfp-iframe-scaler {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
padding-top: 56.25%; }
|
||||
.mfp-iframe-scaler iframe {
|
||||
position: absolute;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #000; }
|
||||
|
||||
/* Main image in popup */
|
||||
img.mfp-img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 40px 0 40px;
|
||||
margin: 0 auto; }
|
||||
|
||||
/* The shadow behind the image */
|
||||
.mfp-figure {
|
||||
line-height: 0; }
|
||||
.mfp-figure:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 40px;
|
||||
bottom: 40px;
|
||||
display: block;
|
||||
right: 0;
|
||||
width: auto;
|
||||
height: auto;
|
||||
z-index: -1;
|
||||
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
|
||||
background: #444; }
|
||||
.mfp-figure small {
|
||||
color: #BDBDBD;
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
line-height: 14px; }
|
||||
.mfp-figure figure {
|
||||
margin: 0; }
|
||||
|
||||
.mfp-bottom-bar {
|
||||
margin-top: -36px;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
cursor: auto; }
|
||||
|
||||
.mfp-title {
|
||||
text-align: left;
|
||||
line-height: 18px;
|
||||
color: #F3F3F3;
|
||||
word-wrap: break-word;
|
||||
padding-right: 36px; }
|
||||
|
||||
.mfp-image-holder .mfp-content {
|
||||
max-width: 100%; }
|
||||
|
||||
.mfp-gallery .mfp-image-holder .mfp-figure {
|
||||
cursor: pointer; }
|
||||
|
||||
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
|
||||
/**
|
||||
* Remove all paddings around the image on small screen
|
||||
*/
|
||||
.mfp-img-mobile .mfp-image-holder {
|
||||
padding-left: 0;
|
||||
padding-right: 0; }
|
||||
.mfp-img-mobile img.mfp-img {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-figure:after {
|
||||
top: 0;
|
||||
bottom: 0; }
|
||||
.mfp-img-mobile .mfp-figure small {
|
||||
display: inline;
|
||||
margin-left: 5px; }
|
||||
.mfp-img-mobile .mfp-bottom-bar {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
bottom: 0;
|
||||
margin: 0;
|
||||
top: auto;
|
||||
padding: 3px 5px;
|
||||
position: fixed;
|
||||
box-sizing: border-box; }
|
||||
.mfp-img-mobile .mfp-bottom-bar:empty {
|
||||
padding: 0; }
|
||||
.mfp-img-mobile .mfp-counter {
|
||||
right: 5px;
|
||||
top: 3px; }
|
||||
.mfp-img-mobile .mfp-close {
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
position: fixed;
|
||||
text-align: center;
|
||||
padding: 0; } }
|
||||
|
||||
@media all and (max-width: 900px) {
|
||||
.mfp-arrow {
|
||||
-webkit-transform: scale(0.75);
|
||||
transform: scale(0.75); }
|
||||
.mfp-arrow-left {
|
||||
-webkit-transform-origin: 0;
|
||||
transform-origin: 0; }
|
||||
.mfp-arrow-right {
|
||||
-webkit-transform-origin: 100%;
|
||||
transform-origin: 100%; }
|
||||
.mfp-container {
|
||||
padding-left: 6px;
|
||||
padding-right: 6px; } }
|
||||
9
public/js/objectify.js
vendored
Normal file
9
public/js/objectify.js
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
function objectifyForm(formArray) {
|
||||
//serialize data function
|
||||
var returnArray = {};
|
||||
for (var i = 0; i < formArray.length; i++){
|
||||
returnArray[formArray[i]['name']] = formArray[i]['value'];
|
||||
}
|
||||
console.log('returnArray',returnArray)
|
||||
return returnArray;
|
||||
}
|
||||
109
public/js/register.js
vendored
Normal file
109
public/js/register.js
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
|
||||
function ajaxRequestForRegister(url,method, formData){
|
||||
// Fire off the request to /form.php
|
||||
$('.loading').show()
|
||||
|
||||
var request = $.ajax({
|
||||
url: url,
|
||||
type: method,
|
||||
data: formData,
|
||||
headers: {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')},
|
||||
});
|
||||
|
||||
// Callback handler that will be called on success
|
||||
request.done(function (response, textStatus, jqXHR){
|
||||
console.log("response",response);
|
||||
// Log a message to the console
|
||||
var selector = $('.register-body .main')
|
||||
|
||||
if(response?.original){
|
||||
response = response.original
|
||||
}
|
||||
if(response.status) {
|
||||
if (formData['action'] == "CREATE_ACCOUNT" || formData['action'] == "ADD_PROFILE"){
|
||||
if(response?.message){
|
||||
sweetAlertPopup(response.message,"warning",(res)=>{})
|
||||
}else {
|
||||
selector.html(response.html)
|
||||
}
|
||||
}else if(formData['action'] == "CREDIT_REPORT"){
|
||||
sweetAlertPopup("Package Taken","success",(res)=>{
|
||||
location.href = response.redirect_url;
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
//location.href = response.redirect_url;
|
||||
|
||||
|
||||
});
|
||||
|
||||
|
||||
const sweetAlertPopup = (message,icon,callback)=>{
|
||||
Swal.fire({
|
||||
text: message,
|
||||
icon: icon,
|
||||
showCancelButton: false,
|
||||
confirmButtonColor: '#3085d6',
|
||||
cancelButtonColor: '#d33',
|
||||
confirmButtonText: 'OK'
|
||||
}).then(callback)
|
||||
}
|
||||
|
||||
// Callback handler that will be called on failure
|
||||
request.fail(function (jqXHR, textStatus, errorThrown){
|
||||
// Log the error to the console
|
||||
console.error(
|
||||
"The following error occurred: "+
|
||||
textStatus, errorThrown
|
||||
);
|
||||
});
|
||||
|
||||
// Callback handler that will be called regardless
|
||||
// if the request failed or succeeded
|
||||
request.always(function () {
|
||||
// Reenable the inputs
|
||||
console.log("Always")
|
||||
$('.loading').hide()
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function submitPage(btn, formname) {
|
||||
event.preventDefault();
|
||||
var form = $("#" + formname)
|
||||
if (form.valid()) {
|
||||
|
||||
var formData = objectifyForm($("#" + formname).serializeArray())
|
||||
if(formname == "createAccountForm") {
|
||||
formData['action'] = "CREATE_ACCOUNT"
|
||||
}else if(formname == "createProfileForm"){
|
||||
formData['action'] = "ADD_PROFILE"
|
||||
}
|
||||
console.log(formData)
|
||||
ajaxRequestForRegister(URL,"POST",formData);
|
||||
//btn.onclick = function () { return disableButton(); };
|
||||
}
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
function getPackage(package_id){
|
||||
Swal.fire({
|
||||
text: "Are you sure want to take the package?",
|
||||
icon: 'warning',
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: '#3085d6',
|
||||
cancelButtonColor: '#d33',
|
||||
confirmButtonText: 'Yes',
|
||||
cancelButtonText:'No'
|
||||
}).then((result) => {
|
||||
if(result.value) {
|
||||
var formData = {}
|
||||
formData['action'] = "CREDIT_REPORT"
|
||||
formData['package_id'] = package_id
|
||||
ajaxRequestForRegister(URL, "POST", formData);
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
1
public/js/select2.full.min.js
vendored
Normal file
1
public/js/select2.full.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
public/js/summernote/font/summernote.eot
Normal file
BIN
public/js/summernote/font/summernote.eot
Normal file
Binary file not shown.
BIN
public/js/summernote/font/summernote.ttf
Normal file
BIN
public/js/summernote/font/summernote.ttf
Normal file
Binary file not shown.
BIN
public/js/summernote/font/summernote.woff
Normal file
BIN
public/js/summernote/font/summernote.woff
Normal file
Binary file not shown.
156
public/js/summernote/lang/summernote-ar-AR.js
vendored
Normal file
156
public/js/summernote/lang/summernote-ar-AR.js
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ar-AR': {
|
||||
font: {
|
||||
bold: 'عريض',
|
||||
italic: 'مائل',
|
||||
underline: 'تحته خط',
|
||||
clear: 'مسح التنسيق',
|
||||
height: 'إرتفاع السطر',
|
||||
name: 'الخط',
|
||||
strikethrough: 'فى وسطه خط',
|
||||
subscript: 'مخطوطة',
|
||||
superscript: 'حرف فوقي',
|
||||
size: 'الحجم'
|
||||
},
|
||||
image: {
|
||||
image: 'صورة',
|
||||
insert: 'إضافة صورة',
|
||||
resizeFull: 'الحجم بالكامل',
|
||||
resizeHalf: 'تصغير للنصف',
|
||||
resizeQuarter: 'تصغير للربع',
|
||||
floatLeft: 'تطيير لليسار',
|
||||
floatRight: 'تطيير لليمين',
|
||||
floatNone: 'ثابته',
|
||||
shapeRounded: 'الشكل: تقريب',
|
||||
shapeCircle: 'الشكل: دائرة',
|
||||
shapeThumbnail: 'الشكل: صورة مصغرة',
|
||||
shapeNone: 'الشكل: لا شيء',
|
||||
dragImageHere: 'إدرج الصورة هنا',
|
||||
dropImage: 'إسقاط صورة أو نص',
|
||||
selectFromFiles: 'حدد ملف',
|
||||
maximumFileSize: 'الحد الأقصى لحجم الملف',
|
||||
maximumFileSizeError: 'تم تجاوز الحد الأقصى لحجم الملف',
|
||||
url: 'رابط الصورة',
|
||||
remove: 'حذف الصورة',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'فيديو',
|
||||
videoLink: 'رابط الفيديو',
|
||||
insert: 'إدراج الفيديو',
|
||||
url: 'رابط الفيديو',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'رابط رابط',
|
||||
insert: 'إدراج',
|
||||
unlink: 'حذف الرابط',
|
||||
edit: 'تعديل',
|
||||
textToDisplay: 'النص',
|
||||
url: 'مسار الرابط',
|
||||
openInNewWindow: 'فتح في نافذة جديدة'
|
||||
},
|
||||
table: {
|
||||
table: 'جدول',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'إدراج خط أفقي'
|
||||
},
|
||||
style: {
|
||||
style: 'تنسيق',
|
||||
p: 'عادي',
|
||||
blockquote: 'إقتباس',
|
||||
pre: 'شفيرة',
|
||||
h1: 'عنوان رئيسي 1',
|
||||
h2: 'عنوان رئيسي 2',
|
||||
h3: 'عنوان رئيسي 3',
|
||||
h4: 'عنوان رئيسي 4',
|
||||
h5: 'عنوان رئيسي 5',
|
||||
h6: 'عنوان رئيسي 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'قائمة مُنقطة',
|
||||
ordered: 'قائمة مُرقمة'
|
||||
},
|
||||
options: {
|
||||
help: 'مساعدة',
|
||||
fullscreen: 'حجم الشاشة بالكامل',
|
||||
codeview: 'شفيرة المصدر'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'فقرة',
|
||||
outdent: 'محاذاة للخارج',
|
||||
indent: 'محاذاة للداخل',
|
||||
left: 'محاذاة لليسار',
|
||||
center: 'توسيط',
|
||||
right: 'محاذاة لليمين',
|
||||
justify: 'ملئ السطر'
|
||||
},
|
||||
color: {
|
||||
recent: 'تم إستخدامه',
|
||||
more: 'المزيد',
|
||||
background: 'لون الخلفية',
|
||||
foreground: 'لون النص',
|
||||
transparent: 'شفاف',
|
||||
setTransparent: 'بدون خلفية',
|
||||
reset: 'إعادة الضبط',
|
||||
resetToDefault: 'إعادة الضبط',
|
||||
cpSelect: 'اختار'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'إختصارات',
|
||||
close: 'غلق',
|
||||
textFormatting: 'تنسيق النص',
|
||||
action: 'Action',
|
||||
paragraphFormatting: 'تنسيق الفقرة',
|
||||
documentStyle: 'تنسيق المستند',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'تراجع',
|
||||
redo: 'إعادة'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
156
public/js/summernote/lang/summernote-bg-BG.js
vendored
Normal file
156
public/js/summernote/lang/summernote-bg-BG.js
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'bg-BG': {
|
||||
font: {
|
||||
bold: 'Удебелен',
|
||||
italic: 'Наклонен',
|
||||
underline: 'Подчертан',
|
||||
clear: 'Изчисти стиловете',
|
||||
height: 'Височина',
|
||||
name: 'Шрифт',
|
||||
strikethrough: 'Задраскано',
|
||||
subscript: 'Долен индекс',
|
||||
superscript: 'Горен индекс',
|
||||
size: 'Размер на шрифта'
|
||||
},
|
||||
image: {
|
||||
image: 'Изображение',
|
||||
insert: 'Постави картинка',
|
||||
resizeFull: 'Цял размер',
|
||||
resizeHalf: 'Размер на 50%',
|
||||
resizeQuarter: 'Размер на 25%',
|
||||
floatLeft: 'Подравни в ляво',
|
||||
floatRight: 'Подравни в дясно',
|
||||
floatNone: 'Без подравняване',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Пуснете изображението тук',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Изберете файл',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL адрес на изображение',
|
||||
remove: 'Премахни изображение',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Връзка',
|
||||
insert: 'Добави връзка',
|
||||
unlink: 'Премахни връзка',
|
||||
edit: 'Промени',
|
||||
textToDisplay: 'Текст за показване',
|
||||
url: 'URL адрес',
|
||||
openInNewWindow: 'Отвори в нов прозорец'
|
||||
},
|
||||
table: {
|
||||
table: 'Таблица',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Добави хоризонтална линия'
|
||||
},
|
||||
style: {
|
||||
style: 'Стил',
|
||||
p: 'Нормален',
|
||||
blockquote: 'Цитат',
|
||||
pre: 'Код',
|
||||
h1: 'Заглавие 1',
|
||||
h2: 'Заглавие 2',
|
||||
h3: 'Заглавие 3',
|
||||
h4: 'Заглавие 4',
|
||||
h5: 'Заглавие 5',
|
||||
h6: 'Заглавие 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Символен списък',
|
||||
ordered: 'Цифров списък'
|
||||
},
|
||||
options: {
|
||||
help: 'Помощ',
|
||||
fullscreen: 'На цял екран',
|
||||
codeview: 'Преглед на код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Намаляване на отстъпа',
|
||||
indent: 'Абзац',
|
||||
left: 'Подравняване в ляво',
|
||||
center: 'Център',
|
||||
right: 'Подравняване в дясно',
|
||||
justify: 'Разтягане по ширина'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последния избран цвят',
|
||||
more: 'Още цветове',
|
||||
background: 'Цвят на фона',
|
||||
foreground: 'Цвят на шрифта',
|
||||
transparent: 'Прозрачен',
|
||||
setTransparent: 'Направете прозрачен',
|
||||
reset: 'Възстанови',
|
||||
resetToDefault: 'Възстанови оригиналните',
|
||||
cpSelect: 'Изберете'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Клавишни комбинации',
|
||||
close: 'Затвори',
|
||||
textFormatting: 'Форматиране на текста',
|
||||
action: 'Действие',
|
||||
paragraphFormatting: 'Форматиране на параграф',
|
||||
documentStyle: 'Стил на документа',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Назад',
|
||||
redo: 'Напред'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-ca-ES.js
vendored
Normal file
155
public/js/summernote/lang/summernote-ca-ES.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ca-ES': {
|
||||
font: {
|
||||
bold: 'Negreta',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subratllat',
|
||||
clear: 'Treure estil de lletra',
|
||||
height: 'Alçada de línia',
|
||||
name: 'Font',
|
||||
strikethrough: 'Ratllat',
|
||||
subscript: 'Subíndex',
|
||||
superscript: 'Superíndex',
|
||||
size: 'Mida de lletra'
|
||||
},
|
||||
image: {
|
||||
image: 'Imatge',
|
||||
insert: 'Inserir imatge',
|
||||
resizeFull: 'Redimensionar a mida completa',
|
||||
resizeHalf: 'Redimensionar a la meitat',
|
||||
resizeQuarter: 'Redimensionar a un quart',
|
||||
floatLeft: 'Alinear a l\'esquerra',
|
||||
floatRight: 'Alinear a la dreta',
|
||||
floatNone: 'No alinear',
|
||||
shapeRounded: 'Forma: Arrodonit',
|
||||
shapeCircle: 'Forma: Cercle',
|
||||
shapeThumbnail: 'Forma: Marc',
|
||||
shapeNone: 'Forma: Cap',
|
||||
dragImageHere: 'Arrossegueu una imatge o text aquí',
|
||||
dropImage: 'Deixa anar aquí una imatge o un text',
|
||||
selectFromFiles: 'Seleccioneu des dels arxius',
|
||||
maximumFileSize: 'Mida màxima de l\'arxiu',
|
||||
maximumFileSizeError: 'La mida màxima de l\'arxiu s\'ha superat.',
|
||||
url: 'URL de la imatge',
|
||||
remove: 'Eliminar imatge',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Enllaç del vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL del vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Enllaç',
|
||||
insert: 'Inserir enllaç',
|
||||
unlink: 'Treure enllaç',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Text per mostrar',
|
||||
url: 'Cap a quina URL porta l\'enllaç?',
|
||||
openInNewWindow: 'Obrir en una finestra nova'
|
||||
},
|
||||
table: {
|
||||
table: 'Taula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir línia horitzontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estil',
|
||||
p: 'p',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Codi',
|
||||
h1: 'Títol 1',
|
||||
h2: 'Títol 2',
|
||||
h3: 'Títol 3',
|
||||
h4: 'Títol 4',
|
||||
h5: 'Títol 5',
|
||||
h6: 'Títol 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Llista desendreçada',
|
||||
ordered: 'Llista endreçada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajut',
|
||||
fullscreen: 'Pantalla sencera',
|
||||
codeview: 'Veure codi font'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paràgraf',
|
||||
outdent: 'Menys tabulació',
|
||||
indent: 'Més tabulació',
|
||||
left: 'Alinear a l\'esquerra',
|
||||
center: 'Alinear al mig',
|
||||
right: 'Alinear a la dreta',
|
||||
justify: 'Justificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Últim color',
|
||||
more: 'Més colors',
|
||||
background: 'Color de fons',
|
||||
foreground: 'Color de lletra',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Establir transparent',
|
||||
reset: 'Restablir',
|
||||
resetToDefault: 'Restablir per defecte'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Dreceres de teclat',
|
||||
close: 'Tancar',
|
||||
textFormatting: 'Format de text',
|
||||
action: 'Acció',
|
||||
paragraphFormatting: 'Format de paràgraf',
|
||||
documentStyle: 'Estil del document',
|
||||
extraKeys: 'Tecles adicionals'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir paràgraf',
|
||||
'undo': 'Desfer l\'última acció',
|
||||
'redo': 'Refer l\'última acció',
|
||||
'tab': 'Tabular',
|
||||
'untab': 'Eliminar tabulació',
|
||||
'bold': 'Establir estil negreta',
|
||||
'italic': 'Establir estil cursiva',
|
||||
'underline': 'Establir estil subratllat',
|
||||
'strikethrough': 'Establir estil ratllat',
|
||||
'removeFormat': 'Netejar estil',
|
||||
'justifyLeft': 'Alinear a l\'esquerra',
|
||||
'justifyCenter': 'Alinear al centre',
|
||||
'justifyRight': 'Alinear a la dreta',
|
||||
'justifyFull': 'Justificar',
|
||||
'insertUnorderedList': 'Inserir llista desendreçada',
|
||||
'insertOrderedList': 'Inserir llista endreçada',
|
||||
'outdent': 'Reduïr tabulació del paràgraf',
|
||||
'indent': 'Augmentar tabulació del paràgraf',
|
||||
'formatPara': 'Canviar l\'estil del bloc com a un paràgraf (etiqueta P)',
|
||||
'formatH1': 'Canviar l\'estil del bloc com a un H1',
|
||||
'formatH2': 'Canviar l\'estil del bloc com a un H2',
|
||||
'formatH3': 'Canviar l\'estil del bloc com a un H3',
|
||||
'formatH4': 'Canviar l\'estil del bloc com a un H4',
|
||||
'formatH5': 'Canviar l\'estil del bloc com a un H5',
|
||||
'formatH6': 'Canviar l\'estil del bloc com a un H6',
|
||||
'insertHorizontalRule': 'Inserir una línia horitzontal',
|
||||
'linkDialog.show': 'Mostrar panel d\'enllaços'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfer',
|
||||
redo: 'Refer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARÀCTERS ESPECIALS',
|
||||
select: 'Selecciona caràcters especials'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
150
public/js/summernote/lang/summernote-cs-CZ.js
vendored
Normal file
150
public/js/summernote/lang/summernote-cs-CZ.js
vendored
Normal file
@@ -0,0 +1,150 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'cs-CZ': {
|
||||
font: {
|
||||
bold: 'Tučné',
|
||||
italic: 'Kurzíva',
|
||||
underline: 'Podtržené',
|
||||
clear: 'Odstranit styl písma',
|
||||
height: 'Výška řádku',
|
||||
strikethrough: 'Přeškrtnuté',
|
||||
size: 'Velikost písma'
|
||||
},
|
||||
image: {
|
||||
image: 'Obrázek',
|
||||
insert: 'Vložit obrázek',
|
||||
resizeFull: 'Původní velikost',
|
||||
resizeHalf: 'Poloviční velikost',
|
||||
resizeQuarter: 'Čtvrteční velikost',
|
||||
floatLeft: 'Umístit doleva',
|
||||
floatRight: 'Umístit doprava',
|
||||
floatNone: 'Neobtékat textem',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Přetáhnout sem obrázek',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Vybrat soubor',
|
||||
url: 'URL obrázku',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Odkaz videa',
|
||||
insert: 'Vložit video',
|
||||
url: 'URL videa?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion nebo Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odkaz',
|
||||
insert: 'Vytvořit odkaz',
|
||||
unlink: 'Zrušit odkaz',
|
||||
edit: 'Upravit',
|
||||
textToDisplay: 'Zobrazovaný text',
|
||||
url: 'Na jaké URL má tento odkaz vést?',
|
||||
openInNewWindow: 'Otevřít v novém okně'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabulka',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vložit vodorovnou čáru'
|
||||
},
|
||||
style: {
|
||||
style: 'Styl',
|
||||
p: 'Normální',
|
||||
blockquote: 'Citace',
|
||||
pre: 'Kód',
|
||||
h1: 'Nadpis 1',
|
||||
h2: 'Nadpis 2',
|
||||
h3: 'Nadpis 3',
|
||||
h4: 'Nadpis 4',
|
||||
h5: 'Nadpis 5',
|
||||
h6: 'Nadpis 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Odrážkový seznam',
|
||||
ordered: 'Číselný seznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Nápověda',
|
||||
fullscreen: 'Celá obrazovka',
|
||||
codeview: 'HTML kód'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Odstavec',
|
||||
outdent: 'Zvětšit odsazení',
|
||||
indent: 'Zmenšit odsazení',
|
||||
left: 'Zarovnat doleva',
|
||||
center: 'Zarovnat na střed',
|
||||
right: 'Zarovnat doprava',
|
||||
justify: 'Zarovnat oboustranně'
|
||||
},
|
||||
color: {
|
||||
recent: 'Aktuální barva',
|
||||
more: 'Další barvy',
|
||||
background: 'Barva pozadí',
|
||||
foreground: 'Barva písma',
|
||||
transparent: 'Průhlednost',
|
||||
setTransparent: 'Nastavit průhlednost',
|
||||
reset: 'Obnovit',
|
||||
resetToDefault: 'Obnovit výchozí',
|
||||
cpSelect: 'Vybrat'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Klávesové zkratky',
|
||||
close: 'Zavřít',
|
||||
textFormatting: 'Formátování textu',
|
||||
action: 'Akce',
|
||||
paragraphFormatting: 'Formátování odstavce',
|
||||
documentStyle: 'Styl dokumentu'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Krok vzad',
|
||||
redo: 'Krok vpřed'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-da-DK.js
vendored
Normal file
155
public/js/summernote/lang/summernote-da-DK.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'da-DK': {
|
||||
font: {
|
||||
bold: 'Fed',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understreget',
|
||||
clear: 'Fjern formatering',
|
||||
height: 'Højde',
|
||||
name: 'Skrifttype',
|
||||
strikethrough: 'Gennemstreget',
|
||||
subscript: 'Sænket skrift',
|
||||
superscript: 'Hævet skrift',
|
||||
size: 'Skriftstørrelse'
|
||||
},
|
||||
image: {
|
||||
image: 'Billede',
|
||||
insert: 'Indsæt billede',
|
||||
resizeFull: 'Original størrelse',
|
||||
resizeHalf: 'Halv størrelse',
|
||||
resizeQuarter: 'Kvart størrelse',
|
||||
floatLeft: 'Venstrestillet',
|
||||
floatRight: 'Højrestillet',
|
||||
floatNone: 'Fjern formatering',
|
||||
shapeRounded: 'Form: Runde kanter',
|
||||
shapeCircle: 'Form: Cirkel',
|
||||
shapeThumbnail: 'Form: Miniature',
|
||||
shapeNone: 'Form: Ingen',
|
||||
dragImageHere: 'Træk billede hertil',
|
||||
dropImage: 'Slip billede',
|
||||
selectFromFiles: 'Vælg billed-fil',
|
||||
maximumFileSize: 'Maks fil størrelse',
|
||||
maximumFileSizeError: 'Filen er større end maks tilladte fil størrelse!',
|
||||
url: 'Billede URL',
|
||||
remove: 'Fjern billede',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Indsæt Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Indsæt link',
|
||||
unlink: 'Fjern link',
|
||||
edit: 'Rediger',
|
||||
textToDisplay: 'Visningstekst',
|
||||
url: 'Hvor skal linket pege hen?',
|
||||
openInNewWindow: 'Åbn i nyt vindue'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Tilføj række over',
|
||||
addRowBelow: 'Tilføj række under',
|
||||
addColLeft: 'Tilføj venstre kolonne',
|
||||
addColRight: 'Tilføj højre kolonne',
|
||||
delRow: 'Slet række',
|
||||
delCol: 'Slet kolonne',
|
||||
delTable: 'Slet tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Indsæt horisontal linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kode',
|
||||
h1: 'Overskrift 1',
|
||||
h2: 'Overskrift 2',
|
||||
h3: 'Overskrift 3',
|
||||
h4: 'Overskrift 4',
|
||||
h5: 'Overskrift 5',
|
||||
h6: 'Overskrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktopstillet liste',
|
||||
ordered: 'Nummereret liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjælp',
|
||||
fullscreen: 'Fuld skærm',
|
||||
codeview: 'HTML-Visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Afsnit',
|
||||
outdent: 'Formindsk indryk',
|
||||
indent: 'Forøg indryk',
|
||||
left: 'Venstrestillet',
|
||||
center: 'Centreret',
|
||||
right: 'Højrestillet',
|
||||
justify: 'Blokjuster'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nyligt valgt farve',
|
||||
more: 'Flere farver',
|
||||
background: 'Baggrund',
|
||||
foreground: 'Forgrund',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Sæt transparent',
|
||||
reset: 'Nulstil',
|
||||
resetToDefault: 'Gendan standardindstillinger'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Genveje',
|
||||
close: 'Luk',
|
||||
textFormatting: 'Tekstformatering',
|
||||
action: 'Handling',
|
||||
paragraphFormatting: 'Afsnitsformatering',
|
||||
documentStyle: 'Dokumentstil',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Indsæt paragraf',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Vis Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Fortryd',
|
||||
redo: 'Annuller fortryd'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Vælg special karakterer'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
156
public/js/summernote/lang/summernote-de-DE.js
vendored
Normal file
156
public/js/summernote/lang/summernote-de-DE.js
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'de-DE': {
|
||||
font: {
|
||||
bold: 'Fett',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Unterstreichen',
|
||||
clear: 'Zurücksetzen',
|
||||
height: 'Zeilenhöhe',
|
||||
name: 'Schriftart',
|
||||
strikethrough: 'Durchgestrichen',
|
||||
subscript: 'Tiefgestellt',
|
||||
superscript: 'Hochgestellt',
|
||||
size: 'Schriftgröße'
|
||||
},
|
||||
image: {
|
||||
image: 'Bild',
|
||||
insert: 'Bild einfügen',
|
||||
resizeFull: 'Originalgröße',
|
||||
resizeHalf: '1/2 Größe',
|
||||
resizeQuarter: '1/4 Größe',
|
||||
floatLeft: 'Linksbündig',
|
||||
floatRight: 'Rechtsbündig',
|
||||
floatNone: 'Kein Textfluss',
|
||||
shapeRounded: 'Abgerundeter Rahmen',
|
||||
shapeCircle: 'Kreisförmiger Rahmen',
|
||||
shapeThumbnail: 'Rahmenvorschau',
|
||||
shapeNone: 'Kein Rahmen',
|
||||
dragImageHere: 'Bild hierher ziehen',
|
||||
dropImage: 'Bild oder Text nehmen',
|
||||
selectFromFiles: 'Datei auswählen',
|
||||
maximumFileSize: 'Maximale Dateigröße',
|
||||
maximumFileSizeError: 'Maximale Dateigröße überschritten',
|
||||
url: 'Bild URL',
|
||||
remove: 'Bild entfernen',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Videolink',
|
||||
insert: 'Video einfügen',
|
||||
url: 'Video URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion oder Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Link einfügen',
|
||||
unlink: 'Link entfernen',
|
||||
edit: 'Bearbeiten',
|
||||
textToDisplay: 'Anzeigetext',
|
||||
url: 'Link URL',
|
||||
openInNewWindow: 'In neuem Fenster öffnen'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabelle',
|
||||
addRowAbove: '+ Zeile oberhalb',
|
||||
addRowBelow: '+ Zeile unterhalb',
|
||||
addColLeft: '+ Spalte links',
|
||||
addColRight: '+ Spalte rechts',
|
||||
delRow: 'Reihe löschen',
|
||||
delCol: 'Spalte löschen',
|
||||
delTable: 'Tabelle löschen'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Horizontale Linie einfügen'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
normal: 'Normal',
|
||||
p: 'Normal',
|
||||
blockquote: 'Zitat',
|
||||
pre: 'Quellcode',
|
||||
h1: 'Überschrift 1',
|
||||
h2: 'Überschrift 2',
|
||||
h3: 'Überschrift 3',
|
||||
h4: 'Überschrift 4',
|
||||
h5: 'Überschrift 5',
|
||||
h6: 'Überschrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Unnummerierte Liste',
|
||||
ordered: 'Nummerierte Liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hilfe',
|
||||
fullscreen: 'Vollbild',
|
||||
codeview: 'Quellcode anzeigen'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Absatz',
|
||||
outdent: 'Einzug vergrößern',
|
||||
indent: 'Einzug verkleinern',
|
||||
left: 'Links ausrichten',
|
||||
center: 'Zentriert ausrichten',
|
||||
right: 'Rechts ausrichten',
|
||||
justify: 'Blocksatz'
|
||||
},
|
||||
color: {
|
||||
recent: 'Letzte Farbe',
|
||||
more: 'Weitere Farben',
|
||||
background: 'Hintergrundfarbe',
|
||||
foreground: 'Schriftfarbe',
|
||||
transparent: 'Transparenz',
|
||||
setTransparent: 'Transparenz setzen',
|
||||
reset: 'Zurücksetzen',
|
||||
resetToDefault: 'Auf Standard zurücksetzen'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Tastenkürzel',
|
||||
close: 'Schließen',
|
||||
textFormatting: 'Textformatierung',
|
||||
action: 'Aktion',
|
||||
paragraphFormatting: 'Absatzformatierung',
|
||||
documentStyle: 'Dokumentenstil',
|
||||
extraKeys: 'Weitere Tasten'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Absatz einfügen',
|
||||
'undo': 'Letzte Anweisung rückgängig',
|
||||
'redo': 'Letzte Anweisung wiederholen',
|
||||
'tab': 'Einzug hinzufügen',
|
||||
'untab': 'Einzug entfernen',
|
||||
'bold': 'Schrift Fett',
|
||||
'italic': 'Schrift Kursiv',
|
||||
'underline': 'Unterstreichen',
|
||||
'strikethrough': 'Durchstreichen',
|
||||
'removeFormat': 'Entfernt Format',
|
||||
'justifyLeft': 'Linksbündig',
|
||||
'justifyCenter': 'Mittig',
|
||||
'justifyRight': 'Rechtsbündig',
|
||||
'justifyFull': 'Blocksatz',
|
||||
'insertUnorderedList': 'Unnummerierte Liste',
|
||||
'insertOrderedList': 'Nummerierte Liste',
|
||||
'outdent': 'Aktuellen Absatz ausrücken',
|
||||
'indent': 'Aktuellen Absatz einrücken',
|
||||
'formatPara': 'Formatiert aktuellen Block als Absatz (P-Tag)',
|
||||
'formatH1': 'Formatiert aktuellen Block als H1',
|
||||
'formatH2': 'Formatiert aktuellen Block als H2',
|
||||
'formatH3': 'Formatiert aktuellen Block als H3',
|
||||
'formatH4': 'Formatiert aktuellen Block als H4',
|
||||
'formatH5': 'Formatiert aktuellen Block als H5',
|
||||
'formatH6': 'Formatiert aktuellen Block als H6',
|
||||
'insertHorizontalRule': 'Fügt eine horizontale Linie ein',
|
||||
'linkDialog.show': 'Zeigt Linkdialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Rückgängig',
|
||||
redo: 'Wiederholen'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'Sonderzeichen',
|
||||
select: 'Zeichen auswählen'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-el-GR.js
vendored
Normal file
155
public/js/summernote/lang/summernote-el-GR.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'el-GR': {
|
||||
font: {
|
||||
bold: 'Έντονα',
|
||||
italic: 'Πλάγια',
|
||||
underline: 'Υπογραμμισμένα',
|
||||
clear: 'Καθαρισμός',
|
||||
height: 'Ύψος',
|
||||
name: 'Γραμματοσειρά',
|
||||
strikethrough: 'Διεγραμμένα',
|
||||
subscript: 'Δείκτης',
|
||||
superscript: 'Εκθέτης',
|
||||
size: 'Μέγεθος'
|
||||
},
|
||||
image: {
|
||||
image: 'εικόνα',
|
||||
insert: 'Εισαγωγή',
|
||||
resizeFull: 'Πλήρες μέγεθος',
|
||||
resizeHalf: 'Μισό μέγεθος',
|
||||
resizeQuarter: '1/4 μέγεθος',
|
||||
floatLeft: 'Μετατόπιση αριστερά',
|
||||
floatRight: 'Μετατόπιση δεξιά',
|
||||
floatNone: 'Χωρίς μετατόπιση',
|
||||
shapeRounded: 'Σχήμα: Στρογγυλεμένο',
|
||||
shapeCircle: 'Σχήμα: Κύκλος',
|
||||
shapeThumbnail: 'Σχήμα: Thumbnail',
|
||||
shapeNone: 'Σχήμα: Κανένα',
|
||||
dragImageHere: 'Σύρτε την εικόνα εδώ',
|
||||
dropImage: 'Αφήστε την εικόνα',
|
||||
selectFromFiles: 'Επιλογή από αρχεία',
|
||||
maximumFileSize: 'Μέγιστο μέγεθος αρχείου',
|
||||
maximumFileSizeError: 'Το μέγεθος είναι μεγαλύτερο από το μέγιστο επιτρεπτό.',
|
||||
url: 'URL',
|
||||
remove: 'Αφαίρεση',
|
||||
original: 'Original'
|
||||
},
|
||||
link: {
|
||||
link: 'Σύνδεσμος',
|
||||
insert: 'Εισαγωγή συνδέσμου',
|
||||
unlink: 'Αφαίρεση συνδέσμου',
|
||||
edit: 'Επεξεργασία συνδέσμου',
|
||||
textToDisplay: 'Κείμενο συνδέσμου',
|
||||
url: 'URL',
|
||||
openInNewWindow: 'Άνοιγμα σε νέο παράθυρο'
|
||||
},
|
||||
video: {
|
||||
video: 'Βίντεο',
|
||||
videoLink: 'Σύνδεσμος Βίντεο',
|
||||
insert: 'Εισαγωγή',
|
||||
url: 'URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
table: {
|
||||
table: 'Πίνακας',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Εισαγωγή οριζόντιας γραμμής'
|
||||
},
|
||||
style: {
|
||||
style: 'Στυλ',
|
||||
normal: 'Κανονικό',
|
||||
blockquote: 'Παράθεση',
|
||||
pre: 'Ως έχει',
|
||||
h1: 'Κεφαλίδα 1',
|
||||
h2: 'συνδέσμου 2',
|
||||
h3: 'συνδέσμου 3',
|
||||
h4: 'συνδέσμου 4',
|
||||
h5: 'συνδέσμου 5',
|
||||
h6: 'συνδέσμου 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Αταξινόμητη λίστα',
|
||||
ordered: 'Ταξινομημένη λίστα'
|
||||
},
|
||||
options: {
|
||||
help: 'Βοήθεια',
|
||||
fullscreen: 'Πλήρης οθόνη',
|
||||
codeview: 'Προβολή HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Παράγραφος',
|
||||
outdent: 'Μείωση εσοχής',
|
||||
indent: 'Άυξηση εσοχής',
|
||||
left: 'Αριστερή στοίχιση',
|
||||
center: 'Στοίχιση στο κέντρο',
|
||||
right: 'Δεξιά στοίχιση',
|
||||
justify: 'Πλήρης στοίχιση'
|
||||
},
|
||||
color: {
|
||||
recent: 'Πρόσφατη επιλογή',
|
||||
more: 'Περισσότερα',
|
||||
background: 'Υπόβαθρο',
|
||||
foreground: 'Μπροστά',
|
||||
transparent: 'Διαφανές',
|
||||
setTransparent: 'Επιλογή διαφάνειας',
|
||||
reset: 'Επαναφορά',
|
||||
resetToDefault: 'Επαναφορά στις προκαθορισμένες τιμές'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Συντομεύσεις',
|
||||
close: 'Κλείσιμο',
|
||||
textFormatting: 'Διαμόρφωση κειμένου',
|
||||
action: 'Ενέργεια',
|
||||
paragraphFormatting: 'Διαμόρφωση παραγράφου',
|
||||
documentStyle: 'Στυλ κειμένου',
|
||||
extraKeys: 'Επιπλέον συντομεύσεις'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Εισαγωγή παραγράφου',
|
||||
'undo': 'Αναιρεί την προηγούμενη εντολή',
|
||||
'redo': 'Επαναλαμβάνει την προηγούμενη εντολή',
|
||||
'tab': 'Εσοχή',
|
||||
'untab': 'Αναίρεση εσοχής',
|
||||
'bold': 'Ορισμός έντονου στυλ',
|
||||
'italic': 'Ορισμός πλάγιου στυλ',
|
||||
'underline': 'Ορισμός υπογεγραμμένου στυλ',
|
||||
'strikethrough': 'Ορισμός διεγραμμένου στυλ',
|
||||
'removeFormat': 'Αφαίρεση στυλ',
|
||||
'justifyLeft': 'Ορισμός αριστερής στοίχισης',
|
||||
'justifyCenter': 'Ορισμός κεντρικής στοίχισης',
|
||||
'justifyRight': 'Ορισμός δεξιάς στοίχισης',
|
||||
'justifyFull': 'Ορισμός πλήρους στοίχισης',
|
||||
'insertUnorderedList': 'Ορισμός μη-ταξινομημένης λίστας',
|
||||
'insertOrderedList': 'Ορισμός ταξινομημένης λίστας',
|
||||
'outdent': 'Προεξοχή παραγράφου',
|
||||
'indent': 'Εσοχή παραγράφου',
|
||||
'formatPara': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε παράγραφο (P tag)',
|
||||
'formatH1': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H1',
|
||||
'formatH2': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H2',
|
||||
'formatH3': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H3',
|
||||
'formatH4': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H4',
|
||||
'formatH5': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H5',
|
||||
'formatH6': 'Αλλαγή της μορφής του τρέχοντος μπλοκ σε H6',
|
||||
'insertHorizontalRule': 'Εισαγωγή οριζόντιας γραμμής',
|
||||
'linkDialog.show': 'Εμφάνιση διαλόγου συνδέσμου'
|
||||
},
|
||||
history: {
|
||||
undo: 'Αναίρεση',
|
||||
redo: 'Επαναληψη'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Επιλέξτε ειδικούς χαρακτήρες'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-es-ES.js
vendored
Normal file
155
public/js/summernote/lang/summernote-es-ES.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'es-ES': {
|
||||
font: {
|
||||
bold: 'Negrita',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subrayado',
|
||||
clear: 'Quitar estilo de fuente',
|
||||
height: 'Altura de línea',
|
||||
name: 'Fuente',
|
||||
strikethrough: 'Tachado',
|
||||
superscript: 'Superíndice',
|
||||
subscript: 'Subíndice',
|
||||
size: 'Tamaño de la fuente'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagen',
|
||||
insert: 'Insertar imagen',
|
||||
resizeFull: 'Redimensionar a tamaño completo',
|
||||
resizeHalf: 'Redimensionar a la mitad',
|
||||
resizeQuarter: 'Redimensionar a un cuarto',
|
||||
floatLeft: 'Flotar a la izquierda',
|
||||
floatRight: 'Flotar a la derecha',
|
||||
floatNone: 'No flotar',
|
||||
shapeRounded: 'Forma: Redondeado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Marco',
|
||||
shapeNone: 'Forma: Ninguna',
|
||||
dragImageHere: 'Arrastrar una imagen o texto aquí',
|
||||
dropImage: 'Suelta la imagen o texto',
|
||||
selectFromFiles: 'Seleccionar desde los archivos',
|
||||
maximumFileSize: 'Tamaño máximo del archivo',
|
||||
maximumFileSizeError: 'Has superado el tamaño máximo del archivo.',
|
||||
url: 'URL de la imagen',
|
||||
remove: 'Eliminar imagen',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Link del vídeo',
|
||||
insert: 'Insertar vídeo',
|
||||
url: '¿URL del vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Insertar link',
|
||||
unlink: 'Quitar link',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para mostrar',
|
||||
url: '¿Hacia que URL lleva el link?',
|
||||
openInNewWindow: 'Abrir en una nueva ventana'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabla',
|
||||
addRowAbove: 'Añadir fila encima',
|
||||
addRowBelow: 'Añadir fila debajo',
|
||||
addColLeft: 'Añadir columna izquierda',
|
||||
addColRight: 'Añadir columna derecha',
|
||||
delRow: 'Borrar fila',
|
||||
delCol: 'Eliminar columna',
|
||||
delTable: 'Eliminar tabla'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Insertar línea horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'p',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista desordenada',
|
||||
ordered: 'Lista ordenada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ayuda',
|
||||
fullscreen: 'Pantalla completa',
|
||||
codeview: 'Ver código fuente'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Párrafo',
|
||||
outdent: 'Menos tabulación',
|
||||
indent: 'Más tabulación',
|
||||
left: 'Alinear a la izquierda',
|
||||
center: 'Alinear al centro',
|
||||
right: 'Alinear a la derecha',
|
||||
justify: 'Justificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Último color',
|
||||
more: 'Más colores',
|
||||
background: 'Color de fondo',
|
||||
foreground: 'Color de fuente',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Establecer transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar por defecto'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atajos de teclado',
|
||||
close: 'Cerrar',
|
||||
textFormatting: 'Formato de texto',
|
||||
action: 'Acción',
|
||||
paragraphFormatting: 'Formato de párrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Teclas adicionales'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insertar párrafo',
|
||||
'undo': 'Deshacer última acción',
|
||||
'redo': 'Rehacer última acción',
|
||||
'tab': 'Tabular',
|
||||
'untab': 'Eliminar tabulación',
|
||||
'bold': 'Establecer estilo negrita',
|
||||
'italic': 'Establecer estilo cursiva',
|
||||
'underline': 'Establecer estilo subrayado',
|
||||
'strikethrough': 'Establecer estilo tachado',
|
||||
'removeFormat': 'Limpiar estilo',
|
||||
'justifyLeft': 'Alinear a la izquierda',
|
||||
'justifyCenter': 'Alinear al centro',
|
||||
'justifyRight': 'Alinear a la derecha',
|
||||
'justifyFull': 'Justificar',
|
||||
'insertUnorderedList': 'Insertar lista desordenada',
|
||||
'insertOrderedList': 'Insertar lista ordenada',
|
||||
'outdent': 'Reducir tabulación del párrafo',
|
||||
'indent': 'Aumentar tabulación del párrafo',
|
||||
'formatPara': 'Cambiar estilo del bloque a párrafo (etiqueta P)',
|
||||
'formatH1': 'Cambiar estilo del bloque a H1',
|
||||
'formatH2': 'Cambiar estilo del bloque a H2',
|
||||
'formatH3': 'Cambiar estilo del bloque a H3',
|
||||
'formatH4': 'Cambiar estilo del bloque a H4',
|
||||
'formatH5': 'Cambiar estilo del bloque a H5',
|
||||
'formatH6': 'Cambiar estilo del bloque a H6',
|
||||
'insertHorizontalRule': 'Insertar línea horizontal',
|
||||
'linkDialog.show': 'Mostrar panel enlaces'
|
||||
},
|
||||
history: {
|
||||
undo: 'Deshacer',
|
||||
redo: 'Rehacer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIALES',
|
||||
select: 'Selecciona Caracteres especiales'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
154
public/js/summernote/lang/summernote-es-EU.js
vendored
Normal file
154
public/js/summernote/lang/summernote-es-EU.js
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'es-EU': {
|
||||
font: {
|
||||
bold: 'Lodia',
|
||||
italic: 'Etzana',
|
||||
underline: 'Azpimarratua',
|
||||
clear: 'Estiloa kendu',
|
||||
height: 'Lerro altuera',
|
||||
name: 'Tipografia',
|
||||
strikethrough: 'Marratua',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Letren neurria'
|
||||
},
|
||||
image: {
|
||||
image: 'Irudia',
|
||||
insert: 'Irudi bat txertatu',
|
||||
resizeFull: 'Jatorrizko neurrira aldatu',
|
||||
resizeHalf: 'Neurria erdira aldatu',
|
||||
resizeQuarter: 'Neurria laurdenera aldatu',
|
||||
floatLeft: 'Ezkerrean kokatu',
|
||||
floatRight: 'Eskuinean kokatu',
|
||||
floatNone: 'Kokapenik ez ezarri',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Irudi bat ezarri hemen',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Zure fitxategi bat aukeratu',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Irudiaren URL helbidea',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Bideoa',
|
||||
videoLink: 'Bideorako esteka',
|
||||
insert: 'Bideo berri bat txertatu',
|
||||
url: 'Bideoaren URL helbidea',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram edo DailyMotion)'
|
||||
},
|
||||
link: {
|
||||
link: 'Esteka',
|
||||
insert: 'Esteka bat txertatu',
|
||||
unlink: 'Esteka ezabatu',
|
||||
edit: 'Editatu',
|
||||
textToDisplay: 'Estekaren testua',
|
||||
url: 'Estekaren URL helbidea',
|
||||
openInNewWindow: 'Leiho berri batean ireki'
|
||||
},
|
||||
table: {
|
||||
table: 'Taula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Marra horizontala txertatu'
|
||||
},
|
||||
style: {
|
||||
style: 'Estiloa',
|
||||
p: 'p',
|
||||
blockquote: 'Aipamena',
|
||||
pre: 'Kodea',
|
||||
h1: '1. izenburua',
|
||||
h2: '2. izenburua',
|
||||
h3: '3. izenburua',
|
||||
h4: '4. izenburua',
|
||||
h5: '5. izenburua',
|
||||
h6: '6. izenburua'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Ordenatu gabeko zerrenda',
|
||||
ordered: 'Zerrenda ordenatua'
|
||||
},
|
||||
options: {
|
||||
help: 'Laguntza',
|
||||
fullscreen: 'Pantaila osoa',
|
||||
codeview: 'Kodea ikusi'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrafoa',
|
||||
outdent: 'Koska txikiagoa',
|
||||
indent: 'Koska handiagoa',
|
||||
left: 'Ezkerrean kokatu',
|
||||
center: 'Erdian kokatu',
|
||||
right: 'Eskuinean kokatu',
|
||||
justify: 'Justifikatu'
|
||||
},
|
||||
color: {
|
||||
recent: 'Azken kolorea',
|
||||
more: 'Kolore gehiago',
|
||||
background: 'Atzeko planoa',
|
||||
foreground: 'Aurreko planoa',
|
||||
transparent: 'Gardena',
|
||||
setTransparent: 'Gardendu',
|
||||
reset: 'Lehengoratu',
|
||||
resetToDefault: 'Berrezarri lehenetsia'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Lasterbideak',
|
||||
close: 'Itxi',
|
||||
textFormatting: 'Testuaren formatua',
|
||||
action: 'Ekintza',
|
||||
paragraphFormatting: 'Paragrafoaren formatua',
|
||||
documentStyle: 'Dokumentuaren estiloa'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desegin',
|
||||
redo: 'Berregin'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-fa-IR.js
vendored
Normal file
155
public/js/summernote/lang/summernote-fa-IR.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fa-IR': {
|
||||
font: {
|
||||
bold: 'درشت',
|
||||
italic: 'خمیده',
|
||||
underline: 'میان خط',
|
||||
clear: 'پاک کردن فرمت فونت',
|
||||
height: 'فاصله ی خطی',
|
||||
name: 'اسم فونت',
|
||||
strikethrough: 'Strike',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'اندازه ی فونت'
|
||||
},
|
||||
image: {
|
||||
image: 'تصویر',
|
||||
insert: 'وارد کردن تصویر',
|
||||
resizeFull: 'تغییر به اندازه ی کامل',
|
||||
resizeHalf: 'تغییر به اندازه نصف',
|
||||
resizeQuarter: 'تغییر به اندازه یک چهارم',
|
||||
floatLeft: 'چسباندن به چپ',
|
||||
floatRight: 'چسباندن به راست',
|
||||
floatNone: 'بدون چسبندگی',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'یک تصویر را اینجا بکشید',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'فایل ها را انتخاب کنید',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'آدرس تصویر',
|
||||
remove: 'حذف تصویر',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'ویدیو',
|
||||
videoLink: 'لینک ویدیو',
|
||||
insert: 'افزودن ویدیو',
|
||||
url: 'آدرس ویدیو ؟',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion یا Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'لینک',
|
||||
insert: 'اضافه کردن لینک',
|
||||
unlink: 'حذف لینک',
|
||||
edit: 'ویرایش',
|
||||
textToDisplay: 'متن جهت نمایش',
|
||||
url: 'این لینک به چه آدرسی باید برود ؟',
|
||||
openInNewWindow: 'در یک پنجره ی جدید باز شود'
|
||||
},
|
||||
table: {
|
||||
table: 'جدول',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'افزودن خط افقی'
|
||||
},
|
||||
style: {
|
||||
style: 'استیل',
|
||||
p: 'نرمال',
|
||||
blockquote: 'نقل قول',
|
||||
pre: 'کد',
|
||||
h1: 'سرتیتر 1',
|
||||
h2: 'سرتیتر 2',
|
||||
h3: 'سرتیتر 3',
|
||||
h4: 'سرتیتر 4',
|
||||
h5: 'سرتیتر 5',
|
||||
h6: 'سرتیتر 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'لیست غیر ترتیبی',
|
||||
ordered: 'لیست ترتیبی'
|
||||
},
|
||||
options: {
|
||||
help: 'راهنما',
|
||||
fullscreen: 'نمایش تمام صفحه',
|
||||
codeview: 'مشاهده ی کد'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'پاراگراف',
|
||||
outdent: 'کاهش تو رفتگی',
|
||||
indent: 'افزایش تو رفتگی',
|
||||
left: 'چپ چین',
|
||||
center: 'میان چین',
|
||||
right: 'راست چین',
|
||||
justify: 'بلوک چین'
|
||||
},
|
||||
color: {
|
||||
recent: 'رنگ اخیرا استفاده شده',
|
||||
more: 'رنگ بیشتر',
|
||||
background: 'رنگ پس زمینه',
|
||||
foreground: 'رنگ متن',
|
||||
transparent: 'بی رنگ',
|
||||
setTransparent: 'تنظیم حالت بی رنگ',
|
||||
reset: 'بازنشاندن',
|
||||
resetToDefault: 'حالت پیش فرض'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'دکمه های میان بر',
|
||||
close: 'بستن',
|
||||
textFormatting: 'فرمت متن',
|
||||
action: 'عملیات',
|
||||
paragraphFormatting: 'فرمت پاراگراف',
|
||||
documentStyle: 'استیل سند',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'واچیدن',
|
||||
redo: 'بازچیدن'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
153
public/js/summernote/lang/summernote-fi-FI.js
vendored
Normal file
153
public/js/summernote/lang/summernote-fi-FI.js
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fi-FI': {
|
||||
font: {
|
||||
bold: 'Lihavointi',
|
||||
italic: 'Kursivointi',
|
||||
underline: 'Alleviivaus',
|
||||
clear: 'Tyhjennä muotoilu',
|
||||
height: 'Riviväli',
|
||||
name: 'Kirjasintyyppi',
|
||||
strikethrough: 'Yliviivaus',
|
||||
subscript: 'Alaindeksi',
|
||||
superscript: 'Yläindeksi',
|
||||
size: 'Kirjasinkoko'
|
||||
},
|
||||
image: {
|
||||
image: 'Kuva',
|
||||
insert: 'Lisää kuva',
|
||||
resizeFull: 'Koko leveys',
|
||||
resizeHalf: 'Puolikas leveys',
|
||||
resizeQuarter: 'Neljäsosa leveys',
|
||||
floatLeft: 'Sijoita vasemmalle',
|
||||
floatRight: 'Sijoita oikealle',
|
||||
floatNone: 'Ei sijoitusta',
|
||||
shapeRounded: 'Muoto: Pyöristetty',
|
||||
shapeCircle: 'Muoto: Ympyrä',
|
||||
shapeThumbnail: 'Muoto: Esikatselukuva',
|
||||
shapeNone: 'Muoto: Ei muotoilua',
|
||||
dragImageHere: 'Vedä kuva tähän',
|
||||
selectFromFiles: 'Valitse tiedostoista',
|
||||
maximumFileSize: 'Maksimi tiedosto koko',
|
||||
maximumFileSizeError: 'Maksimi tiedosto koko ylitetty.',
|
||||
url: 'URL-osoitteen mukaan',
|
||||
remove: 'Poista kuva',
|
||||
original: 'Alkuperäinen'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Linkki videoon',
|
||||
insert: 'Lisää video',
|
||||
url: 'Videon URL-osoite',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion tai Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Linkki',
|
||||
insert: 'Lisää linkki',
|
||||
unlink: 'Poista linkki',
|
||||
edit: 'Muokkaa',
|
||||
textToDisplay: 'Näytettävä teksti',
|
||||
url: 'Linkin URL-osoite',
|
||||
openInNewWindow: 'Avaa uudessa ikkunassa'
|
||||
},
|
||||
table: {
|
||||
table: 'Taulukko',
|
||||
addRowAbove: 'Lisää rivi yläpuolelle',
|
||||
addRowBelow: 'Lisää rivi alapuolelle',
|
||||
addColLeft: 'Lisää sarake vasemmalle puolelle',
|
||||
addColRight: 'Lisää sarake oikealle puolelle',
|
||||
delRow: 'Poista rivi',
|
||||
delCol: 'Poista sarake',
|
||||
delTable: 'Poista taulukko'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Lisää vaakaviiva'
|
||||
},
|
||||
style: {
|
||||
style: 'Tyyli',
|
||||
p: 'Normaali',
|
||||
blockquote: 'Lainaus',
|
||||
pre: 'Koodi',
|
||||
h1: 'Otsikko 1',
|
||||
h2: 'Otsikko 2',
|
||||
h3: 'Otsikko 3',
|
||||
h4: 'Otsikko 4',
|
||||
h5: 'Otsikko 5',
|
||||
h6: 'Otsikko 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Luettelomerkitty luettelo',
|
||||
ordered: 'Numeroitu luettelo'
|
||||
},
|
||||
options: {
|
||||
help: 'Ohje',
|
||||
fullscreen: 'Koko näyttö',
|
||||
codeview: 'HTML-näkymä'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Kappale',
|
||||
outdent: 'Pienennä sisennystä',
|
||||
indent: 'Suurenna sisennystä',
|
||||
left: 'Tasaa vasemmalle',
|
||||
center: 'Keskitä',
|
||||
right: 'Tasaa oikealle',
|
||||
justify: 'Tasaa'
|
||||
},
|
||||
color: {
|
||||
recent: 'Viimeisin väri',
|
||||
more: 'Lisää värejä',
|
||||
background: 'Korostusväri',
|
||||
foreground: 'Tekstin väri',
|
||||
transparent: 'Läpinäkyvä',
|
||||
setTransparent: 'Aseta läpinäkyväksi',
|
||||
reset: 'Palauta',
|
||||
resetToDefault: 'Palauta oletusarvoksi'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Pikanäppäimet',
|
||||
close: 'Sulje',
|
||||
textFormatting: 'Tekstin muotoilu',
|
||||
action: 'Toiminto',
|
||||
paragraphFormatting: 'Kappaleen muotoilu',
|
||||
documentStyle: 'Asiakirjan tyyli'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Lisää kappale',
|
||||
'undo': 'Kumoa viimeisin komento',
|
||||
'redo': 'Tee uudelleen kumottu komento',
|
||||
'tab': 'Sarkain',
|
||||
'untab': 'Sarkainmerkin poisto',
|
||||
'bold': 'Lihavointi',
|
||||
'italic': 'Kursiivi',
|
||||
'underline': 'Alleviivaus',
|
||||
'strikethrough': 'Yliviivaus',
|
||||
'removeFormat': 'Poista asetetut tyylit',
|
||||
'justifyLeft': 'Tasaa vasemmalle',
|
||||
'justifyCenter': 'Keskitä',
|
||||
'justifyRight': 'Tasaa oikealle',
|
||||
'justifyFull': 'Tasaa',
|
||||
'insertUnorderedList': 'Luettelomerkillä varustettu lista',
|
||||
'insertOrderedList': 'Numeroitu lista',
|
||||
'outdent': 'Pienennä sisennystä',
|
||||
'indent': 'Suurenna sisennystä',
|
||||
'formatPara': 'Muuta kappaleen formaatti p',
|
||||
'formatH1': 'Muuta kappaleen formaatti H1',
|
||||
'formatH2': 'Muuta kappaleen formaatti H2',
|
||||
'formatH3': 'Muuta kappaleen formaatti H3',
|
||||
'formatH4': 'Muuta kappaleen formaatti H4',
|
||||
'formatH5': 'Muuta kappaleen formaatti H5',
|
||||
'formatH6': 'Muuta kappaleen formaatti H6',
|
||||
'insertHorizontalRule': 'Lisää vaakaviiva',
|
||||
'linkDialog.show': 'Lisää linkki'
|
||||
},
|
||||
history: {
|
||||
undo: 'Kumoa',
|
||||
redo: 'Toista'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ERIKOISMERKIT',
|
||||
select: 'Valitse erikoismerkit'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-fr-FR.js
vendored
Normal file
155
public/js/summernote/lang/summernote-fr-FR.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'fr-FR': {
|
||||
font: {
|
||||
bold: 'Gras',
|
||||
italic: 'Italique',
|
||||
underline: 'Souligné',
|
||||
clear: 'Effacer la mise en forme',
|
||||
height: 'Interligne',
|
||||
name: 'Famille de police',
|
||||
strikethrough: 'Barré',
|
||||
superscript: 'Exposant',
|
||||
subscript: 'Indice',
|
||||
size: 'Taille de police'
|
||||
},
|
||||
image: {
|
||||
image: 'Image',
|
||||
insert: 'Insérer une image',
|
||||
resizeFull: 'Taille originale',
|
||||
resizeHalf: 'Redimensionner à 50 %',
|
||||
resizeQuarter: 'Redimensionner à 25 %',
|
||||
floatLeft: 'Aligné à gauche',
|
||||
floatRight: 'Aligné à droite',
|
||||
floatNone: 'Pas d\'alignement',
|
||||
shapeRounded: 'Forme: Rectangle arrondi',
|
||||
shapeCircle: 'Forme: Cercle',
|
||||
shapeThumbnail: 'Forme: Vignette',
|
||||
shapeNone: 'Forme: Aucune',
|
||||
dragImageHere: 'Faites glisser une image ou un texte dans ce cadre',
|
||||
dropImage: 'Lachez l\'image ou le texte',
|
||||
selectFromFiles: 'Choisir un fichier',
|
||||
maximumFileSize: 'Taille de fichier maximale',
|
||||
maximumFileSizeError: 'Taille maximale du fichier dépassée',
|
||||
url: 'URL de l\'image',
|
||||
remove: 'Supprimer l\'image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vidéo',
|
||||
videoLink: 'Lien vidéo',
|
||||
insert: 'Insérer une vidéo',
|
||||
url: 'URL de la vidéo',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Lien',
|
||||
insert: 'Insérer un lien',
|
||||
unlink: 'Supprimer un lien',
|
||||
edit: 'Modifier',
|
||||
textToDisplay: 'Texte à afficher',
|
||||
url: 'URL du lien',
|
||||
openInNewWindow: 'Ouvrir dans une nouvelle fenêtre'
|
||||
},
|
||||
table: {
|
||||
table: 'Tableau',
|
||||
addRowAbove: 'Ajouter une ligne au-dessus',
|
||||
addRowBelow: 'Ajouter une ligne en dessous',
|
||||
addColLeft: 'Ajouter une colonne à gauche',
|
||||
addColRight: 'Ajouter une colonne à droite',
|
||||
delRow: 'Supprimer la ligne',
|
||||
delCol: 'Supprimer la colonne',
|
||||
delTable: 'Supprimer le tableau'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Insérer une ligne horizontale'
|
||||
},
|
||||
style: {
|
||||
style: 'Style',
|
||||
p: 'Normal',
|
||||
blockquote: 'Citation',
|
||||
pre: 'Code source',
|
||||
h1: 'Titre 1',
|
||||
h2: 'Titre 2',
|
||||
h3: 'Titre 3',
|
||||
h4: 'Titre 4',
|
||||
h5: 'Titre 5',
|
||||
h6: 'Titre 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Liste à puces',
|
||||
ordered: 'Liste numérotée'
|
||||
},
|
||||
options: {
|
||||
help: 'Aide',
|
||||
fullscreen: 'Plein écran',
|
||||
codeview: 'Afficher le code HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraphe',
|
||||
outdent: 'Diminuer le retrait',
|
||||
indent: 'Augmenter le retrait',
|
||||
left: 'Aligner à gauche',
|
||||
center: 'Centrer',
|
||||
right: 'Aligner à droite',
|
||||
justify: 'Justifier'
|
||||
},
|
||||
color: {
|
||||
recent: 'Dernière couleur sélectionnée',
|
||||
more: 'Plus de couleurs',
|
||||
background: 'Couleur de fond',
|
||||
foreground: 'Couleur de police',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Définir la transparence',
|
||||
reset: 'Restaurer',
|
||||
resetToDefault: 'Restaurer la couleur par défaut'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Raccourcis',
|
||||
close: 'Fermer',
|
||||
textFormatting: 'Mise en forme du texte',
|
||||
action: 'Action',
|
||||
paragraphFormatting: 'Mise en forme des paragraphes',
|
||||
documentStyle: 'Style du document',
|
||||
extraKeys: 'Touches supplémentaires'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insérer paragraphe',
|
||||
'undo': 'Défaire la dernière commande',
|
||||
'redo': 'Refaire la dernière commande',
|
||||
'tab': 'Tabulation',
|
||||
'untab': 'Tabulation arrière',
|
||||
'bold': 'Mettre en caractère gras',
|
||||
'italic': 'Mettre en italique',
|
||||
'underline': 'Mettre en souligné',
|
||||
'strikethrough': 'Mettre en texte barré',
|
||||
'removeFormat': 'Nettoyer les styles',
|
||||
'justifyLeft': 'Aligner à gauche',
|
||||
'justifyCenter': 'Centrer',
|
||||
'justifyRight': 'Aligner à droite',
|
||||
'justifyFull': 'Justifier à gauche et à droite',
|
||||
'insertUnorderedList': 'Basculer liste à puces',
|
||||
'insertOrderedList': 'Basculer liste ordonnée',
|
||||
'outdent': 'Diminuer le retrait du paragraphe',
|
||||
'indent': 'Augmenter le retrait du paragraphe',
|
||||
'formatPara': 'Changer le paragraphe en cours en normal (P)',
|
||||
'formatH1': 'Changer le paragraphe en cours en entête H1',
|
||||
'formatH2': 'Changer le paragraphe en cours en entête H2',
|
||||
'formatH3': 'Changer le paragraphe en cours en entête H3',
|
||||
'formatH4': 'Changer le paragraphe en cours en entête H4',
|
||||
'formatH5': 'Changer le paragraphe en cours en entête H5',
|
||||
'formatH6': 'Changer le paragraphe en cours en entête H6',
|
||||
'insertHorizontalRule': 'Insérer séparation horizontale',
|
||||
'linkDialog.show': 'Afficher fenêtre d\'hyperlien'
|
||||
},
|
||||
history: {
|
||||
undo: 'Annuler la dernière action',
|
||||
redo: 'Restaurer la dernière action annulée'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTÈRES SPÉCIAUX',
|
||||
select: 'Choisir des caractères spéciaux'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-gl-ES.js
vendored
Normal file
155
public/js/summernote/lang/summernote-gl-ES.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'gl-ES': {
|
||||
font: {
|
||||
bold: 'Negrita',
|
||||
italic: 'Cursiva',
|
||||
underline: 'Subliñado',
|
||||
clear: 'Quitar estilo de fonte',
|
||||
height: 'Altura de liña',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
superscript: 'Superíndice',
|
||||
subscript: 'Subíndice',
|
||||
size: 'Tamaño da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imaxe',
|
||||
insert: 'Inserir imaxe',
|
||||
resizeFull: 'Redimensionar a tamaño completo',
|
||||
resizeHalf: 'Redimensionar á metade',
|
||||
resizeQuarter: 'Redimensionar a un cuarto',
|
||||
floatLeft: 'Flotar á esquerda',
|
||||
floatRight: 'Flotar á dereita',
|
||||
floatNone: 'Non flotar',
|
||||
shapeRounded: 'Forma: Redondeado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Marco',
|
||||
shapeNone: 'Forma: Ningunha',
|
||||
dragImageHere: 'Arrastrar unha imaxe ou texto aquí',
|
||||
dropImage: 'Solta a imaxe ou texto',
|
||||
selectFromFiles: 'Seleccionar desde os arquivos',
|
||||
maximumFileSize: 'Tamaño máximo do arquivo',
|
||||
maximumFileSizeError: 'Superaches o tamaño máximo do arquivo.',
|
||||
url: 'URL da imaxe',
|
||||
remove: 'Eliminar imaxe',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Ligazón do vídeo',
|
||||
insert: 'Insertar vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Ligazón',
|
||||
insert: 'Inserir Ligazón',
|
||||
unlink: 'Quitar Ligazón',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para amosar',
|
||||
url: 'Cara a que URL leva a ligazón?',
|
||||
openInNewWindow: 'Abrir nunha nova xanela'
|
||||
},
|
||||
table: {
|
||||
table: 'Táboa',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir liña horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Normal',
|
||||
blockquote: 'Cita',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista desordenada',
|
||||
ordered: 'Lista ordenada'
|
||||
},
|
||||
options: {
|
||||
help: 'Axuda',
|
||||
fullscreen: 'Pantalla completa',
|
||||
codeview: 'Ver código fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menos tabulación',
|
||||
indent: 'Máis tabulación',
|
||||
left: 'Aliñar á esquerda',
|
||||
center: 'Aliñar ao centro',
|
||||
right: 'Aliñar á dereita',
|
||||
justify: 'Xustificar'
|
||||
},
|
||||
color: {
|
||||
recent: 'Última cor',
|
||||
more: 'Máis cores',
|
||||
background: 'Cor de fondo',
|
||||
foreground: 'Cor de fuente',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Establecer transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar por defecto'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atallos de teclado',
|
||||
close: 'Pechar',
|
||||
textFormatting: 'Formato de texto',
|
||||
action: 'Acción',
|
||||
paragraphFormatting: 'Formato de parágrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Teclas adicionais'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir parágrafo',
|
||||
'undo': 'Desfacer última acción',
|
||||
'redo': 'Refacer última acción',
|
||||
'tab': 'Tabular',
|
||||
'untab': 'Eliminar tabulación',
|
||||
'bold': 'Establecer estilo negrita',
|
||||
'italic': 'Establecer estilo cursiva',
|
||||
'underline': 'Establecer estilo subliñado',
|
||||
'strikethrough': 'Establecer estilo riscado',
|
||||
'removeFormat': 'Limpar estilo',
|
||||
'justifyLeft': 'Aliñar á esquerda',
|
||||
'justifyCenter': 'Aliñar ao centro',
|
||||
'justifyRight': 'Aliñar á dereita',
|
||||
'justifyFull': 'Xustificar',
|
||||
'insertUnorderedList': 'Inserir lista desordenada',
|
||||
'insertOrderedList': 'Inserir lista ordenada',
|
||||
'outdent': 'Reducir tabulación do parágrafo',
|
||||
'indent': 'Aumentar tabulación do parágrafo',
|
||||
'formatPara': 'Mudar estilo do bloque a parágrafo (etiqueta P)',
|
||||
'formatH1': 'Mudar estilo do bloque a H1',
|
||||
'formatH2': 'Mudar estilo do bloque a H2',
|
||||
'formatH3': 'Mudar estilo do bloque a H3',
|
||||
'formatH4': 'Mudar estilo do bloque a H4',
|
||||
'formatH5': 'Mudar estilo do bloque a H5',
|
||||
'formatH6': 'Mudar estilo do bloque a H6',
|
||||
'insertHorizontalRule': 'Inserir liña horizontal',
|
||||
'linkDialog.show': 'Amosar panel ligazóns'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfacer',
|
||||
redo: 'Refacer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIAIS',
|
||||
select: 'Selecciona Caracteres especiais'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-he-IL.js
vendored
Normal file
155
public/js/summernote/lang/summernote-he-IL.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'he-IL': {
|
||||
font: {
|
||||
bold: 'מודגש',
|
||||
italic: 'נטוי',
|
||||
underline: 'קו תחתון',
|
||||
clear: 'נקה עיצוב',
|
||||
height: 'גובה',
|
||||
name: 'גופן',
|
||||
strikethrough: 'קו חוצה',
|
||||
subscript: 'כתב תחתי',
|
||||
superscript: 'כתב עילי',
|
||||
size: 'גודל גופן'
|
||||
},
|
||||
image: {
|
||||
image: 'תמונה',
|
||||
insert: 'הוסף תמונה',
|
||||
resizeFull: 'גודל מלא',
|
||||
resizeHalf: 'להקטין לחצי',
|
||||
resizeQuarter: 'להקטין לרבע',
|
||||
floatLeft: 'יישור לשמאל',
|
||||
floatRight: 'יישור לימין',
|
||||
floatNone: 'ישר',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'גרור תמונה לכאן',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'בחר מתוך קבצים',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'נתיב לתמונה',
|
||||
remove: 'הסר תמונה',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'סרטון',
|
||||
videoLink: 'קישור לסרטון',
|
||||
insert: 'הוסף סרטון',
|
||||
url: 'קישור לסרטון',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion או Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'קישור',
|
||||
insert: 'הוסף קישור',
|
||||
unlink: 'הסר קישור',
|
||||
edit: 'ערוך',
|
||||
textToDisplay: 'טקסט להציג',
|
||||
url: 'קישור',
|
||||
openInNewWindow: 'פתח בחלון חדש'
|
||||
},
|
||||
table: {
|
||||
table: 'טבלה',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'הוסף קו'
|
||||
},
|
||||
style: {
|
||||
style: 'עיצוב',
|
||||
p: 'טקסט רגיל',
|
||||
blockquote: 'ציטוט',
|
||||
pre: 'קוד',
|
||||
h1: 'כותרת 1',
|
||||
h2: 'כותרת 2',
|
||||
h3: 'כותרת 3',
|
||||
h4: 'כותרת 4',
|
||||
h5: 'כותרת 5',
|
||||
h6: 'כותרת 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'רשימת תבליטים',
|
||||
ordered: 'רשימה ממוספרת'
|
||||
},
|
||||
options: {
|
||||
help: 'עזרה',
|
||||
fullscreen: 'מסך מלא',
|
||||
codeview: 'תצוגת קוד'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'פסקה',
|
||||
outdent: 'הקטן כניסה',
|
||||
indent: 'הגדל כניסה',
|
||||
left: 'יישור לשמאל',
|
||||
center: 'יישור למרכז',
|
||||
right: 'יישור לימין',
|
||||
justify: 'מיושר'
|
||||
},
|
||||
color: {
|
||||
recent: 'צבע טקסט אחרון',
|
||||
more: 'עוד צבעים',
|
||||
background: 'צבע רקע',
|
||||
foreground: 'צבע טקסט',
|
||||
transparent: 'שקוף',
|
||||
setTransparent: 'קבע כשקוף',
|
||||
reset: 'איפוס',
|
||||
resetToDefault: 'אפס לברירת מחדל'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'קיצורי מקלדת',
|
||||
close: 'סגור',
|
||||
textFormatting: 'עיצוב הטקסט',
|
||||
action: 'פעולה',
|
||||
paragraphFormatting: 'סגנונות פסקה',
|
||||
documentStyle: 'עיצוב המסמך',
|
||||
extraKeys: 'קיצורים נוספים'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'בטל פעולה',
|
||||
redo: 'בצע שוב'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-hr-HR.js
vendored
Normal file
155
public/js/summernote/lang/summernote-hr-HR.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'hr-HR': {
|
||||
font: {
|
||||
bold: 'Podebljano',
|
||||
italic: 'Kurziv',
|
||||
underline: 'Podvučeno',
|
||||
clear: 'Ukloni stilove fonta',
|
||||
height: 'Visina linije',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Precrtano',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veličina fonta'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Ubaci sliku',
|
||||
resizeFull: 'Puna veličina',
|
||||
resizeHalf: 'Umanji na 50%',
|
||||
resizeQuarter: 'Umanji na 25%',
|
||||
floatLeft: 'Poravnaj lijevo',
|
||||
floatRight: 'Poravnaj desno',
|
||||
floatNone: 'Bez poravnanja',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Povuci sliku ovdje',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izaberi iz datoteke',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Adresa slike',
|
||||
remove: 'Ukloni sliku',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Veza na video',
|
||||
insert: 'Ubaci video',
|
||||
url: 'URL video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Veza',
|
||||
insert: 'Ubaci vezu',
|
||||
unlink: 'Ukloni vezu',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Tekst za prikaz',
|
||||
url: 'Internet adresa',
|
||||
openInNewWindow: 'Otvori u novom prozoru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tablica',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Ubaci horizontalnu liniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'pni',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kôd',
|
||||
h1: 'Naslov 1',
|
||||
h2: 'Naslov 2',
|
||||
h3: 'Naslov 3',
|
||||
h4: 'Naslov 4',
|
||||
h5: 'Naslov 5',
|
||||
h6: 'Naslov 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Obična lista',
|
||||
ordered: 'Numerirana lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoć',
|
||||
fullscreen: 'Preko cijelog ekrana',
|
||||
codeview: 'Izvorni kôd'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Smanji uvlačenje',
|
||||
indent: 'Povećaj uvlačenje',
|
||||
left: 'Poravnaj lijevo',
|
||||
center: 'Centrirano',
|
||||
right: 'Poravnaj desno',
|
||||
justify: 'Poravnaj obostrano'
|
||||
},
|
||||
color: {
|
||||
recent: 'Posljednja boja',
|
||||
more: 'Više boja',
|
||||
background: 'Boja pozadine',
|
||||
foreground: 'Boja teksta',
|
||||
transparent: 'Prozirna',
|
||||
setTransparent: 'Prozirna',
|
||||
reset: 'Poništi',
|
||||
resetToDefault: 'Podrazumijevana'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Prečice s tipkovnice',
|
||||
close: 'Zatvori',
|
||||
textFormatting: 'Formatiranje teksta',
|
||||
action: 'Akcija',
|
||||
paragraphFormatting: 'Formatiranje paragrafa',
|
||||
documentStyle: 'Stil dokumenta',
|
||||
extraKeys: 'Dodatne kombinacije'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Poništi',
|
||||
redo: 'Ponovi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-hu-HU.js
vendored
Normal file
155
public/js/summernote/lang/summernote-hu-HU.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'hu-HU': {
|
||||
font: {
|
||||
bold: 'Félkövér',
|
||||
italic: 'Dőlt',
|
||||
underline: 'Aláhúzott',
|
||||
clear: 'Formázás törlése',
|
||||
height: 'Sorköz',
|
||||
name: 'Betűtípus',
|
||||
strikethrough: 'Áthúzott',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Betűméret'
|
||||
},
|
||||
image: {
|
||||
image: 'Kép',
|
||||
insert: 'Kép beszúrása',
|
||||
resizeFull: 'Átméretezés teljes méretre',
|
||||
resizeHalf: 'Átméretezés felére',
|
||||
resizeQuarter: 'Átméretezés negyedére',
|
||||
floatLeft: 'Igazítás balra',
|
||||
floatRight: 'Igazítás jobbra',
|
||||
floatNone: 'Igazítás törlése',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Ide húzhat képet vagy szöveget',
|
||||
dropImage: 'Engedje el a képet vagy szöveget',
|
||||
selectFromFiles: 'Fájlok kiválasztása',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Kép URL címe',
|
||||
remove: 'Kép törlése',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Videó',
|
||||
videoLink: 'Videó hivatkozás',
|
||||
insert: 'Videó beszúrása',
|
||||
url: 'Videó URL címe',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion vagy Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Hivatkozás',
|
||||
insert: 'Hivatkozás beszúrása',
|
||||
unlink: 'Hivatkozás megszüntetése',
|
||||
edit: 'Szerkesztés',
|
||||
textToDisplay: 'Megjelenítendő szöveg',
|
||||
url: 'Milyen URL címre hivatkozzon?',
|
||||
openInNewWindow: 'Megnyitás új ablakban'
|
||||
},
|
||||
table: {
|
||||
table: 'Táblázat',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Elválasztó vonal beszúrása'
|
||||
},
|
||||
style: {
|
||||
style: 'Stílus',
|
||||
p: 'Normál',
|
||||
blockquote: 'Idézet',
|
||||
pre: 'Kód',
|
||||
h1: 'Fejléc 1',
|
||||
h2: 'Fejléc 2',
|
||||
h3: 'Fejléc 3',
|
||||
h4: 'Fejléc 4',
|
||||
h5: 'Fejléc 5',
|
||||
h6: 'Fejléc 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Listajeles lista',
|
||||
ordered: 'Számozott lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Súgó',
|
||||
fullscreen: 'Teljes képernyő',
|
||||
codeview: 'Kód nézet'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Bekezdés',
|
||||
outdent: 'Behúzás csökkentése',
|
||||
indent: 'Behúzás növelése',
|
||||
left: 'Igazítás balra',
|
||||
center: 'Igazítás középre',
|
||||
right: 'Igazítás jobbra',
|
||||
justify: 'Sorkizárt'
|
||||
},
|
||||
color: {
|
||||
recent: 'Jelenlegi szín',
|
||||
more: 'További színek',
|
||||
background: 'Háttérszín',
|
||||
foreground: 'Betűszín',
|
||||
transparent: 'Átlátszó',
|
||||
setTransparent: 'Átlászóság beállítása',
|
||||
reset: 'Visszaállítás',
|
||||
resetToDefault: 'Alaphelyzetbe állítás'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Gyorsbillentyű',
|
||||
close: 'Bezárás',
|
||||
textFormatting: 'Szöveg formázása',
|
||||
action: 'Művelet',
|
||||
paragraphFormatting: 'Bekezdés formázása',
|
||||
documentStyle: 'Dokumentumstílus',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Új bekezdés',
|
||||
'undo': 'Visszavonás',
|
||||
'redo': 'Újra',
|
||||
'tab': 'Behúzás növelése',
|
||||
'untab': 'Behúzás csökkentése',
|
||||
'bold': 'Félkövérre állítás',
|
||||
'italic': 'Dőltre állítás',
|
||||
'underline': 'Aláhúzás',
|
||||
'strikethrough': 'Áthúzás',
|
||||
'removeFormat': 'Formázás törlése',
|
||||
'justifyLeft': 'Balra igazítás',
|
||||
'justifyCenter': 'Középre igazítás',
|
||||
'justifyRight': 'Jobbra igazítás',
|
||||
'justifyFull': 'Sorkizárt',
|
||||
'insertUnorderedList': 'Számozatlan lista be/ki',
|
||||
'insertOrderedList': 'Számozott lista be/ki',
|
||||
'outdent': 'Jelenlegi bekezdés behúzásának megszüntetése',
|
||||
'indent': 'Jelenlegi bekezdés behúzása',
|
||||
'formatPara': 'Blokk formázása bekezdésként (P tag)',
|
||||
'formatH1': 'Blokk formázása, mint Fejléc 1',
|
||||
'formatH2': 'Blokk formázása, mint Fejléc 2',
|
||||
'formatH3': 'Blokk formázása, mint Fejléc 3',
|
||||
'formatH4': 'Blokk formázása, mint Fejléc 4',
|
||||
'formatH5': 'Blokk formázása, mint Fejléc 5',
|
||||
'formatH6': 'Blokk formázása, mint Fejléc 6',
|
||||
'insertHorizontalRule': 'Vízszintes vonal beszúrása',
|
||||
'linkDialog.show': 'Link párbeszédablak megjelenítése'
|
||||
},
|
||||
history: {
|
||||
undo: 'Visszavonás',
|
||||
redo: 'Újra'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-id-ID.js
vendored
Normal file
155
public/js/summernote/lang/summernote-id-ID.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'id-ID': {
|
||||
font: {
|
||||
bold: 'Tebal',
|
||||
italic: 'Miring',
|
||||
underline: 'Garis bawah',
|
||||
clear: 'Bersihkan gaya',
|
||||
height: 'Jarak baris',
|
||||
name: 'Jenis Tulisan',
|
||||
strikethrough: 'Coret',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Ukuran font'
|
||||
},
|
||||
image: {
|
||||
image: 'Gambar',
|
||||
insert: 'Sisipkan gambar',
|
||||
resizeFull: 'Ukuran penuh',
|
||||
resizeHalf: 'Ukuran 50%',
|
||||
resizeQuarter: 'Ukuran 25%',
|
||||
floatLeft: 'Rata kiri',
|
||||
floatRight: 'Rata kanan',
|
||||
floatNone: 'Tanpa perataan',
|
||||
shapeRounded: 'Bentuk: Membundar',
|
||||
shapeCircle: 'Bentuk: Bundar',
|
||||
shapeThumbnail: 'Bentuk: Thumbnail',
|
||||
shapeNone: 'Bentuk: Tidak ada',
|
||||
dragImageHere: 'Tarik gambar ke area ini',
|
||||
dropImage: 'Letakkan gambar atau teks',
|
||||
selectFromFiles: 'Pilih gambar dari berkas',
|
||||
maximumFileSize: 'Ukuran maksimal berkas',
|
||||
maximumFileSizeError: 'Ukuran maksimal berkas terlampaui.',
|
||||
url: 'URL gambar',
|
||||
remove: 'Hapus Gambar',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Link video',
|
||||
insert: 'Sisipkan video',
|
||||
url: 'Tautan video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion atau Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Tautan',
|
||||
insert: 'Tambah tautan',
|
||||
unlink: 'Hapus tautan',
|
||||
edit: 'Edit',
|
||||
textToDisplay: 'Tampilan teks',
|
||||
url: 'Tautan tujuan',
|
||||
openInNewWindow: 'Buka di jendela baru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Tambahkan baris ke atas',
|
||||
addRowBelow: 'Tambahkan baris ke bawah',
|
||||
addColLeft: 'Tambahkan kolom ke kiri',
|
||||
addColRight: 'Tambahkan kolom ke kanan',
|
||||
delRow: 'Hapus baris',
|
||||
delCol: 'Hapus kolom',
|
||||
delTable: 'Hapus tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Masukkan garis horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Gaya',
|
||||
p: 'p',
|
||||
blockquote: 'Kutipan',
|
||||
pre: 'Kode',
|
||||
h1: 'Heading 1',
|
||||
h2: 'Heading 2',
|
||||
h3: 'Heading 3',
|
||||
h4: 'Heading 4',
|
||||
h5: 'Heading 5',
|
||||
h6: 'Heading 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Pencacahan',
|
||||
ordered: 'Penomoran'
|
||||
},
|
||||
options: {
|
||||
help: 'Bantuan',
|
||||
fullscreen: 'Layar penuh',
|
||||
codeview: 'Kode HTML'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Outdent',
|
||||
indent: 'Indent',
|
||||
left: 'Rata kiri',
|
||||
center: 'Rata tengah',
|
||||
right: 'Rata kanan',
|
||||
justify: 'Rata kanan kiri'
|
||||
},
|
||||
color: {
|
||||
recent: 'Warna sekarang',
|
||||
more: 'Selengkapnya',
|
||||
background: 'Warna latar',
|
||||
foreground: 'Warna font',
|
||||
transparent: 'Transparan',
|
||||
setTransparent: 'Atur transparansi',
|
||||
reset: 'Atur ulang',
|
||||
resetToDefault: 'Kembalikan kesemula'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Jalan pintas',
|
||||
close: 'Tutup',
|
||||
textFormatting: 'Format teks',
|
||||
action: 'Aksi',
|
||||
paragraphFormatting: 'Format paragraf',
|
||||
documentStyle: 'Gaya dokumen',
|
||||
extraKeys: 'Shortcut tambahan'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Tambahkan paragraf',
|
||||
'undo': 'Urungkan perintah terakhir',
|
||||
'redo': 'Kembalikan perintah terakhir',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Mengaktifkan gaya tebal',
|
||||
'italic': 'Mengaktifkan gaya italic',
|
||||
'underline': 'Mengaktifkan gaya underline',
|
||||
'strikethrough': 'Mengaktifkan gaya strikethrough',
|
||||
'removeFormat': 'Hapus semua gaya',
|
||||
'justifyLeft': 'Atur rata kiri',
|
||||
'justifyCenter': 'Atur rata tengah',
|
||||
'justifyRight': 'Atur rata kanan',
|
||||
'justifyFull': 'Atur rata kiri-kanan',
|
||||
'insertUnorderedList': 'Nyalakan urutan tanpa nomor',
|
||||
'insertOrderedList': 'Nyalakan urutan bernomor',
|
||||
'outdent': 'Outdent di paragraf terpilih',
|
||||
'indent': 'Indent di paragraf terpilih',
|
||||
'formatPara': 'Ubah format gaya tulisan terpilih menjadi paragraf',
|
||||
'formatH1': 'Ubah format gaya tulisan terpilih menjadi Heading 1',
|
||||
'formatH2': 'Ubah format gaya tulisan terpilih menjadi Heading 2',
|
||||
'formatH3': 'Ubah format gaya tulisan terpilih menjadi Heading 3',
|
||||
'formatH4': 'Ubah format gaya tulisan terpilih menjadi Heading 4',
|
||||
'formatH5': 'Ubah format gaya tulisan terpilih menjadi Heading 5',
|
||||
'formatH6': 'Ubah format gaya tulisan terpilih menjadi Heading 6',
|
||||
'insertHorizontalRule': 'Masukkan garis horizontal',
|
||||
'linkDialog.show': 'Tampilkan Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Kembali',
|
||||
redo: 'Ulang'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'KARAKTER KHUSUS',
|
||||
select: 'Pilih karakter khusus'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-it-IT.js
vendored
Normal file
155
public/js/summernote/lang/summernote-it-IT.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'it-IT': {
|
||||
font: {
|
||||
bold: 'Testo in grassetto',
|
||||
italic: 'Testo in corsivo',
|
||||
underline: 'Testo sottolineato',
|
||||
clear: 'Elimina la formattazione del testo',
|
||||
height: 'Altezza della linea di testo',
|
||||
name: 'Famiglia Font',
|
||||
strikethrough: 'Testo barrato',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Dimensione del carattere'
|
||||
},
|
||||
image: {
|
||||
image: 'Immagine',
|
||||
insert: 'Inserisci Immagine',
|
||||
resizeFull: 'Dimensioni originali',
|
||||
resizeHalf: 'Ridimensiona al 50%',
|
||||
resizeQuarter: 'Ridimensiona al 25%',
|
||||
floatLeft: 'Posiziona a sinistra',
|
||||
floatRight: 'Posiziona a destra',
|
||||
floatNone: 'Nessun posizionamento',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Trascina qui un\'immagine',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Scegli dai Documenti',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL dell\'immagine',
|
||||
remove: 'Rimuovi immagine',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Collegamento ad un Video',
|
||||
insert: 'Inserisci Video',
|
||||
url: 'URL del Video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Collegamento',
|
||||
insert: 'Inserisci Collegamento',
|
||||
unlink: 'Elimina collegamento',
|
||||
edit: 'Modifica collegamento',
|
||||
textToDisplay: 'Testo del collegamento',
|
||||
url: 'URL del collegamento',
|
||||
openInNewWindow: 'Apri in una nuova finestra'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabella',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserisce una linea di separazione'
|
||||
},
|
||||
style: {
|
||||
style: 'Stili',
|
||||
p: 'pe',
|
||||
blockquote: 'Citazione',
|
||||
pre: 'Codice',
|
||||
h1: 'Titolo 1',
|
||||
h2: 'Titolo 2',
|
||||
h3: 'Titolo 3',
|
||||
h4: 'Titolo 4',
|
||||
h5: 'Titolo 5',
|
||||
h6: 'Titolo 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Elenco non ordinato',
|
||||
ordered: 'Elenco ordinato'
|
||||
},
|
||||
options: {
|
||||
help: 'Aiuto',
|
||||
fullscreen: 'Modalità a tutto schermo',
|
||||
codeview: 'Visualizza codice'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrafo',
|
||||
outdent: 'Diminuisce il livello di rientro',
|
||||
indent: 'Aumenta il livello di rientro',
|
||||
left: 'Allinea a sinistra',
|
||||
center: 'Centra',
|
||||
right: 'Allinea a destra',
|
||||
justify: 'Giustifica (allinea a destra e sinistra)'
|
||||
},
|
||||
color: {
|
||||
recent: 'Ultimo colore utilizzato',
|
||||
more: 'Altri colori',
|
||||
background: 'Colore di sfondo',
|
||||
foreground: 'Colore',
|
||||
transparent: 'Trasparente',
|
||||
setTransparent: 'Trasparente',
|
||||
reset: 'Reimposta',
|
||||
resetToDefault: 'Reimposta i colori'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Scorciatoie da tastiera',
|
||||
close: 'Chiudi',
|
||||
textFormatting: 'Formattazione testo',
|
||||
action: 'Azioni',
|
||||
paragraphFormatting: 'Formattazione paragrafo',
|
||||
documentStyle: 'Stili',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Annulla',
|
||||
redo: 'Ripristina'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-ja-JP.js
vendored
Normal file
155
public/js/summernote/lang/summernote-ja-JP.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ja-JP': {
|
||||
font: {
|
||||
bold: '太字',
|
||||
italic: '斜体',
|
||||
underline: '下線',
|
||||
clear: 'クリア',
|
||||
height: '文字高',
|
||||
name: 'フォント',
|
||||
strikethrough: '取り消し線',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: '大きさ'
|
||||
},
|
||||
image: {
|
||||
image: '画像',
|
||||
insert: '画像挿入',
|
||||
resizeFull: '最大化',
|
||||
resizeHalf: '1/2',
|
||||
resizeQuarter: '1/4',
|
||||
floatLeft: '左寄せ',
|
||||
floatRight: '右寄せ',
|
||||
floatNone: '寄せ解除',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'ここに画像をドラッグしてください',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: '画像ファイルを選ぶ',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URLから画像を挿入する',
|
||||
remove: '画像を削除する',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: '動画',
|
||||
videoLink: '動画リンク',
|
||||
insert: '動画挿入',
|
||||
url: '動画のURL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'リンク',
|
||||
insert: 'リンク挿入',
|
||||
unlink: 'リンク解除',
|
||||
edit: '編集',
|
||||
textToDisplay: 'リンク文字列',
|
||||
url: 'URLを入力してください',
|
||||
openInNewWindow: '新しいウィンドウで開く'
|
||||
},
|
||||
table: {
|
||||
table: 'テーブル',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: '水平線の挿入'
|
||||
},
|
||||
style: {
|
||||
style: 'スタイル',
|
||||
p: '標準',
|
||||
blockquote: '引用',
|
||||
pre: 'コード',
|
||||
h1: '見出し1',
|
||||
h2: '見出し2',
|
||||
h3: '見出し3',
|
||||
h4: '見出し4',
|
||||
h5: '見出し5',
|
||||
h6: '見出し6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '通常リスト',
|
||||
ordered: '番号リスト'
|
||||
},
|
||||
options: {
|
||||
help: 'ヘルプ',
|
||||
fullscreen: 'フルスクリーン',
|
||||
codeview: 'コード表示'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '文章',
|
||||
outdent: '字上げ',
|
||||
indent: '字下げ',
|
||||
left: '左寄せ',
|
||||
center: '中央寄せ',
|
||||
right: '右寄せ',
|
||||
justify: '均等割付'
|
||||
},
|
||||
color: {
|
||||
recent: '現在の色',
|
||||
more: 'もっと見る',
|
||||
background: '背景色',
|
||||
foreground: '文字色',
|
||||
transparent: '透明',
|
||||
setTransparent: '透明にする',
|
||||
reset: '標準',
|
||||
resetToDefault: '標準に戻す'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'ショートカット',
|
||||
close: '閉じる',
|
||||
textFormatting: '文字フォーマット',
|
||||
action: 'アクション',
|
||||
paragraphFormatting: '文章フォーマット',
|
||||
documentStyle: 'ドキュメント形式',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': '改行挿入',
|
||||
'undo': '一旦、行った操作を戻す',
|
||||
'redo': '最後のコマンドをやり直す',
|
||||
'tab': 'Tab',
|
||||
'untab': 'タブ戻し',
|
||||
'bold': '太文字',
|
||||
'italic': '斜体',
|
||||
'underline': '下線',
|
||||
'strikethrough': '取り消し線',
|
||||
'removeFormat': '装飾を戻す',
|
||||
'justifyLeft': '左寄せ',
|
||||
'justifyCenter': '真ん中寄せ',
|
||||
'justifyRight': '右寄せ',
|
||||
'justifyFull': 'すべてを整列',
|
||||
'insertUnorderedList': '行頭に●を挿入',
|
||||
'insertOrderedList': '行頭に番号を挿入',
|
||||
'outdent': '字下げを戻す(アウトデント)',
|
||||
'indent': '字下げする(インデント)',
|
||||
'formatPara': '段落(P tag)指定',
|
||||
'formatH1': 'H1指定',
|
||||
'formatH2': 'H2指定',
|
||||
'formatH3': 'H3指定',
|
||||
'formatH4': 'H4指定',
|
||||
'formatH5': 'H5指定',
|
||||
'formatH6': 'H6指定',
|
||||
'insertHorizontalRule': '<hr />を挿入',
|
||||
'linkDialog.show': 'リンク挿入'
|
||||
},
|
||||
history: {
|
||||
undo: '元に戻す',
|
||||
redo: 'やり直す'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
156
public/js/summernote/lang/summernote-ko-KR.js
vendored
Normal file
156
public/js/summernote/lang/summernote-ko-KR.js
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ko-KR': {
|
||||
font: {
|
||||
bold: '굵게',
|
||||
italic: '기울임꼴',
|
||||
underline: '밑줄',
|
||||
clear: '글자 효과 없애기',
|
||||
height: '줄간격',
|
||||
name: '글꼴',
|
||||
superscript: '위 첨자',
|
||||
subscript: '아래 첨자',
|
||||
strikethrough: '취소선',
|
||||
size: '글자 크기'
|
||||
},
|
||||
image: {
|
||||
image: '사진',
|
||||
insert: '사진 추가',
|
||||
resizeFull: '100% 크기로 변경',
|
||||
resizeHalf: '50% 크기로 변경',
|
||||
resizeQuarter: '25% 크기로 변경',
|
||||
floatLeft: '왼쪽 정렬',
|
||||
floatRight: '오른쪽 정렬',
|
||||
floatNone: '정렬하지 않음',
|
||||
shapeRounded: '스타일: 둥근 모서리',
|
||||
shapeCircle: '스타일: 원형',
|
||||
shapeThumbnail: '스타일: 액자',
|
||||
shapeNone: '스타일: 없음',
|
||||
dragImageHere: '텍스트 혹은 사진을 이곳으로 끌어오세요',
|
||||
dropImage: '텍스트 혹은 사진을 내려놓으세요',
|
||||
selectFromFiles: '파일 선택',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: '사진 URL',
|
||||
remove: '사진 삭제',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: '동영상',
|
||||
videoLink: '동영상 링크',
|
||||
insert: '동영상 추가',
|
||||
url: '동영상 URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, Youku 사용 가능)'
|
||||
},
|
||||
link: {
|
||||
link: '링크',
|
||||
insert: '링크 추가',
|
||||
unlink: '링크 삭제',
|
||||
edit: '수정',
|
||||
textToDisplay: '링크에 표시할 내용',
|
||||
url: '이동할 URL',
|
||||
openInNewWindow: '새창으로 열기'
|
||||
},
|
||||
table: {
|
||||
table: '테이블',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: '구분선 추가'
|
||||
},
|
||||
style: {
|
||||
style: '스타일',
|
||||
p: '본문',
|
||||
blockquote: '인용구',
|
||||
pre: '코드',
|
||||
h1: '제목 1',
|
||||
h2: '제목 2',
|
||||
h3: '제목 3',
|
||||
h4: '제목 4',
|
||||
h5: '제목 5',
|
||||
h6: '제목 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '글머리 기호',
|
||||
ordered: '번호 매기기'
|
||||
},
|
||||
options: {
|
||||
help: '도움말',
|
||||
fullscreen: '전체 화면',
|
||||
codeview: '코드 보기'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '문단 정렬',
|
||||
outdent: '내어쓰기',
|
||||
indent: '들여쓰기',
|
||||
left: '왼쪽 정렬',
|
||||
center: '가운데 정렬',
|
||||
right: '오른쪽 정렬',
|
||||
justify: '양쪽 정렬'
|
||||
},
|
||||
color: {
|
||||
recent: '마지막으로 사용한 색',
|
||||
more: '다른 색 선택',
|
||||
background: '배경색',
|
||||
foreground: '글자색',
|
||||
transparent: '투명',
|
||||
setTransparent: '투명',
|
||||
reset: '취소',
|
||||
resetToDefault: '기본 값으로 변경',
|
||||
cpSelect: '고르다'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: '키보드 단축키',
|
||||
close: '닫기',
|
||||
textFormatting: '글자 스타일 적용',
|
||||
action: '기능',
|
||||
paragraphFormatting: '문단 스타일 적용',
|
||||
documentStyle: '문서 스타일 적용',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: '실행 취소',
|
||||
redo: '다시 실행'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: '특수문자',
|
||||
select: '특수문자를 선택하세요'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-lt-LT.js
vendored
Normal file
155
public/js/summernote/lang/summernote-lt-LT.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'lt-LT': {
|
||||
font: {
|
||||
bold: 'Paryškintas',
|
||||
italic: 'Kursyvas',
|
||||
underline: 'Pabrėžtas',
|
||||
clear: 'Be formatavimo',
|
||||
height: 'Eilutės aukštis',
|
||||
name: 'Šrifto pavadinimas',
|
||||
strikethrough: 'Perbrauktas',
|
||||
superscript: 'Viršutinis',
|
||||
subscript: 'Indeksas',
|
||||
size: 'Šrifto dydis'
|
||||
},
|
||||
image: {
|
||||
image: 'Paveikslėlis',
|
||||
insert: 'Įterpti paveikslėlį',
|
||||
resizeFull: 'Pilnas dydis',
|
||||
resizeHalf: 'Sumažinti dydį 50%',
|
||||
resizeQuarter: 'Sumažinti dydį 25%',
|
||||
floatLeft: 'Kairinis lygiavimas',
|
||||
floatRight: 'Dešininis lygiavimas',
|
||||
floatNone: 'Jokio lygiavimo',
|
||||
shapeRounded: 'Forma: apvalūs kraštai',
|
||||
shapeCircle: 'Forma: apskritimas',
|
||||
shapeThumbnail: 'Forma: miniatiūra',
|
||||
shapeNone: 'Forma: jokia',
|
||||
dragImageHere: 'Vilkite paveikslėlį čia',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Pasirinkite failą',
|
||||
maximumFileSize: 'Maskimalus failo dydis',
|
||||
maximumFileSizeError: 'Maskimalus failo dydis viršytas!',
|
||||
url: 'Paveikslėlio URL adresas',
|
||||
remove: 'Ištrinti paveikslėlį',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Nuoroda',
|
||||
insert: 'Įterpti nuorodą',
|
||||
unlink: 'Pašalinti nuorodą',
|
||||
edit: 'Redaguoti',
|
||||
textToDisplay: 'Rodomas tekstas',
|
||||
url: 'Koks URL adresas yra susietas?',
|
||||
openInNewWindow: 'Atidaryti naujame lange'
|
||||
},
|
||||
table: {
|
||||
table: 'Lentelė',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Įterpti horizontalią liniją'
|
||||
},
|
||||
style: {
|
||||
style: 'Stilius',
|
||||
p: 'pus',
|
||||
blockquote: 'Citata',
|
||||
pre: 'Kodas',
|
||||
h1: 'Antraštė 1',
|
||||
h2: 'Antraštė 2',
|
||||
h3: 'Antraštė 3',
|
||||
h4: 'Antraštė 4',
|
||||
h5: 'Antraštė 5',
|
||||
h6: 'Antraštė 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Suženklintasis sąrašas',
|
||||
ordered: 'Sunumeruotas sąrašas'
|
||||
},
|
||||
options: {
|
||||
help: 'Pagalba',
|
||||
fullscreen: 'Viso ekrano režimas',
|
||||
codeview: 'HTML kodo peržiūra'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Pastraipa',
|
||||
outdent: 'Sumažinti įtrauką',
|
||||
indent: 'Padidinti įtrauką',
|
||||
left: 'Kairinė lygiuotė',
|
||||
center: 'Centrinė lygiuotė',
|
||||
right: 'Dešininė lygiuotė',
|
||||
justify: 'Abipusis išlyginimas'
|
||||
},
|
||||
color: {
|
||||
recent: 'Paskutinė naudota spalva',
|
||||
more: 'Daugiau spalvų',
|
||||
background: 'Fono spalva',
|
||||
foreground: 'Šrifto spalva',
|
||||
transparent: 'Permatoma',
|
||||
setTransparent: 'Nustatyti skaidrumo intensyvumą',
|
||||
reset: 'Atkurti',
|
||||
resetToDefault: 'Atstatyti numatytąją spalvą'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Spartieji klavišai',
|
||||
close: 'Uždaryti',
|
||||
textFormatting: 'Teksto formatavimas',
|
||||
action: 'Veiksmas',
|
||||
paragraphFormatting: 'Pastraipos formatavimas',
|
||||
documentStyle: 'Dokumento stilius',
|
||||
extraKeys: 'Papildomi klavišų deriniai'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Anuliuoti veiksmą',
|
||||
redo: 'Perdaryti veiksmą'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-lt-LV.js
vendored
Normal file
155
public/js/summernote/lang/summernote-lt-LV.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'lv-LV': {
|
||||
font: {
|
||||
bold: 'Treknraksts',
|
||||
italic: 'Kursīvs',
|
||||
underline: 'Pasvītrots',
|
||||
clear: 'Noņemt formatējumu',
|
||||
height: 'Līnijas augstums',
|
||||
name: 'Fonts',
|
||||
strikethrough: 'Nosvītrots',
|
||||
superscript: 'Augšraksts',
|
||||
subscript: 'Apakšraksts',
|
||||
size: 'Fonta lielums'
|
||||
},
|
||||
image: {
|
||||
image: 'Attēls',
|
||||
insert: 'Ievietot attēlu',
|
||||
resizeFull: 'Pilns izmērts',
|
||||
resizeHalf: 'Samazināt 50%',
|
||||
resizeQuarter: 'Samazināt 25%',
|
||||
floatLeft: 'Līdzināt pa kreisi',
|
||||
floatRight: 'Līdzināt pa labi',
|
||||
floatNone: 'Nelīdzināt',
|
||||
shapeRounded: 'Forma: apaļām malām',
|
||||
shapeCircle: 'Forma: aplis',
|
||||
shapeThumbnail: 'Forma: rāmītis',
|
||||
shapeNone: 'Forma: orģināla',
|
||||
dragImageHere: 'Ievēlciet attēlu šeit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izvēlēties failu',
|
||||
maximumFileSize: 'Maksimālais faila izmērs',
|
||||
maximumFileSizeError: 'Faila izmērs pārāk liels!',
|
||||
url: 'Attēla URL',
|
||||
remove: 'Dzēst attēlu',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video Link',
|
||||
insert: 'Insert Video',
|
||||
url: 'Video URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Saite',
|
||||
insert: 'Ievietot saiti',
|
||||
unlink: 'Noņemt saiti',
|
||||
edit: 'Rediģēt',
|
||||
textToDisplay: 'Saites saturs',
|
||||
url: 'Koks URL adresas yra susietas?',
|
||||
openInNewWindow: 'Atvērt jaunā logā'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabula',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Ievietot līniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stils',
|
||||
p: 'Parasts',
|
||||
blockquote: 'Citāts',
|
||||
pre: 'Kods',
|
||||
h1: 'Virsraksts h1',
|
||||
h2: 'Virsraksts h2',
|
||||
h3: 'Virsraksts h3',
|
||||
h4: 'Virsraksts h4',
|
||||
h5: 'Virsraksts h5',
|
||||
h6: 'Virsraksts h6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Nenumurēts saraksts',
|
||||
ordered: 'Numurēts saraksts'
|
||||
},
|
||||
options: {
|
||||
help: 'Palīdzība',
|
||||
fullscreen: 'Pa visu ekrānu',
|
||||
codeview: 'HTML kods'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragrāfs',
|
||||
outdent: 'Samazināt atkāpi',
|
||||
indent: 'Palielināt atkāpi',
|
||||
left: 'Līdzināt pa kreisi',
|
||||
center: 'Centrēt',
|
||||
right: 'Līdzināt pa labi',
|
||||
justify: 'Līdzināt gar abām malām'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nesen izmantotās',
|
||||
more: 'Citas krāsas',
|
||||
background: 'Fona krāsa',
|
||||
foreground: 'Fonta krāsa',
|
||||
transparent: 'Caurspīdīgs',
|
||||
setTransparent: 'Iestatīt caurspīdīgumu',
|
||||
reset: 'Atjaunot',
|
||||
resetToDefault: 'Atjaunot noklusējumu'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Saīsnes',
|
||||
close: 'Aizvērt',
|
||||
textFormatting: 'Teksta formatēšana',
|
||||
action: 'Darbība',
|
||||
paragraphFormatting: 'Paragrāfa formatēšana',
|
||||
documentStyle: 'Dokumenta stils',
|
||||
extraKeys: 'Citas taustiņu kombinācijas'
|
||||
},
|
||||
help: {
|
||||
insertParagraph: 'Ievietot Paragrāfu',
|
||||
undo: 'Atcelt iepriekšējo darbību',
|
||||
redo: 'Atkārtot atcelto darbību',
|
||||
tab: 'Atkāpe',
|
||||
untab: 'Samazināt atkāpi',
|
||||
bold: 'Pārvērst tekstu treknrakstā',
|
||||
italic: 'Pārvērst tekstu slīprakstā (kursīvā)',
|
||||
underline: 'Pasvītrot tekstu',
|
||||
strikethrough: 'Nosvītrot tekstu',
|
||||
removeFormat: 'Notīrīt stilu no teksta',
|
||||
justifyLeft: 'Līdzīnāt saturu pa kreisi',
|
||||
justifyCenter: 'Centrēt saturu',
|
||||
justifyRight: 'Līdzīnāt saturu pa labi',
|
||||
justifyFull: 'Izlīdzināt saturu gar abām malām',
|
||||
insertUnorderedList: 'Ievietot nenumurētu sarakstu',
|
||||
insertOrderedList: 'Ievietot numurētu sarakstu',
|
||||
outdent: 'Samazināt/noņemt atkāpi paragrāfam',
|
||||
indent: 'Uzlikt atkāpi paragrāfam',
|
||||
formatPara: 'Mainīt bloka tipu uz (p) Paragrāfu',
|
||||
formatH1: 'Mainīt bloka tipu uz virsrakstu H1',
|
||||
formatH2: 'Mainīt bloka tipu uz virsrakstu H2',
|
||||
formatH3: 'Mainīt bloka tipu uz virsrakstu H3',
|
||||
formatH4: 'Mainīt bloka tipu uz virsrakstu H4',
|
||||
formatH5: 'Mainīt bloka tipu uz virsrakstu H5',
|
||||
formatH6: 'Mainīt bloka tipu uz virsrakstu H6',
|
||||
insertHorizontalRule: 'Ievietot horizontālu līniju',
|
||||
'linkDialog.show': 'Parādīt saites logu'
|
||||
},
|
||||
history: {
|
||||
undo: 'Atsauks (undo)',
|
||||
redo: 'Atkārtot (redo)'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
157
public/js/summernote/lang/summernote-mn-MN.js
vendored
Normal file
157
public/js/summernote/lang/summernote-mn-MN.js
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
// Starsoft Mongolia LLC Temuujin Ariunbold
|
||||
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'mn-MN': {
|
||||
font: {
|
||||
bold: 'Тод',
|
||||
italic: 'Налуу',
|
||||
underline: 'Доогуур зураас',
|
||||
clear: 'Цэвэрлэх',
|
||||
height: 'Өндөр',
|
||||
name: 'Фонт',
|
||||
superscript: 'Дээд илтгэгч',
|
||||
subscript: 'Доод илтгэгч',
|
||||
strikethrough: 'Дарах',
|
||||
size: 'Хэмжээ'
|
||||
},
|
||||
image: {
|
||||
image: 'Зураг',
|
||||
insert: 'Оруулах',
|
||||
resizeFull: 'Хэмжээ бүтэн',
|
||||
resizeHalf: 'Хэмжээ 1/2',
|
||||
resizeQuarter: 'Хэмжээ 1/4',
|
||||
floatLeft: 'Зүүн талд байрлуулах',
|
||||
floatRight: 'Баруун талд байрлуулах',
|
||||
floatNone: 'Анхдагч байрлалд аваачих',
|
||||
shapeRounded: 'Хүрээ: Дугуй',
|
||||
shapeCircle: 'Хүрээ: Тойрог',
|
||||
shapeThumbnail: 'Хүрээ: Хураангуй',
|
||||
shapeNone: 'Хүрээгүй',
|
||||
dragImageHere: 'Зургийг энд чирч авчирна уу',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Файлуудаас сонгоно уу',
|
||||
maximumFileSize: 'Файлын дээд хэмжээ',
|
||||
maximumFileSizeError: 'Файлын дээд хэмжээ хэтэрсэн',
|
||||
url: 'Зургийн URL',
|
||||
remove: 'Зургийг устгах',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Видео холбоос',
|
||||
insert: 'Видео оруулах',
|
||||
url: 'Видео URL?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion болон Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Холбоос',
|
||||
insert: 'Холбоос оруулах',
|
||||
unlink: 'Холбоос арилгах',
|
||||
edit: 'Засварлах',
|
||||
textToDisplay: 'Харуулах бичвэр',
|
||||
url: 'Энэ холбоос хаашаа очих вэ?',
|
||||
openInNewWindow: 'Шинэ цонхонд нээх'
|
||||
},
|
||||
table: {
|
||||
table: 'Хүснэгт',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Хэвтээ шугам оруулах'
|
||||
},
|
||||
style: {
|
||||
style: 'Хэв маяг',
|
||||
p: 'p',
|
||||
blockquote: 'Иш татах',
|
||||
pre: 'Эх сурвалж',
|
||||
h1: 'Гарчиг 1',
|
||||
h2: 'Гарчиг 2',
|
||||
h3: 'Гарчиг 3',
|
||||
h4: 'Гарчиг 4',
|
||||
h5: 'Гарчиг 5',
|
||||
h6: 'Гарчиг 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Эрэмбэлэгдээгүй',
|
||||
ordered: 'Эрэмбэлэгдсэн'
|
||||
},
|
||||
options: {
|
||||
help: 'Тусламж',
|
||||
fullscreen: 'Дэлгэцийг дүүргэх',
|
||||
codeview: 'HTML-Code харуулах'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Хэсэг',
|
||||
outdent: 'Догол мөр хасах',
|
||||
indent: 'Догол мөр нэмэх',
|
||||
left: 'Зүүн тийш эгнүүлэх',
|
||||
center: 'Төвд эгнүүлэх',
|
||||
right: 'Баруун тийш эгнүүлэх',
|
||||
justify: 'Мөрийг тэгшлэх'
|
||||
},
|
||||
color: {
|
||||
recent: 'Сүүлд хэрэглэсэн өнгө',
|
||||
more: 'Өөр өнгөнүүд',
|
||||
background: 'Дэвсгэр өнгө',
|
||||
foreground: 'Үсгийн өнгө',
|
||||
transparent: 'Тунгалаг',
|
||||
setTransparent: 'Тунгалаг болгох',
|
||||
reset: 'Анхдагч өнгөөр тохируулах',
|
||||
resetToDefault: 'Хэвд нь оруулах'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Богино холбоос',
|
||||
close: 'Хаалт',
|
||||
textFormatting: 'Бичвэрийг хэлбэржүүлэх',
|
||||
action: 'Үйлдэл',
|
||||
paragraphFormatting: 'Догол мөрийг хэлбэржүүлэх',
|
||||
documentStyle: 'Бичиг баримтын хэв загвар',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Буцаах',
|
||||
redo: 'Дахин хийх'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'Тусгай тэмдэгт',
|
||||
select: 'Тусгай тэмдэгт сонгох'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
154
public/js/summernote/lang/summernote-nb-NO.js
vendored
Normal file
154
public/js/summernote/lang/summernote-nb-NO.js
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'nb-NO': {
|
||||
font: {
|
||||
bold: 'Fet',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understrek',
|
||||
clear: 'Fjern formatering',
|
||||
height: 'Linjehøyde',
|
||||
name: 'Skrifttype',
|
||||
strikethrough: 'Gjennomstrek',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Skriftstørrelse'
|
||||
},
|
||||
image: {
|
||||
image: 'Bilde',
|
||||
insert: 'Sett inn bilde',
|
||||
resizeFull: 'Sett full størrelse',
|
||||
resizeHalf: 'Sett halv størrelse',
|
||||
resizeQuarter: 'Sett kvart størrelse',
|
||||
floatLeft: 'Flyt til venstre',
|
||||
floatRight: 'Flyt til høyre',
|
||||
floatNone: 'Fjern flyt',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Dra et bilde hit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Velg fra filer',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Bilde-URL',
|
||||
remove: 'Fjern bilde',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Videolenke',
|
||||
insert: 'Sett inn video',
|
||||
url: 'Video-URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Lenke',
|
||||
insert: 'Sett inn lenke',
|
||||
unlink: 'Fjern lenke',
|
||||
edit: 'Rediger',
|
||||
textToDisplay: 'Visningstekst',
|
||||
url: 'Til hvilken URL skal denne lenken peke?',
|
||||
openInNewWindow: 'Åpne i nytt vindu'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabell',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Sett inn horisontal linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Sitat',
|
||||
pre: 'Kode',
|
||||
h1: 'Overskrift 1',
|
||||
h2: 'Overskrift 2',
|
||||
h3: 'Overskrift 3',
|
||||
h4: 'Overskrift 4',
|
||||
h5: 'Overskrift 5',
|
||||
h6: 'Overskrift 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktliste',
|
||||
ordered: 'Nummerert liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjelp',
|
||||
fullscreen: 'Fullskjerm',
|
||||
codeview: 'HTML-visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Avsnitt',
|
||||
outdent: 'Tilbakerykk',
|
||||
indent: 'Innrykk',
|
||||
left: 'Venstrejustert',
|
||||
center: 'Midtstilt',
|
||||
right: 'Høyrejustert',
|
||||
justify: 'Blokkjustert'
|
||||
},
|
||||
color: {
|
||||
recent: 'Nylig valgt farge',
|
||||
more: 'Flere farger',
|
||||
background: 'Bakgrunnsfarge',
|
||||
foreground: 'Skriftfarge',
|
||||
transparent: 'Gjennomsiktig',
|
||||
setTransparent: 'Sett gjennomsiktig',
|
||||
reset: 'Nullstill',
|
||||
resetToDefault: 'Nullstill til standard'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Hurtigtaster',
|
||||
close: 'Lukk',
|
||||
textFormatting: 'Tekstformatering',
|
||||
action: 'Handling',
|
||||
paragraphFormatting: 'Avsnittsformatering',
|
||||
documentStyle: 'Dokumentstil'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Angre',
|
||||
redo: 'Gjør om'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-nl-NL.js
vendored
Normal file
155
public/js/summernote/lang/summernote-nl-NL.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'nl-NL': {
|
||||
font: {
|
||||
bold: 'Vet',
|
||||
italic: 'Cursief',
|
||||
underline: 'Onderstrepen',
|
||||
clear: 'Stijl verwijderen',
|
||||
height: 'Regelhoogte',
|
||||
name: 'Lettertype',
|
||||
strikethrough: 'Doorhalen',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Tekstgrootte'
|
||||
},
|
||||
image: {
|
||||
image: 'Afbeelding',
|
||||
insert: 'Afbeelding invoegen',
|
||||
resizeFull: 'Volledige breedte',
|
||||
resizeHalf: 'Halve breedte',
|
||||
resizeQuarter: 'Kwart breedte',
|
||||
floatLeft: 'Links uitlijnen',
|
||||
floatRight: 'Rechts uitlijnen',
|
||||
floatNone: 'Geen uitlijning',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Sleep hier een afbeelding naar toe',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Selecteer een bestand',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL van de afbeelding',
|
||||
remove: 'Verwijder afbeelding',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video link',
|
||||
insert: 'Video invoegen',
|
||||
url: 'URL van de video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion of Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Link invoegen',
|
||||
unlink: 'Link verwijderen',
|
||||
edit: 'Wijzigen',
|
||||
textToDisplay: 'Tekst van link',
|
||||
url: 'Naar welke URL moet deze link verwijzen?',
|
||||
openInNewWindow: 'Open in nieuw venster'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Rij hierboven invoegen',
|
||||
addRowBelow: 'Rij hieronder invoegen',
|
||||
addColLeft: 'Kolom links toevoegen',
|
||||
addColRight: 'Kolom rechts toevoegen',
|
||||
delRow: 'Verwijder rij',
|
||||
delCol: 'Verwijder kolom',
|
||||
delTable: 'Verwijder tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Horizontale lijn invoegen'
|
||||
},
|
||||
style: {
|
||||
style: 'Stijl',
|
||||
p: 'Normaal',
|
||||
blockquote: 'Quote',
|
||||
pre: 'Code',
|
||||
h1: 'Kop 1',
|
||||
h2: 'Kop 2',
|
||||
h3: 'Kop 3',
|
||||
h4: 'Kop 4',
|
||||
h5: 'Kop 5',
|
||||
h6: 'Kop 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Ongeordende lijst',
|
||||
ordered: 'Geordende lijst'
|
||||
},
|
||||
options: {
|
||||
help: 'Help',
|
||||
fullscreen: 'Volledig scherm',
|
||||
codeview: 'Bekijk Code'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraaf',
|
||||
outdent: 'Inspringen verkleinen',
|
||||
indent: 'Inspringen vergroten',
|
||||
left: 'Links uitlijnen',
|
||||
center: 'Centreren',
|
||||
right: 'Rechts uitlijnen',
|
||||
justify: 'Uitvullen'
|
||||
},
|
||||
color: {
|
||||
recent: 'Recente kleur',
|
||||
more: 'Meer kleuren',
|
||||
background: 'Achtergrond kleur',
|
||||
foreground: 'Tekst kleur',
|
||||
transparent: 'Transparant',
|
||||
setTransparent: 'Transparant',
|
||||
reset: 'Standaard',
|
||||
resetToDefault: 'Standaard kleur'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Toetsencombinaties',
|
||||
close: 'sluiten',
|
||||
textFormatting: 'Tekststijlen',
|
||||
action: 'Acties',
|
||||
paragraphFormatting: 'Paragraafstijlen',
|
||||
documentStyle: 'Documentstijlen',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Alinea invoegen',
|
||||
'undo': 'Laatste handeling ongedaan maken',
|
||||
'redo': 'Laatste handeling opnieuw uitvoeren',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Herstel tab',
|
||||
'bold': 'Stel stijl in als vet',
|
||||
'italic': 'Stel stijl in als cursief',
|
||||
'underline': 'Stel stijl in als onderstreept',
|
||||
'strikethrough': 'Stel stijl in als doorgestreept',
|
||||
'removeFormat': 'Verwijder stijl',
|
||||
'justifyLeft': 'Lijn links uit',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Lijn rechts uit',
|
||||
'justifyFull': 'Lijn uit op volledige breedte',
|
||||
'insertUnorderedList': 'Zet ongeordende lijstweergave aan',
|
||||
'insertOrderedList': 'Zet geordende lijstweergave aan',
|
||||
'outdent': 'Verwijder inspringing huidige alinea',
|
||||
'indent': 'Inspringen op huidige alinea',
|
||||
'formatPara': 'Wijzig formattering huidig blok in alinea(P tag)',
|
||||
'formatH1': 'Formatteer huidig blok als H1',
|
||||
'formatH2': 'Formatteer huidig blok als H2',
|
||||
'formatH3': 'Formatteer huidig blok als H3',
|
||||
'formatH4': 'Formatteer huidig blok als H4',
|
||||
'formatH5': 'Formatteer huidig blok als H5',
|
||||
'formatH6': 'Formatteer huidig blok als H6',
|
||||
'insertHorizontalRule': 'Invoegen horizontale lijn',
|
||||
'linkDialog.show': 'Toon Link Dialoogvenster'
|
||||
},
|
||||
history: {
|
||||
undo: 'Ongedaan maken',
|
||||
redo: 'Opnieuw doorvoeren'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIALE TEKENS',
|
||||
select: 'Selecteer Speciale Tekens'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-pl-PL.js
vendored
Normal file
155
public/js/summernote/lang/summernote-pl-PL.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pl-PL': {
|
||||
font: {
|
||||
bold: 'Pogrubienie',
|
||||
italic: 'Pochylenie',
|
||||
underline: 'Podkreślenie',
|
||||
clear: 'Usuń formatowanie',
|
||||
height: 'Interlinia',
|
||||
name: 'Czcionka',
|
||||
strikethrough: 'Przekreślenie',
|
||||
subscript: 'Indeks dolny',
|
||||
superscript: 'Indeks górny',
|
||||
size: 'Rozmiar'
|
||||
},
|
||||
image: {
|
||||
image: 'Grafika',
|
||||
insert: 'Wstaw grafikę',
|
||||
resizeFull: 'Zmień rozmiar na 100%',
|
||||
resizeHalf: 'Zmień rozmiar na 50%',
|
||||
resizeQuarter: 'Zmień rozmiar na 25%',
|
||||
floatLeft: 'Po lewej',
|
||||
floatRight: 'Po prawej',
|
||||
floatNone: 'Równo z tekstem',
|
||||
shapeRounded: 'Kształt: zaokrąglone',
|
||||
shapeCircle: 'Kształt: okrąg',
|
||||
shapeThumbnail: 'Kształt: miniatura',
|
||||
shapeNone: 'Kształt: brak',
|
||||
dragImageHere: 'Przeciągnij grafikę lub tekst tutaj',
|
||||
dropImage: 'Przeciągnij grafikę lub tekst',
|
||||
selectFromFiles: 'Wybierz z dysku',
|
||||
maximumFileSize: 'Limit wielkości pliku',
|
||||
maximumFileSizeError: 'Przekroczono limit wielkości pliku.',
|
||||
url: 'Adres URL grafiki',
|
||||
remove: 'Usuń grafikę',
|
||||
original: 'Oryginał'
|
||||
},
|
||||
video: {
|
||||
video: 'Wideo',
|
||||
videoLink: 'Adres wideo',
|
||||
insert: 'Wstaw wideo',
|
||||
url: 'Adres wideo',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion lub Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odnośnik',
|
||||
insert: 'Wstaw odnośnik',
|
||||
unlink: 'Usuń odnośnik',
|
||||
edit: 'Edytuj',
|
||||
textToDisplay: 'Tekst do wyświetlenia',
|
||||
url: 'Na jaki adres URL powinien przenosić ten odnośnik?',
|
||||
openInNewWindow: 'Otwórz w nowym oknie'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Dodaj wiersz powyżej',
|
||||
addRowBelow: 'Dodaj wiersz poniżej',
|
||||
addColLeft: 'Dodaj kolumnę po lewej',
|
||||
addColRight: 'Dodaj kolumnę po prawej',
|
||||
delRow: 'Usuń wiersz',
|
||||
delCol: 'Usuń kolumnę',
|
||||
delTable: 'Usuń tabelę'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Wstaw poziomą linię'
|
||||
},
|
||||
style: {
|
||||
style: 'Styl',
|
||||
p: 'pny',
|
||||
blockquote: 'Cytat',
|
||||
pre: 'Kod',
|
||||
h1: 'Nagłówek 1',
|
||||
h2: 'Nagłówek 2',
|
||||
h3: 'Nagłówek 3',
|
||||
h4: 'Nagłówek 4',
|
||||
h5: 'Nagłówek 5',
|
||||
h6: 'Nagłówek 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista wypunktowana',
|
||||
ordered: 'Lista numerowana'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoc',
|
||||
fullscreen: 'Pełny ekran',
|
||||
codeview: 'Źródło'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Akapit',
|
||||
outdent: 'Zmniejsz wcięcie',
|
||||
indent: 'Zwiększ wcięcie',
|
||||
left: 'Wyrównaj do lewej',
|
||||
center: 'Wyrównaj do środka',
|
||||
right: 'Wyrównaj do prawej',
|
||||
justify: 'Wyrównaj do lewej i prawej'
|
||||
},
|
||||
color: {
|
||||
recent: 'Ostani kolor',
|
||||
more: 'Więcej kolorów',
|
||||
background: 'Tło',
|
||||
foreground: 'Czcionka',
|
||||
transparent: 'Przeźroczysty',
|
||||
setTransparent: 'Przeźroczyste',
|
||||
reset: 'Zresetuj',
|
||||
resetToDefault: 'Domyślne'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Skróty klawiaturowe',
|
||||
close: 'Zamknij',
|
||||
textFormatting: 'Formatowanie tekstu',
|
||||
action: 'Akcja',
|
||||
paragraphFormatting: 'Formatowanie akapitu',
|
||||
documentStyle: 'Styl dokumentu',
|
||||
extraKeys: 'Dodatkowe klawisze'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Wstaw paragraf',
|
||||
'undo': 'Cofnij poprzednią operację',
|
||||
'redo': 'Przywróć poprzednią operację',
|
||||
'tab': 'Tabulacja',
|
||||
'untab': 'Usuń tabulację',
|
||||
'bold': 'Pogrubienie',
|
||||
'italic': 'Kursywa',
|
||||
'underline': 'Podkreślenie',
|
||||
'strikethrough': 'Przekreślenie',
|
||||
'removeFormat': 'Usuń formatowanie',
|
||||
'justifyLeft': 'Wyrównaj do lewej',
|
||||
'justifyCenter': 'Wyrównaj do środka',
|
||||
'justifyRight': 'Wyrównaj do prawej',
|
||||
'justifyFull': 'Justyfikacja',
|
||||
'insertUnorderedList': 'Nienumerowana lista',
|
||||
'insertOrderedList': 'Wypunktowana lista',
|
||||
'outdent': 'Zmniejsz wcięcie paragrafu',
|
||||
'indent': 'Zwiększ wcięcie paragrafu',
|
||||
'formatPara': 'Zamień format bloku na paragraf (tag P)',
|
||||
'formatH1': 'Zamień format bloku na H1',
|
||||
'formatH2': 'Zamień format bloku na H2',
|
||||
'formatH3': 'Zamień format bloku na H3',
|
||||
'formatH4': 'Zamień format bloku na H4',
|
||||
'formatH5': 'Zamień format bloku na H5',
|
||||
'formatH6': 'Zamień format bloku na H6',
|
||||
'insertHorizontalRule': 'Wstaw poziomą linię',
|
||||
'linkDialog.show': 'Pokaż dialog linkowania'
|
||||
},
|
||||
history: {
|
||||
undo: 'Cofnij',
|
||||
redo: 'Ponów'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ZNAKI SPECJALNE',
|
||||
select: 'Wybierz Znak specjalny'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
156
public/js/summernote/lang/summernote-pt-BR.js
vendored
Normal file
156
public/js/summernote/lang/summernote-pt-BR.js
vendored
Normal file
@@ -0,0 +1,156 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pt-BR': {
|
||||
font: {
|
||||
bold: 'Negrito',
|
||||
italic: 'Itálico',
|
||||
underline: 'Sublinhado',
|
||||
clear: 'Remover estilo da fonte',
|
||||
height: 'Altura da linha',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
subscript: 'Subscrito',
|
||||
superscript: 'Sobrescrito',
|
||||
size: 'Tamanho da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagem',
|
||||
insert: 'Inserir imagem',
|
||||
resizeFull: 'Redimensionar Completamente',
|
||||
resizeHalf: 'Redimensionar pela Metade',
|
||||
resizeQuarter: 'Redimensionar a um Quarto',
|
||||
floatLeft: 'Flutuar para Esquerda',
|
||||
floatRight: 'Flutuar para Direita',
|
||||
floatNone: 'Não Flutuar',
|
||||
shapeRounded: 'Forma: Arredondado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Miniatura',
|
||||
shapeNone: 'Forma: Nenhum',
|
||||
dragImageHere: 'Arraste Imagem ou Texto para cá',
|
||||
dropImage: 'Solte Imagem ou Texto',
|
||||
selectFromFiles: 'Selecione a partir dos arquivos',
|
||||
maximumFileSize: 'Tamanho máximo do arquivo',
|
||||
maximumFileSizeError: 'Tamanho máximo do arquivo excedido.',
|
||||
url: 'URL da imagem',
|
||||
remove: 'Remover Imagem',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Link para vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserir link',
|
||||
unlink: 'Remover link',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para exibir',
|
||||
url: 'Para qual URL este link leva?',
|
||||
openInNewWindow: 'Abrir em uma nova janela'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Adicionar linha acima',
|
||||
addRowBelow: 'Adicionar linha abaixo',
|
||||
addColLeft: 'Adicionar coluna à esquerda',
|
||||
addColRight: 'Adicionar coluna à direita',
|
||||
delRow: 'Excluir linha',
|
||||
delCol: 'Excluir coluna',
|
||||
delTable: 'Excluir tabela'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Linha horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Normal',
|
||||
blockquote: 'Citação',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista com marcadores',
|
||||
ordered: 'Lista numerada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajuda',
|
||||
fullscreen: 'Tela cheia',
|
||||
codeview: 'Ver código-fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menor tabulação',
|
||||
indent: 'Maior tabulação',
|
||||
left: 'Alinhar à esquerda',
|
||||
center: 'Alinhar ao centro',
|
||||
right: 'Alinha à direita',
|
||||
justify: 'Justificado'
|
||||
},
|
||||
color: {
|
||||
recent: 'Cor recente',
|
||||
more: 'Mais cores',
|
||||
background: 'Fundo',
|
||||
foreground: 'Fonte',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Fundo transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar padrão',
|
||||
cpSelect: 'Selecionar'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atalhos do teclado',
|
||||
close: 'Fechar',
|
||||
textFormatting: 'Formatação de texto',
|
||||
action: 'Ação',
|
||||
paragraphFormatting: 'Formatação de parágrafo',
|
||||
documentStyle: 'Estilo de documento',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir Parágrafo',
|
||||
'undo': 'Desfazer o último comando',
|
||||
'redo': 'Refazer o último comando',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Desfazer tab',
|
||||
'bold': 'Colocar em negrito',
|
||||
'italic': 'Colocar em itálico',
|
||||
'underline': 'Sublinhado',
|
||||
'strikethrough': 'Tachado',
|
||||
'removeFormat': 'Remover estilo',
|
||||
'justifyLeft': 'Alinhar à esquerda',
|
||||
'justifyCenter': 'Centralizar',
|
||||
'justifyRight': 'Alinhar à esquerda',
|
||||
'justifyFull': 'Justificar',
|
||||
'insertUnorderedList': 'Lista não ordenada',
|
||||
'insertOrderedList': 'Lista ordenada',
|
||||
'outdent': 'Recuar parágrafo atual',
|
||||
'indent': 'Avançar parágrafo atual',
|
||||
'formatPara': 'Alterar formato do bloco para parágrafo(tag P)',
|
||||
'formatH1': 'Alterar formato do bloco para H1',
|
||||
'formatH2': 'Alterar formato do bloco para H2',
|
||||
'formatH3': 'Alterar formato do bloco para H3',
|
||||
'formatH4': 'Alterar formato do bloco para H4',
|
||||
'formatH5': 'Alterar formato do bloco para H5',
|
||||
'formatH6': 'Alterar formato do bloco para H6',
|
||||
'insertHorizontalRule': 'Inserir Régua horizontal',
|
||||
'linkDialog.show': 'Inserir um Hiperlink'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfazer',
|
||||
redo: 'Refazer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERES ESPECIAIS',
|
||||
select: 'Selecionar Caracteres Especiais'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-pt-PT.js
vendored
Normal file
155
public/js/summernote/lang/summernote-pt-PT.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'pt-PT': {
|
||||
font: {
|
||||
bold: 'Negrito',
|
||||
italic: 'Itálico',
|
||||
underline: 'Sublinhado',
|
||||
clear: 'Remover estilo da fonte',
|
||||
height: 'Altura da linha',
|
||||
name: 'Fonte',
|
||||
strikethrough: 'Riscado',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Tamanho da fonte'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagem',
|
||||
insert: 'Inserir imagem',
|
||||
resizeFull: 'Redimensionar Completo',
|
||||
resizeHalf: 'Redimensionar Metade',
|
||||
resizeQuarter: 'Redimensionar Um Quarto',
|
||||
floatLeft: 'Float Esquerda',
|
||||
floatRight: 'Float Direita',
|
||||
floatNone: 'Sem Float',
|
||||
shapeRounded: 'Forma: Arredondado',
|
||||
shapeCircle: 'Forma: Círculo',
|
||||
shapeThumbnail: 'Forma: Minhatura',
|
||||
shapeNone: 'Forma: Nenhum',
|
||||
dragImageHere: 'Arraste uma imagem para aqui',
|
||||
dropImage: 'Arraste uma imagem ou texto',
|
||||
selectFromFiles: 'Selecione a partir dos arquivos',
|
||||
maximumFileSize: 'Tamanho máximo do fixeiro',
|
||||
maximumFileSizeError: 'Tamanho máximo do fixeiro é maior que o permitido.',
|
||||
url: 'Endereço da imagem',
|
||||
remove: 'Remover Imagem',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Vídeo',
|
||||
videoLink: 'Link para vídeo',
|
||||
insert: 'Inserir vídeo',
|
||||
url: 'URL do vídeo?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ou Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserir ligação',
|
||||
unlink: 'Remover ligação',
|
||||
edit: 'Editar',
|
||||
textToDisplay: 'Texto para exibir',
|
||||
url: 'Que endereço esta licação leva?',
|
||||
openInNewWindow: 'Abrir numa nova janela'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Adicionar linha acima',
|
||||
addRowBelow: 'Adicionar linha abaixo',
|
||||
addColLeft: 'Adicionar coluna à Esquerda',
|
||||
addColRight: 'Adicionar coluna à Esquerda',
|
||||
delRow: 'Excluir linha',
|
||||
delCol: 'Excluir coluna',
|
||||
delTable: 'Excluir tabela'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserir linha horizontal'
|
||||
},
|
||||
style: {
|
||||
style: 'Estilo',
|
||||
p: 'Parágrafo',
|
||||
blockquote: 'Citação',
|
||||
pre: 'Código',
|
||||
h1: 'Título 1',
|
||||
h2: 'Título 2',
|
||||
h3: 'Título 3',
|
||||
h4: 'Título 4',
|
||||
h5: 'Título 5',
|
||||
h6: 'Título 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Lista com marcadores',
|
||||
ordered: 'Lista numerada'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajuda',
|
||||
fullscreen: 'Janela Completa',
|
||||
codeview: 'Ver código-fonte'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Parágrafo',
|
||||
outdent: 'Menor tabulação',
|
||||
indent: 'Maior tabulação',
|
||||
left: 'Alinhar à esquerda',
|
||||
center: 'Alinhar ao centro',
|
||||
right: 'Alinha à direita',
|
||||
justify: 'Justificado'
|
||||
},
|
||||
color: {
|
||||
recent: 'Cor recente',
|
||||
more: 'Mais cores',
|
||||
background: 'Fundo',
|
||||
foreground: 'Fonte',
|
||||
transparent: 'Transparente',
|
||||
setTransparent: 'Fundo transparente',
|
||||
reset: 'Restaurar',
|
||||
resetToDefault: 'Restaurar padrão',
|
||||
cpSelect: 'Selecionar'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Atalhos do teclado',
|
||||
close: 'Fechar',
|
||||
textFormatting: 'Formatação de texto',
|
||||
action: 'Ação',
|
||||
paragraphFormatting: 'Formatação de parágrafo',
|
||||
documentStyle: 'Estilo de documento'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserir Parágrafo',
|
||||
'undo': 'Desfazer o último comando',
|
||||
'redo': 'Refazer o último comando',
|
||||
'tab': 'Maior tabulação',
|
||||
'untab': 'Menor tabulação',
|
||||
'bold': 'Colocar em negrito',
|
||||
'italic': 'Colocar em itálico',
|
||||
'underline': 'Colocar em sublinhado',
|
||||
'strikethrough': 'Colocar em riscado',
|
||||
'removeFormat': 'Limpar o estilo',
|
||||
'justifyLeft': 'Definir alinhado à esquerda',
|
||||
'justifyCenter': 'Definir alinhado ao centro',
|
||||
'justifyRight': 'Definir alinhado à direita',
|
||||
'justifyFull': 'Definir justificado',
|
||||
'insertUnorderedList': 'Alternar lista não ordenada',
|
||||
'insertOrderedList': 'Alternar lista ordenada',
|
||||
'outdent': 'Recuar parágrafo atual',
|
||||
'indent': 'Avançar parágrafo atual',
|
||||
'formatPara': 'Alterar formato do bloco para parágrafo',
|
||||
'formatH1': 'Alterar formato do bloco para Título 1',
|
||||
'formatH2': 'Alterar formato do bloco para Título 2',
|
||||
'formatH3': 'Alterar formato do bloco para Título 3',
|
||||
'formatH4': 'Alterar formato do bloco para Título 4',
|
||||
'formatH5': 'Alterar formato do bloco para Título 5',
|
||||
'formatH6': 'Alterar formato do bloco para Título 6',
|
||||
'insertHorizontalRule': 'Inserir linha horizontal',
|
||||
'linkDialog.show': 'Inserir uma ligração'
|
||||
},
|
||||
history: {
|
||||
undo: 'Desfazer',
|
||||
redo: 'Refazer'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-ro-RO.js
vendored
Normal file
155
public/js/summernote/lang/summernote-ro-RO.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ro-RO': {
|
||||
font: {
|
||||
bold: 'Îngroșat',
|
||||
italic: 'Înclinat',
|
||||
underline: 'Subliniat',
|
||||
clear: 'Înlătură formatare font',
|
||||
height: 'Înălțime rând',
|
||||
name: 'Familie de fonturi',
|
||||
strikethrough: 'Tăiat',
|
||||
subscript: 'Indice',
|
||||
superscript: 'Exponent',
|
||||
size: 'Dimensiune font'
|
||||
},
|
||||
image: {
|
||||
image: 'Imagine',
|
||||
insert: 'Inserează imagine',
|
||||
resizeFull: 'Redimensionează complet',
|
||||
resizeHalf: 'Redimensionează 1/2',
|
||||
resizeQuarter: 'Redimensionează 1/4',
|
||||
floatLeft: 'Aliniere la stânga',
|
||||
floatRight: 'Aliniere la dreapta',
|
||||
floatNone: 'Fară aliniere',
|
||||
shapeRounded: 'Formă: Rotund',
|
||||
shapeCircle: 'Formă: Cerc',
|
||||
shapeThumbnail: 'Formă: Pictogramă',
|
||||
shapeNone: 'Formă: Nici una',
|
||||
dragImageHere: 'Trage o imagine sau un text aici',
|
||||
dropImage: 'Eliberează imaginea sau textul',
|
||||
selectFromFiles: 'Alege din fişiere',
|
||||
maximumFileSize: 'Dimensiune maximă fișier',
|
||||
maximumFileSizeError: 'Dimensiune maximă fișier depășită.',
|
||||
url: 'URL imagine',
|
||||
remove: 'Șterge imagine',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Link video',
|
||||
insert: 'Inserează video',
|
||||
url: 'URL video?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion sau Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Inserează link',
|
||||
unlink: 'Înlătură link',
|
||||
edit: 'Editează',
|
||||
textToDisplay: 'Text ce va fi afişat',
|
||||
url: 'La ce adresă URL trebuie să conducă acest link?',
|
||||
openInNewWindow: 'Deschidere în fereastră nouă'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabel',
|
||||
addRowAbove: 'Adaugă rând deasupra',
|
||||
addRowBelow: 'Adaugă rând dedesubt',
|
||||
addColLeft: 'Adaugă coloană stânga',
|
||||
addColRight: 'Adaugă coloană dreapta',
|
||||
delRow: 'Șterge rând',
|
||||
delCol: 'Șterge coloană',
|
||||
delTable: 'Șterge tabel'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Inserează o linie orizontală'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Preformatat',
|
||||
h1: 'Titlu 1',
|
||||
h2: 'Titlu 2',
|
||||
h3: 'Titlu 3',
|
||||
h4: 'Titlu 4',
|
||||
h5: 'Titlu 5',
|
||||
h6: 'Titlu 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Listă neordonată',
|
||||
ordered: 'Listă ordonată'
|
||||
},
|
||||
options: {
|
||||
help: 'Ajutor',
|
||||
fullscreen: 'Măreşte',
|
||||
codeview: 'Sursă'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Creşte identarea',
|
||||
indent: 'Scade identarea',
|
||||
left: 'Aliniere la stânga',
|
||||
center: 'Aliniere centrală',
|
||||
right: 'Aliniere la dreapta',
|
||||
justify: 'Aliniere în bloc'
|
||||
},
|
||||
color: {
|
||||
recent: 'Culoare recentă',
|
||||
more: 'Mai multe culori',
|
||||
background: 'Culoarea fundalului',
|
||||
foreground: 'Culoarea textului',
|
||||
transparent: 'Transparent',
|
||||
setTransparent: 'Setează transparent',
|
||||
reset: 'Resetează',
|
||||
resetToDefault: 'Revino la iniţial'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Scurtături tastatură',
|
||||
close: 'Închide',
|
||||
textFormatting: 'Formatare text',
|
||||
action: 'Acţiuni',
|
||||
paragraphFormatting: 'Formatare paragraf',
|
||||
documentStyle: 'Stil paragraf',
|
||||
extraKeys: 'Taste extra'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Inserează paragraf',
|
||||
'undo': 'Revine la starea anterioară',
|
||||
'redo': 'Revine la starea ulterioară',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Setează stil îngroșat',
|
||||
'italic': 'Setează stil înclinat',
|
||||
'underline': 'Setează stil subliniat',
|
||||
'strikethrough': 'Setează stil tăiat',
|
||||
'removeFormat': 'Înlătură formatare',
|
||||
'justifyLeft': 'Setează aliniere stânga',
|
||||
'justifyCenter': 'Setează aliniere centru',
|
||||
'justifyRight': 'Setează aliniere dreapta',
|
||||
'justifyFull': 'Setează aliniere bloc',
|
||||
'insertUnorderedList': 'Comutare listă neordinată',
|
||||
'insertOrderedList': 'Comutare listă ordonată',
|
||||
'outdent': 'Înlătură indentare paragraf curent',
|
||||
'indent': 'Adaugă indentare paragraf curent',
|
||||
'formatPara': 'Schimbă formatarea selecției în paragraf',
|
||||
'formatH1': 'Schimbă formatarea selecției în H1',
|
||||
'formatH2': 'Schimbă formatarea selecției în H2',
|
||||
'formatH3': 'Schimbă formatarea selecției în H3',
|
||||
'formatH4': 'Schimbă formatarea selecției în H4',
|
||||
'formatH5': 'Schimbă formatarea selecției în H5',
|
||||
'formatH6': 'Schimbă formatarea selecției în H6',
|
||||
'insertHorizontalRule': 'Adaugă linie orizontală',
|
||||
'linkDialog.show': 'Inserează link'
|
||||
},
|
||||
history: {
|
||||
undo: 'Starea anterioară',
|
||||
redo: 'Starea ulterioară'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'CARACTERE SPECIALE',
|
||||
select: 'Alege caractere speciale'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-ru-RU.js
vendored
Normal file
155
public/js/summernote/lang/summernote-ru-RU.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ru-RU': {
|
||||
font: {
|
||||
bold: 'Полужирный',
|
||||
italic: 'Курсив',
|
||||
underline: 'Подчёркнутый',
|
||||
clear: 'Убрать стили шрифта',
|
||||
height: 'Высота линии',
|
||||
name: 'Шрифт',
|
||||
strikethrough: 'Зачёркнутый',
|
||||
subscript: 'Нижний индекс',
|
||||
superscript: 'Верхний индекс',
|
||||
size: 'Размер шрифта'
|
||||
},
|
||||
image: {
|
||||
image: 'Картинка',
|
||||
insert: 'Вставить картинку',
|
||||
resizeFull: 'Восстановить размер',
|
||||
resizeHalf: 'Уменьшить до 50%',
|
||||
resizeQuarter: 'Уменьшить до 25%',
|
||||
floatLeft: 'Расположить слева',
|
||||
floatRight: 'Расположить справа',
|
||||
floatNone: 'Расположение по-умолчанию',
|
||||
shapeRounded: 'Форма: Закругленная',
|
||||
shapeCircle: 'Форма: Круг',
|
||||
shapeThumbnail: 'Форма: Миниатюра',
|
||||
shapeNone: 'Форма: Нет',
|
||||
dragImageHere: 'Перетащите сюда картинку',
|
||||
dropImage: 'Перетащите картинку',
|
||||
selectFromFiles: 'Выбрать из файлов',
|
||||
maximumFileSize: 'Максимальный размер файла',
|
||||
maximumFileSizeError: 'Превышен максимальный размер файла',
|
||||
url: 'URL картинки',
|
||||
remove: 'Удалить картинку',
|
||||
original: 'Оригинал'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Ссылка на видео',
|
||||
insert: 'Вставить видео',
|
||||
url: 'URL видео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Ссылка',
|
||||
insert: 'Вставить ссылку',
|
||||
unlink: 'Убрать ссылку',
|
||||
edit: 'Редактировать',
|
||||
textToDisplay: 'Отображаемый текст',
|
||||
url: 'URL для перехода',
|
||||
openInNewWindow: 'Открывать в новом окне'
|
||||
},
|
||||
table: {
|
||||
table: 'Таблица',
|
||||
addRowAbove: 'Добавить строку выше',
|
||||
addRowBelow: 'Добавить строку ниже',
|
||||
addColLeft: 'Добавить столбец слева',
|
||||
addColRight: 'Добавить столбец справа',
|
||||
delRow: 'Удалить строку',
|
||||
delCol: 'Удалить столбец',
|
||||
delTable: 'Удалить таблицу'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Вставить горизонтальную линию'
|
||||
},
|
||||
style: {
|
||||
style: 'Стиль',
|
||||
p: 'Нормальный',
|
||||
blockquote: 'Цитата',
|
||||
pre: 'Код',
|
||||
h1: 'Заголовок 1',
|
||||
h2: 'Заголовок 2',
|
||||
h3: 'Заголовок 3',
|
||||
h4: 'Заголовок 4',
|
||||
h5: 'Заголовок 5',
|
||||
h6: 'Заголовок 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Маркированный список',
|
||||
ordered: 'Нумерованный список'
|
||||
},
|
||||
options: {
|
||||
help: 'Помощь',
|
||||
fullscreen: 'На весь экран',
|
||||
codeview: 'Исходный код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Уменьшить отступ',
|
||||
indent: 'Увеличить отступ',
|
||||
left: 'Выровнять по левому краю',
|
||||
center: 'Выровнять по центру',
|
||||
right: 'Выровнять по правому краю',
|
||||
justify: 'Растянуть по ширине'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последний цвет',
|
||||
more: 'Еще цвета',
|
||||
background: 'Цвет фона',
|
||||
foreground: 'Цвет шрифта',
|
||||
transparent: 'Прозрачный',
|
||||
setTransparent: 'Сделать прозрачным',
|
||||
reset: 'Сброс',
|
||||
resetToDefault: 'Восстановить умолчания'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Сочетания клавиш',
|
||||
close: 'Закрыть',
|
||||
textFormatting: 'Форматирование текста',
|
||||
action: 'Действие',
|
||||
paragraphFormatting: 'Форматирование параграфа',
|
||||
documentStyle: 'Стиль документа',
|
||||
extraKeys: 'Дополнительные комбинации'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Новый параграф',
|
||||
'undo': 'Отменить последнюю команду',
|
||||
'redo': 'Повторить последнюю команду',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Установить стиль "Жирный"',
|
||||
'italic': 'Установить стиль "Наклонный"',
|
||||
'underline': 'Установить стиль "Подчеркнутый"',
|
||||
'strikethrough': 'Установить стиль "Зачеркнутый"',
|
||||
'removeFormat': 'Сборсить стили',
|
||||
'justifyLeft': 'Выровнять по левому краю',
|
||||
'justifyCenter': 'Выровнять по центру',
|
||||
'justifyRight': 'Выровнять по правому краю',
|
||||
'justifyFull': 'Растянуть на всю ширину',
|
||||
'insertUnorderedList': 'Включить/отключить маркированный список',
|
||||
'insertOrderedList': 'Включить/отключить нумерованный список',
|
||||
'outdent': 'Убрать отступ в текущем параграфе',
|
||||
'indent': 'Вставить отступ в текущем параграфе',
|
||||
'formatPara': 'Форматировать текущий блок как параграф (тег P)',
|
||||
'formatH1': 'Форматировать текущий блок как H1',
|
||||
'formatH2': 'Форматировать текущий блок как H2',
|
||||
'formatH3': 'Форматировать текущий блок как H3',
|
||||
'formatH4': 'Форматировать текущий блок как H4',
|
||||
'formatH5': 'Форматировать текущий блок как H5',
|
||||
'formatH6': 'Форматировать текущий блок как H6',
|
||||
'insertHorizontalRule': 'Вставить горизонтальную черту',
|
||||
'linkDialog.show': 'Показать диалог "Ссылка"'
|
||||
},
|
||||
history: {
|
||||
undo: 'Отменить',
|
||||
redo: 'Повтор'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
153
public/js/summernote/lang/summernote-sk-SK.js
vendored
Normal file
153
public/js/summernote/lang/summernote-sk-SK.js
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sk-SK': {
|
||||
font: {
|
||||
bold: 'Tučné',
|
||||
italic: 'Kurzíva',
|
||||
underline: 'Podčiarknutie',
|
||||
clear: 'Odstrániť štýl písma',
|
||||
height: 'Výška riadku',
|
||||
strikethrough: 'Prečiarknuté',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veľkosť písma'
|
||||
},
|
||||
image: {
|
||||
image: 'Obrázok',
|
||||
insert: 'Vložiť obrázok',
|
||||
resizeFull: 'Pôvodná veľkosť',
|
||||
resizeHalf: 'Polovičná veľkosť',
|
||||
resizeQuarter: 'Štvrtinová veľkosť',
|
||||
floatLeft: 'Umiestniť doľava',
|
||||
floatRight: 'Umiestniť doprava',
|
||||
floatNone: 'Bez zarovnania',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Pretiahnuť sem obrázok',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Vybrať súbor',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL obrázku',
|
||||
remove: 'Remove Image',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Odkaz videa',
|
||||
insert: 'Vložiť video',
|
||||
url: 'URL videa?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion alebo Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Odkaz',
|
||||
insert: 'Vytvoriť odkaz',
|
||||
unlink: 'Zrušiť odkaz',
|
||||
edit: 'Upraviť',
|
||||
textToDisplay: 'Zobrazovaný text',
|
||||
url: 'Na akú URL adresu má tento odkaz viesť?',
|
||||
openInNewWindow: 'Otvoriť v novom okne'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabuľka',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vložit vodorovnú čiaru'
|
||||
},
|
||||
style: {
|
||||
style: 'Štýl',
|
||||
p: 'Normálny',
|
||||
blockquote: 'Citácia',
|
||||
pre: 'Kód',
|
||||
h1: 'Nadpis 1',
|
||||
h2: 'Nadpis 2',
|
||||
h3: 'Nadpis 3',
|
||||
h4: 'Nadpis 4',
|
||||
h5: 'Nadpis 5',
|
||||
h6: 'Nadpis 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Odrážkový zoznam',
|
||||
ordered: 'Číselný zoznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoc',
|
||||
fullscreen: 'Celá obrazovka',
|
||||
codeview: 'HTML kód'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Odsek',
|
||||
outdent: 'Zväčšiť odsadenie',
|
||||
indent: 'Zmenšiť odsadenie',
|
||||
left: 'Zarovnať doľava',
|
||||
center: 'Zarovnať na stred',
|
||||
right: 'Zarovnať doprava',
|
||||
justify: 'Zarovnať obojstranne'
|
||||
},
|
||||
color: {
|
||||
recent: 'Aktuálna farba',
|
||||
more: 'Dalšie farby',
|
||||
background: 'Farba pozadia',
|
||||
foreground: 'Farba písma',
|
||||
transparent: 'Priehľadnosť',
|
||||
setTransparent: 'Nastaviť priehľadnosť',
|
||||
reset: 'Obnoviť',
|
||||
resetToDefault: 'Obnoviť prednastavené'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Klávesové skratky',
|
||||
close: 'Zavrieť',
|
||||
textFormatting: 'Formátovanie textu',
|
||||
action: 'Akcia',
|
||||
paragraphFormatting: 'Formátovanie odseku',
|
||||
documentStyle: 'Štýl dokumentu'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Krok vzad',
|
||||
redo: 'Krok dopredu'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-sl-SI.js
vendored
Normal file
155
public/js/summernote/lang/summernote-sl-SI.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sl-SI': {
|
||||
font: {
|
||||
bold: 'Krepko',
|
||||
italic: 'Ležeče',
|
||||
underline: 'Podčrtano',
|
||||
clear: 'Počisti oblikovanje izbire',
|
||||
height: 'Razmik med vrsticami',
|
||||
name: 'Pisava',
|
||||
strikethrough: 'Prečrtano',
|
||||
subscript: 'Podpisano',
|
||||
superscript: 'Nadpisano',
|
||||
size: 'Velikost pisave'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Vstavi sliko',
|
||||
resizeFull: 'Razširi na polno velikost',
|
||||
resizeHalf: 'Razširi na polovico velikosti',
|
||||
resizeQuarter: 'Razširi na četrtino velikosti',
|
||||
floatLeft: 'Leva poravnava',
|
||||
floatRight: 'Desna poravnava',
|
||||
floatNone: 'Brez poravnave',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Sem povlecite sliko',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izberi sliko za nalaganje',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL naslov slike',
|
||||
remove: 'Odstrani sliko',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video povezava',
|
||||
insert: 'Vstavi video',
|
||||
url: 'Povezava do videa',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ali Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Povezava',
|
||||
insert: 'Vstavi povezavo',
|
||||
unlink: 'Odstrani povezavo',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Prikazano besedilo',
|
||||
url: 'Povezava',
|
||||
openInNewWindow: 'Odpri v novem oknu'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Vstavi horizontalno črto'
|
||||
},
|
||||
style: {
|
||||
style: 'Slogi',
|
||||
p: 'Navadno besedilo',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Koda',
|
||||
h1: 'Naslov 1',
|
||||
h2: 'Naslov 2',
|
||||
h3: 'Naslov 3',
|
||||
h4: 'Naslov 4',
|
||||
h5: 'Naslov 5',
|
||||
h6: 'Naslov 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Označen seznam',
|
||||
ordered: 'Oštevilčen seznam'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoč',
|
||||
fullscreen: 'Celozaslonski način',
|
||||
codeview: 'Pregled HTML kode'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Slogi odstavka',
|
||||
outdent: 'Zmanjšaj odmik',
|
||||
indent: 'Povečaj odmik',
|
||||
left: 'Leva poravnava',
|
||||
center: 'Desna poravnava',
|
||||
right: 'Sredinska poravnava',
|
||||
justify: 'Obojestranska poravnava'
|
||||
},
|
||||
color: {
|
||||
recent: 'Uporabi zadnjo barvo',
|
||||
more: 'Več barv',
|
||||
background: 'Barva ozadja',
|
||||
foreground: 'Barva besedila',
|
||||
transparent: 'Brez barve',
|
||||
setTransparent: 'Brez barve',
|
||||
reset: 'Ponastavi',
|
||||
resetToDefault: 'Ponastavi na privzeto'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Bljižnice',
|
||||
close: 'Zapri',
|
||||
textFormatting: 'Oblikovanje besedila',
|
||||
action: 'Dejanja',
|
||||
paragraphFormatting: 'Oblikovanje odstavka',
|
||||
documentStyle: 'Oblikovanje naslova',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Razveljavi',
|
||||
redo: 'Uveljavi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-sr-RS-Latin.js
vendored
Normal file
155
public/js/summernote/lang/summernote-sr-RS-Latin.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sr-RS': {
|
||||
font: {
|
||||
bold: 'Podebljano',
|
||||
italic: 'Kurziv',
|
||||
underline: 'Podvučeno',
|
||||
clear: 'Ukloni stilove fonta',
|
||||
height: 'Visina linije',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Precrtano',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Veličina fonta'
|
||||
},
|
||||
image: {
|
||||
image: 'Slika',
|
||||
insert: 'Umetni sliku',
|
||||
resizeFull: 'Puna veličina',
|
||||
resizeHalf: 'Umanji na 50%',
|
||||
resizeQuarter: 'Umanji na 25%',
|
||||
floatLeft: 'Uz levu ivicu',
|
||||
floatRight: 'Uz desnu ivicu',
|
||||
floatNone: 'Bez ravnanja',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Prevuci sliku ovde',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Izaberi iz datoteke',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Adresa slike',
|
||||
remove: 'Ukloni sliku',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Veza ka videu',
|
||||
insert: 'Umetni video',
|
||||
url: 'URL video',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion ili Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Veza',
|
||||
insert: 'Umetni vezu',
|
||||
unlink: 'Ukloni vezu',
|
||||
edit: 'Uredi',
|
||||
textToDisplay: 'Tekst za prikaz',
|
||||
url: 'Internet adresa',
|
||||
openInNewWindow: 'Otvori u novom prozoru'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabela',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Umetni horizontalnu liniju'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'pni',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kod',
|
||||
h1: 'Zaglavlje 1',
|
||||
h2: 'Zaglavlje 2',
|
||||
h3: 'Zaglavlje 3',
|
||||
h4: 'Zaglavlje 4',
|
||||
h5: 'Zaglavlje 5',
|
||||
h6: 'Zaglavlje 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Obična lista',
|
||||
ordered: 'Numerisana lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Pomoć',
|
||||
fullscreen: 'Preko celog ekrana',
|
||||
codeview: 'Izvorni kod'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Smanji uvlačenje',
|
||||
indent: 'Povečaj uvlačenje',
|
||||
left: 'Poravnaj u levo',
|
||||
center: 'Centrirano',
|
||||
right: 'Poravnaj u desno',
|
||||
justify: 'Poravnaj obostrano'
|
||||
},
|
||||
color: {
|
||||
recent: 'Poslednja boja',
|
||||
more: 'Više boja',
|
||||
background: 'Boja pozadine',
|
||||
foreground: 'Boja teksta',
|
||||
transparent: 'Providna',
|
||||
setTransparent: 'Providna',
|
||||
reset: 'Opoziv',
|
||||
resetToDefault: 'Podrazumevana'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Prečice sa tastature',
|
||||
close: 'Zatvori',
|
||||
textFormatting: 'Formatiranje teksta',
|
||||
action: 'Akcija',
|
||||
paragraphFormatting: 'Formatiranje paragrafa',
|
||||
documentStyle: 'Stil dokumenta',
|
||||
extraKeys: 'Dodatne kombinacije'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Poništi',
|
||||
redo: 'Ponovi'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-sr-RS.js
vendored
Normal file
155
public/js/summernote/lang/summernote-sr-RS.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sr-RS': {
|
||||
font: {
|
||||
bold: 'Подебљано',
|
||||
italic: 'Курзив',
|
||||
underline: 'Подвучено',
|
||||
clear: 'Уклони стилове фонта',
|
||||
height: 'Висина линије',
|
||||
name: 'Font Family',
|
||||
strikethrough: 'Прецртано',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Величина фонта'
|
||||
},
|
||||
image: {
|
||||
image: 'Слика',
|
||||
insert: 'Уметни слику',
|
||||
resizeFull: 'Пуна величина',
|
||||
resizeHalf: 'Умањи на 50%',
|
||||
resizeQuarter: 'Умањи на 25%',
|
||||
floatLeft: 'Уз леву ивицу',
|
||||
floatRight: 'Уз десну ивицу',
|
||||
floatNone: 'Без равнања',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Превуци слику овде',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Изабери из датотеке',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Адреса слике',
|
||||
remove: 'Уклони слику',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Веза ка видеу',
|
||||
insert: 'Уметни видео',
|
||||
url: 'URL видео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Веза',
|
||||
insert: 'Уметни везу',
|
||||
unlink: 'Уклони везу',
|
||||
edit: 'Уреди',
|
||||
textToDisplay: 'Текст за приказ',
|
||||
url: 'Интернет адреса',
|
||||
openInNewWindow: 'Отвори у новом прозору'
|
||||
},
|
||||
table: {
|
||||
table: 'Табела',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Уметни хоризонталну линију'
|
||||
},
|
||||
style: {
|
||||
style: 'Стил',
|
||||
p: 'Нормални',
|
||||
blockquote: 'Цитат',
|
||||
pre: 'Код',
|
||||
h1: 'Заглавље 1',
|
||||
h2: 'Заглавље 2',
|
||||
h3: 'Заглавље 3',
|
||||
h4: 'Заглавље 4',
|
||||
h5: 'Заглавље 5',
|
||||
h6: 'Заглавље 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Обична листа',
|
||||
ordered: 'Нумерисана листа'
|
||||
},
|
||||
options: {
|
||||
help: 'Помоћ',
|
||||
fullscreen: 'Преко целог екрана',
|
||||
codeview: 'Изворни код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Смањи увлачење',
|
||||
indent: 'Повечај увлачење',
|
||||
left: 'Поравнај у лево',
|
||||
center: 'Центрирано',
|
||||
right: 'Поравнај у десно',
|
||||
justify: 'Поравнај обострано'
|
||||
},
|
||||
color: {
|
||||
recent: 'Последња боја',
|
||||
more: 'Више боја',
|
||||
background: 'Боја позадине',
|
||||
foreground: 'Боја текста',
|
||||
transparent: 'Провидна',
|
||||
setTransparent: 'Провидна',
|
||||
reset: 'Опозив',
|
||||
resetToDefault: 'Подразумевана'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Пречице са тастатуре',
|
||||
close: 'Затвори',
|
||||
textFormatting: 'Форматирање текста',
|
||||
action: 'Акција',
|
||||
paragraphFormatting: 'Форматирање параграфа',
|
||||
documentStyle: 'Стил документа',
|
||||
extraKeys: 'Додатне комбинације'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Поништи',
|
||||
redo: 'Понови'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-sv-SE.js
vendored
Normal file
155
public/js/summernote/lang/summernote-sv-SE.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'sv-SE': {
|
||||
font: {
|
||||
bold: 'Fet',
|
||||
italic: 'Kursiv',
|
||||
underline: 'Understruken',
|
||||
clear: 'Radera formatering',
|
||||
height: 'Radavstånd',
|
||||
name: 'Teckensnitt',
|
||||
strikethrough: 'Genomstruken',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Teckenstorlek'
|
||||
},
|
||||
image: {
|
||||
image: 'Bild',
|
||||
insert: 'Infoga bild',
|
||||
resizeFull: 'Full storlek',
|
||||
resizeHalf: 'Halv storlek',
|
||||
resizeQuarter: 'En fjärdedel i storlek',
|
||||
floatLeft: 'Vänsterjusterad',
|
||||
floatRight: 'Högerjusterad',
|
||||
floatNone: 'Ingen justering',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Dra en bild hit',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Välj från filer',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'Länk till bild',
|
||||
remove: 'Ta bort bild',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Filmklipp',
|
||||
videoLink: 'Länk till filmklipp',
|
||||
insert: 'Infoga filmklipp',
|
||||
url: 'Länk till filmklipp',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion eller Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Länk',
|
||||
insert: 'Infoga länk',
|
||||
unlink: 'Ta bort länk',
|
||||
edit: 'Redigera',
|
||||
textToDisplay: 'Visningstext',
|
||||
url: 'Till vilken URL ska denna länk peka?',
|
||||
openInNewWindow: 'Öppna i ett nytt fönster'
|
||||
},
|
||||
table: {
|
||||
table: 'Tabell',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Infoga horisontell linje'
|
||||
},
|
||||
style: {
|
||||
style: 'Stil',
|
||||
p: 'p',
|
||||
blockquote: 'Citat',
|
||||
pre: 'Kod',
|
||||
h1: 'Rubrik 1',
|
||||
h2: 'Rubrik 2',
|
||||
h3: 'Rubrik 3',
|
||||
h4: 'Rubrik 4',
|
||||
h5: 'Rubrik 5',
|
||||
h6: 'Rubrik 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Punktlista',
|
||||
ordered: 'Numrerad lista'
|
||||
},
|
||||
options: {
|
||||
help: 'Hjälp',
|
||||
fullscreen: 'Fullskärm',
|
||||
codeview: 'HTML-visning'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Justera text',
|
||||
outdent: 'Minska indrag',
|
||||
indent: 'Öka indrag',
|
||||
left: 'Vänsterjusterad',
|
||||
center: 'Centrerad',
|
||||
right: 'Högerjusterad',
|
||||
justify: 'Justera text'
|
||||
},
|
||||
color: {
|
||||
recent: 'Senast använda färg',
|
||||
more: 'Fler färger',
|
||||
background: 'Bakgrundsfärg',
|
||||
foreground: 'Teckenfärg',
|
||||
transparent: 'Genomskinlig',
|
||||
setTransparent: 'Gör genomskinlig',
|
||||
reset: 'Nollställ',
|
||||
resetToDefault: 'Återställ till standard'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Kortkommandon',
|
||||
close: 'Stäng',
|
||||
textFormatting: 'Textformatering',
|
||||
action: 'Funktion',
|
||||
paragraphFormatting: 'Avsnittsformatering',
|
||||
documentStyle: 'Dokumentstil',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Ångra',
|
||||
redo: 'Gör om'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-ta-IN.js
vendored
Normal file
155
public/js/summernote/lang/summernote-ta-IN.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'ta-IN': {
|
||||
font: {
|
||||
bold: 'தடித்த',
|
||||
italic: 'சாய்வு',
|
||||
underline: 'அடிக்கோடு',
|
||||
clear: 'நீக்கு',
|
||||
height: 'வரி உயரம்',
|
||||
name: 'எழுத்துரு பெயர்',
|
||||
strikethrough: 'குறுக்குக் கோடு',
|
||||
size: 'எழுத்துரு அளவு',
|
||||
superscript: 'மேல் ஒட்டு',
|
||||
subscript: 'கீழ் ஒட்டு'
|
||||
},
|
||||
image: {
|
||||
image: 'படம்',
|
||||
insert: 'படத்தை செருகு',
|
||||
resizeFull: 'முழு அளவை',
|
||||
resizeHalf: 'அரை அளவை',
|
||||
resizeQuarter: 'கால் அளவை',
|
||||
floatLeft: 'இடப்பக்கமாக வை',
|
||||
floatRight: 'வலப்பக்கமாக வை',
|
||||
floatNone: 'இயல்புநிலையில் வை',
|
||||
shapeRounded: 'வட்டமான வடிவம்',
|
||||
shapeCircle: 'வட்ட வடிவம்',
|
||||
shapeThumbnail: 'சிறு வடிவம்',
|
||||
shapeNone: 'வடிவத்தை நீக்கு',
|
||||
dragImageHere: 'படத்தை இங்கே இழுத்துவை',
|
||||
dropImage: 'படத்தை விடு',
|
||||
selectFromFiles: 'கோப்புகளை தேர்வு செய்',
|
||||
maximumFileSize: 'அதிகபட்ச கோப்பு அளவு',
|
||||
maximumFileSizeError: 'கோப்பு அதிகபட்ச அளவை மீறிவிட்டது',
|
||||
url: 'இணையதள முகவரி',
|
||||
remove: 'படத்தை நீக்கு',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'காணொளி',
|
||||
videoLink: 'காணொளி இணைப்பு',
|
||||
insert: 'காணொளியை செருகு',
|
||||
url: 'இணையதள முகவரி',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion or Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'இணைப்பு',
|
||||
insert: 'இணைப்பை செருகு',
|
||||
unlink: 'இணைப்பை நீக்கு',
|
||||
edit: 'இணைப்பை தொகு',
|
||||
textToDisplay: 'காட்சி வாசகம்',
|
||||
url: 'இணையதள முகவரி',
|
||||
openInNewWindow: 'புதிய சாளரத்தில் திறக்க'
|
||||
},
|
||||
table: {
|
||||
table: 'அட்டவணை',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'கிடைமட்ட கோடு'
|
||||
},
|
||||
style: {
|
||||
style: 'தொகுப்பு',
|
||||
p: 'பத்தி',
|
||||
blockquote: 'மேற்கோள்',
|
||||
pre: 'குறியீடு',
|
||||
h1: 'தலைப்பு 1',
|
||||
h2: 'தலைப்பு 2',
|
||||
h3: 'தலைப்பு 3',
|
||||
h4: 'தலைப்பு 4',
|
||||
h5: 'தலைப்பு 5',
|
||||
h6: 'தலைப்பு 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'வரிசையிடாத',
|
||||
ordered: 'வரிசையிட்ட'
|
||||
},
|
||||
options: {
|
||||
help: 'உதவி',
|
||||
fullscreen: 'முழுத்திரை',
|
||||
codeview: 'நிரலாக்க காட்சி'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'பத்தி',
|
||||
outdent: 'வெளித்தள்ளு',
|
||||
indent: 'உள்ளே தள்ளு',
|
||||
left: 'இடது சீரமைப்பு',
|
||||
center: 'நடு சீரமைப்பு',
|
||||
right: 'வலது சீரமைப்பு',
|
||||
justify: 'இருபுற சீரமைப்பு'
|
||||
},
|
||||
color: {
|
||||
recent: 'அண்மை நிறம்',
|
||||
more: 'மேலும்',
|
||||
background: 'பின்புல நிறம்',
|
||||
foreground: 'முன்புற நிறம்',
|
||||
transparent: 'தெளிமையான',
|
||||
setTransparent: 'தெளிமையாக்கு',
|
||||
reset: 'மீட்டமைக்க',
|
||||
resetToDefault: 'இயல்புநிலைக்கு மீட்டமை'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'குறுக்குவழி',
|
||||
close: 'மூடு',
|
||||
textFormatting: 'எழுத்து வடிவமைப்பு',
|
||||
action: 'செயல்படுத்து',
|
||||
paragraphFormatting: 'பத்தி வடிவமைப்பு',
|
||||
documentStyle: 'ஆவண பாணி',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'மீளமை',
|
||||
redo: 'மீண்டும்'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-th-TH.js
vendored
Normal file
155
public/js/summernote/lang/summernote-th-TH.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'th-TH': {
|
||||
font: {
|
||||
bold: 'ตัวหนา',
|
||||
italic: 'ตัวเอียง',
|
||||
underline: 'ขีดเส้นใต้',
|
||||
clear: 'ล้างรูปแบบตัวอักษร',
|
||||
height: 'ความสูงบรรทัด',
|
||||
name: 'แบบตัวอักษร',
|
||||
strikethrough: 'ขีดฆ่า',
|
||||
subscript: 'ตัวห้อย',
|
||||
superscript: 'ตัวยก',
|
||||
size: 'ขนาดตัวอักษร'
|
||||
},
|
||||
image: {
|
||||
image: 'รูปภาพ',
|
||||
insert: 'แทรกรูปภาพ',
|
||||
resizeFull: 'ปรับขนาดเท่าจริง',
|
||||
resizeHalf: 'ปรับขนาดลง 50%',
|
||||
resizeQuarter: 'ปรับขนาดลง 25%',
|
||||
floatLeft: 'ชิดซ้าย',
|
||||
floatRight: 'ชิดขวา',
|
||||
floatNone: 'ไม่จัดตำแหน่ง',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'ลากรูปภาพที่ต้องการไว้ที่นี่',
|
||||
dropImage: 'วางรูปภาพหรือข้อความ',
|
||||
selectFromFiles: 'เลือกไฟล์รูปภาพ',
|
||||
maximumFileSize: 'ขนาดไฟล์ใหญ่สุด',
|
||||
maximumFileSizeError: 'ไฟล์เกินขนาดที่กำหนด',
|
||||
url: 'ที่อยู่ URL ของรูปภาพ',
|
||||
remove: 'ลบรูปภาพ',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'วีดีโอ',
|
||||
videoLink: 'ลิงก์ของวีดีโอ',
|
||||
insert: 'แทรกวีดีโอ',
|
||||
url: 'ที่อยู่ URL ของวีดีโอ',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion หรือ Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'ตัวเชื่อมโยง',
|
||||
insert: 'แทรกตัวเชื่อมโยง',
|
||||
unlink: 'ยกเลิกตัวเชื่อมโยง',
|
||||
edit: 'แก้ไข',
|
||||
textToDisplay: 'ข้อความที่ให้แสดง',
|
||||
url: 'ที่อยู่เว็บไซต์ที่ต้องการให้เชื่อมโยงไปถึง?',
|
||||
openInNewWindow: 'เปิดในหน้าต่างใหม่'
|
||||
},
|
||||
table: {
|
||||
table: 'ตาราง',
|
||||
addRowAbove: 'เพิ่มแถวด้านบน',
|
||||
addRowBelow: 'เพิ่มแถวด้านล่าง',
|
||||
addColLeft: 'เพิ่มคอลัมน์ด้านซ้าย',
|
||||
addColRight: 'เพิ่มคอลัมน์ด้านขวา',
|
||||
delRow: 'ลบแถว',
|
||||
delCol: 'ลบคอลัมน์',
|
||||
delTable: 'ลบตาราง'
|
||||
},
|
||||
hr: {
|
||||
insert: 'แทรกเส้นคั่น'
|
||||
},
|
||||
style: {
|
||||
style: 'รูปแบบ',
|
||||
p: 'ปกติ',
|
||||
blockquote: 'ข้อความ',
|
||||
pre: 'โค้ด',
|
||||
h1: 'หัวข้อ 1',
|
||||
h2: 'หัวข้อ 2',
|
||||
h3: 'หัวข้อ 3',
|
||||
h4: 'หัวข้อ 4',
|
||||
h5: 'หัวข้อ 5',
|
||||
h6: 'หัวข้อ 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'รายการแบบไม่มีลำดับ',
|
||||
ordered: 'รายการแบบมีลำดับ'
|
||||
},
|
||||
options: {
|
||||
help: 'ช่วยเหลือ',
|
||||
fullscreen: 'ขยายเต็มหน้าจอ',
|
||||
codeview: 'ซอร์สโค้ด'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'ย่อหน้า',
|
||||
outdent: 'เยื้องซ้าย',
|
||||
indent: 'เยื้องขวา',
|
||||
left: 'จัดหน้าชิดซ้าย',
|
||||
center: 'จัดหน้ากึ่งกลาง',
|
||||
right: 'จัดหน้าชิดขวา',
|
||||
justify: 'จัดบรรทัดเสมอกัน'
|
||||
},
|
||||
color: {
|
||||
recent: 'สีที่ใช้ล่าสุด',
|
||||
more: 'สีอื่นๆ',
|
||||
background: 'สีพื้นหลัง',
|
||||
foreground: 'สีพื้นหน้า',
|
||||
transparent: 'โปร่งแสง',
|
||||
setTransparent: 'ตั้งค่าความโปร่งแสง',
|
||||
reset: 'คืนค่า',
|
||||
resetToDefault: 'คืนค่ามาตรฐาน'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'แป้นลัด',
|
||||
close: 'ปิด',
|
||||
textFormatting: 'การจัดรูปแบบข้อความ',
|
||||
action: 'การกระทำ',
|
||||
paragraphFormatting: 'การจัดรูปแบบย่อหน้า',
|
||||
documentStyle: 'รูปแบบของเอกสาร',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'ทำตัวหนา',
|
||||
'italic': 'ทำตัวเอียง',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H1',
|
||||
'formatH2': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H2',
|
||||
'formatH3': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H3',
|
||||
'formatH4': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H4',
|
||||
'formatH5': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H5',
|
||||
'formatH6': 'เปลี่ยนรูปแบบบล็อคปัจจุบันเป็น H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'เปิดหน้าแก้ไข Link'
|
||||
},
|
||||
history: {
|
||||
undo: 'ยกเลิกการกระทำ',
|
||||
redo: 'ทำซ้ำการกระทำ'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-tr-TR.js
vendored
Normal file
155
public/js/summernote/lang/summernote-tr-TR.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'tr-TR': {
|
||||
font: {
|
||||
bold: 'Kalın',
|
||||
italic: 'İtalik',
|
||||
underline: 'Altı çizili',
|
||||
clear: 'Temizle',
|
||||
height: 'Satır yüksekliği',
|
||||
name: 'Yazı Tipi',
|
||||
strikethrough: 'Üstü çizili',
|
||||
subscript: 'Alt Simge',
|
||||
superscript: 'Üst Simge',
|
||||
size: 'Yazı tipi boyutu'
|
||||
},
|
||||
image: {
|
||||
image: 'Resim',
|
||||
insert: 'Resim ekle',
|
||||
resizeFull: 'Orjinal boyut',
|
||||
resizeHalf: '1/2 boyut',
|
||||
resizeQuarter: '1/4 boyut',
|
||||
floatLeft: 'Sola hizala',
|
||||
floatRight: 'Sağa hizala',
|
||||
floatNone: 'Hizalamayı kaldır',
|
||||
shapeRounded: 'Şekil: Yuvarlatılmış Köşe',
|
||||
shapeCircle: 'Şekil: Daire',
|
||||
shapeThumbnail: 'Şekil: K.Resim',
|
||||
shapeNone: 'Şekil: Yok',
|
||||
dragImageHere: 'Buraya sürükleyin',
|
||||
dropImage: 'Resim veya metni bırakın',
|
||||
selectFromFiles: 'Dosya seçin',
|
||||
maximumFileSize: 'Maksimum dosya boyutu',
|
||||
maximumFileSizeError: 'Maksimum dosya boyutu aşıldı.',
|
||||
url: 'Resim bağlantısı',
|
||||
remove: 'Resimi Kaldır',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Video bağlantısı',
|
||||
insert: 'Video ekle',
|
||||
url: 'Video bağlantısı?',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion veya Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Bağlantı',
|
||||
insert: 'Bağlantı ekle',
|
||||
unlink: 'Bağlantıyı kaldır',
|
||||
edit: 'Bağlantıyı düzenle',
|
||||
textToDisplay: 'Görüntülemek için',
|
||||
url: 'Bağlantı adresi?',
|
||||
openInNewWindow: 'Yeni pencerede aç'
|
||||
},
|
||||
table: {
|
||||
table: 'Tablo',
|
||||
addRowAbove: 'Yukarı satır ekle',
|
||||
addRowBelow: 'Aşağı satır ekle',
|
||||
addColLeft: 'Sola sütun ekle',
|
||||
addColRight: 'Sağa sütun ekle',
|
||||
delRow: 'Satırı sil',
|
||||
delCol: 'Sütunu sil',
|
||||
delTable: 'Tabloyu sil'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Yatay çizgi ekle'
|
||||
},
|
||||
style: {
|
||||
style: 'Biçim',
|
||||
p: 'p',
|
||||
blockquote: 'Alıntı',
|
||||
pre: 'Önbiçimli',
|
||||
h1: 'Başlık 1',
|
||||
h2: 'Başlık 2',
|
||||
h3: 'Başlık 3',
|
||||
h4: 'Başlık 4',
|
||||
h5: 'Başlık 5',
|
||||
h6: 'Başlık 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Madde işaretli liste',
|
||||
ordered: 'Numaralı liste'
|
||||
},
|
||||
options: {
|
||||
help: 'Yardım',
|
||||
fullscreen: 'Tam ekran',
|
||||
codeview: 'HTML Kodu'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Paragraf',
|
||||
outdent: 'Girintiyi artır',
|
||||
indent: 'Girintiyi azalt',
|
||||
left: 'Sola hizala',
|
||||
center: 'Ortaya hizala',
|
||||
right: 'Sağa hizala',
|
||||
justify: 'Yasla'
|
||||
},
|
||||
color: {
|
||||
recent: 'Son renk',
|
||||
more: 'Daha fazla renk',
|
||||
background: 'Arka plan rengi',
|
||||
foreground: 'Yazı rengi',
|
||||
transparent: 'Seffaflık',
|
||||
setTransparent: 'Şeffaflığı ayarla',
|
||||
reset: 'Sıfırla',
|
||||
resetToDefault: 'Varsayılanlara sıfırla'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Kısayollar',
|
||||
close: 'Kapat',
|
||||
textFormatting: 'Yazı biçimlendirme',
|
||||
action: 'Eylem',
|
||||
paragraphFormatting: 'Paragraf biçimlendirme',
|
||||
documentStyle: 'Biçim',
|
||||
extraKeys: 'İlave anahtarlar'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Paragraf ekler',
|
||||
'undo': 'Son komudu geri alır',
|
||||
'redo': 'Son komudu yineler',
|
||||
'tab': 'Girintiyi artırır',
|
||||
'untab': 'Girintiyi azaltır',
|
||||
'bold': 'Kalın yazma stilini ayarlar',
|
||||
'italic': 'İtalik yazma stilini ayarlar',
|
||||
'underline': 'Altı çizgili yazma stilini ayarlar',
|
||||
'strikethrough': 'Üstü çizgili yazma stilini ayarlar',
|
||||
'removeFormat': 'Biçimlendirmeyi temizler',
|
||||
'justifyLeft': 'Yazıyı sola hizalar',
|
||||
'justifyCenter': 'Yazıyı ortalar',
|
||||
'justifyRight': 'Yazıyı sağa hizalar',
|
||||
'justifyFull': 'Yazıyı her iki tarafa yazlar',
|
||||
'insertUnorderedList': 'Madde işaretli liste ekler',
|
||||
'insertOrderedList': 'Numaralı liste ekler',
|
||||
'outdent': 'Aktif paragrafın girintisini azaltır',
|
||||
'indent': 'Aktif paragrafın girintisini artırır',
|
||||
'formatPara': 'Aktif bloğun biçimini paragraf (p) olarak değiştirir',
|
||||
'formatH1': 'Aktif bloğun biçimini başlık 1 (h1) olarak değiştirir',
|
||||
'formatH2': 'Aktif bloğun biçimini başlık 2 (h2) olarak değiştirir',
|
||||
'formatH3': 'Aktif bloğun biçimini başlık 3 (h3) olarak değiştirir',
|
||||
'formatH4': 'Aktif bloğun biçimini başlık 4 (h4) olarak değiştirir',
|
||||
'formatH5': 'Aktif bloğun biçimini başlık 5 (h5) olarak değiştirir',
|
||||
'formatH6': 'Aktif bloğun biçimini başlık 6 (h6) olarak değiştirir',
|
||||
'insertHorizontalRule': 'Yatay çizgi ekler',
|
||||
'linkDialog.show': 'Bağlantı ayar kutusunu gösterir'
|
||||
},
|
||||
history: {
|
||||
undo: 'Geri al',
|
||||
redo: 'Yinele'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'ÖZEL KARAKTERLER',
|
||||
select: 'Özel Karakterleri seçin'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-uk-UA.js
vendored
Normal file
155
public/js/summernote/lang/summernote-uk-UA.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'uk-UA': {
|
||||
font: {
|
||||
bold: 'Напівжирний',
|
||||
italic: 'Курсив',
|
||||
underline: 'Підкреслений',
|
||||
clear: 'Прибрати стилі шрифту',
|
||||
height: 'Висота лінії',
|
||||
name: 'Шрифт',
|
||||
strikethrough: 'Закреслений',
|
||||
subscript: 'Нижній індекс',
|
||||
superscript: 'Верхній індекс',
|
||||
size: 'Розмір шрифту'
|
||||
},
|
||||
image: {
|
||||
image: 'Картинка',
|
||||
insert: 'Вставити картинку',
|
||||
resizeFull: 'Відновити розмір',
|
||||
resizeHalf: 'Зменшити до 50%',
|
||||
resizeQuarter: 'Зменшити до 25%',
|
||||
floatLeft: 'Розташувати ліворуч',
|
||||
floatRight: 'Розташувати праворуч',
|
||||
floatNone: 'Початкове розташування',
|
||||
shapeRounded: 'Форма: Заокруглена',
|
||||
shapeCircle: 'Форма: Коло',
|
||||
shapeThumbnail: 'Форма: Мініатюра',
|
||||
shapeNone: 'Форма: Немає',
|
||||
dragImageHere: 'Перетягніть сюди картинку',
|
||||
dropImage: 'Перетягніть картинку',
|
||||
selectFromFiles: 'Вибрати з файлів',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL картинки',
|
||||
remove: 'Видалити картинку',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Відео',
|
||||
videoLink: 'Посилання на відео',
|
||||
insert: 'Вставити відео',
|
||||
url: 'URL відео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion чи Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Посилання',
|
||||
insert: 'Вставити посилання',
|
||||
unlink: 'Прибрати посилання',
|
||||
edit: 'Редагувати',
|
||||
textToDisplay: 'Текст, що відображається',
|
||||
url: 'URL для переходу',
|
||||
openInNewWindow: 'Відкривати у новому вікні'
|
||||
},
|
||||
table: {
|
||||
table: 'Таблиця',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Вставити горизонтальну лінію'
|
||||
},
|
||||
style: {
|
||||
style: 'Стиль',
|
||||
p: 'Нормальний',
|
||||
blockquote: 'Цитата',
|
||||
pre: 'Код',
|
||||
h1: 'Заголовок 1',
|
||||
h2: 'Заголовок 2',
|
||||
h3: 'Заголовок 3',
|
||||
h4: 'Заголовок 4',
|
||||
h5: 'Заголовок 5',
|
||||
h6: 'Заголовок 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Маркований список',
|
||||
ordered: 'Нумерований список'
|
||||
},
|
||||
options: {
|
||||
help: 'Допомога',
|
||||
fullscreen: 'На весь екран',
|
||||
codeview: 'Початковий код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Зменшити відступ',
|
||||
indent: 'Збільшити відступ',
|
||||
left: 'Вирівняти по лівому краю',
|
||||
center: 'Вирівняти по центру',
|
||||
right: 'Вирівняти по правому краю',
|
||||
justify: 'Розтягнути по ширині'
|
||||
},
|
||||
color: {
|
||||
recent: 'Останній колір',
|
||||
more: 'Ще кольори',
|
||||
background: 'Колір фону',
|
||||
foreground: 'Колір шрифту',
|
||||
transparent: 'Прозорий',
|
||||
setTransparent: 'Зробити прозорим',
|
||||
reset: 'Відновити',
|
||||
resetToDefault: 'Відновити початкові'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Комбінації клавіш',
|
||||
close: 'Закрити',
|
||||
textFormatting: 'Форматування тексту',
|
||||
action: 'Дія',
|
||||
paragraphFormatting: 'Форматування параграфу',
|
||||
documentStyle: 'Стиль документу',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Відмінити',
|
||||
redo: 'Повторити'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
112
public/js/summernote/lang/summernote-uz-UZ.js
vendored
Normal file
112
public/js/summernote/lang/summernote-uz-UZ.js
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'uz-UZ': {
|
||||
font: {
|
||||
bold: 'қалин',
|
||||
italic: 'Курсив',
|
||||
underline: 'Белгиланган',
|
||||
clear: 'Ҳарф турларини олиб ташлаш',
|
||||
height: 'Чизиқ баландлиги',
|
||||
name: 'Ҳарф',
|
||||
strikethrough: 'Ўчирилган',
|
||||
subscript: 'Пастки индекс',
|
||||
superscript: 'Юқори индекс',
|
||||
size: 'ҳарф ҳажми'
|
||||
},
|
||||
image: {
|
||||
image: 'Расм',
|
||||
insert: 'расмни қўйиш',
|
||||
resizeFull: 'Ҳажмни тиклаш',
|
||||
resizeHalf: '50% гача кичрайтириш',
|
||||
resizeQuarter: '25% гача кичрайтириш',
|
||||
floatLeft: 'Чапда жойлаштириш',
|
||||
floatRight: 'Ўнгда жойлаштириш',
|
||||
floatNone: 'Стандарт бўйича жойлашув',
|
||||
shapeRounded: 'Шакли: Юмалоқ',
|
||||
shapeCircle: 'Шакли: Доира',
|
||||
shapeThumbnail: 'Шакли: Миниатюра',
|
||||
shapeNone: 'Шакли: Йўқ',
|
||||
dragImageHere: 'Суратни кўчириб ўтинг',
|
||||
dropImage: 'Суратни кўчириб ўтинг',
|
||||
selectFromFiles: 'Файллардан бирини танлаш',
|
||||
url: 'суратлар URL и',
|
||||
remove: 'Суратни ўчириш'
|
||||
},
|
||||
video: {
|
||||
video: 'Видео',
|
||||
videoLink: 'Видеога ҳавола',
|
||||
insert: 'Видео',
|
||||
url: 'URL видео',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Ҳавола',
|
||||
insert: 'Ҳаволани қўйиш',
|
||||
unlink: 'Ҳаволани олиб ташлаш',
|
||||
edit: 'Таҳрир қилиш',
|
||||
textToDisplay: 'Кўринадиган матн',
|
||||
url: 'URL ўтиш учун',
|
||||
openInNewWindow: 'Янги дарчада очиш'
|
||||
},
|
||||
table: {
|
||||
table: 'Жадвал'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Горизонтал чизиқни қўйиш'
|
||||
},
|
||||
style: {
|
||||
style: 'Услуб',
|
||||
p: 'Яхши',
|
||||
blockquote: 'Жумла',
|
||||
pre: 'Код',
|
||||
h1: 'Сарлавҳа 1',
|
||||
h2: 'Сарлавҳа 2',
|
||||
h3: 'Сарлавҳа 3',
|
||||
h4: 'Сарлавҳа 4',
|
||||
h5: 'Сарлавҳа 5',
|
||||
h6: 'Сарлавҳа 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Белгиланган рўйҳат',
|
||||
ordered: 'Рақамланган рўйҳат'
|
||||
},
|
||||
options: {
|
||||
help: 'Ёрдам',
|
||||
fullscreen: 'Бутун экран бўйича',
|
||||
codeview: 'Бошланғич код'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Параграф',
|
||||
outdent: 'Орқага қайтишни камайтириш',
|
||||
indent: 'Орқага қайтишни кўпайтириш',
|
||||
left: 'Чап қирғоққа тўғрилаш',
|
||||
center: 'Марказга тўғрилаш',
|
||||
right: 'Ўнг қирғоққа тўғрилаш',
|
||||
justify: 'Эни бўйлаб чўзиш'
|
||||
},
|
||||
color: {
|
||||
recent: 'Охирги ранг',
|
||||
more: 'Яна ранглар',
|
||||
background: 'Фон ранги',
|
||||
foreground: 'Ҳарф ранги',
|
||||
transparent: 'Шаффоф',
|
||||
setTransparent: 'Шаффофдай қилиш',
|
||||
reset: 'Бекор қилиш',
|
||||
resetToDefault: 'Стандартга оид тиклаш'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Клавишларнинг ҳамохҳанглиги',
|
||||
close: 'Ёпиқ',
|
||||
textFormatting: 'Матнни ',
|
||||
action: 'Ҳаркат',
|
||||
paragraphFormatting: 'Параграфни форматлаш',
|
||||
documentStyle: 'Ҳужжатнинг тури',
|
||||
extraKeys: 'Қўшимча имкониятлар'
|
||||
},
|
||||
history: {
|
||||
undo: 'Бекор қилиш',
|
||||
redo: 'Қайтариш'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-vi-VN.js
vendored
Normal file
155
public/js/summernote/lang/summernote-vi-VN.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'vi-VN': {
|
||||
font: {
|
||||
bold: 'In Đậm',
|
||||
italic: 'In Nghiêng',
|
||||
underline: 'Gạch dưới',
|
||||
clear: 'Bỏ định dạng',
|
||||
height: 'Chiều cao dòng',
|
||||
name: 'Phông chữ',
|
||||
strikethrough: 'Gạch ngang',
|
||||
subscript: 'Subscript',
|
||||
superscript: 'Superscript',
|
||||
size: 'Cỡ chữ'
|
||||
},
|
||||
image: {
|
||||
image: 'Hình ảnh',
|
||||
insert: 'Chèn',
|
||||
resizeFull: '100%',
|
||||
resizeHalf: '50%',
|
||||
resizeQuarter: '25%',
|
||||
floatLeft: 'Trôi về trái',
|
||||
floatRight: 'Trôi về phải',
|
||||
floatNone: 'Không trôi',
|
||||
shapeRounded: 'Shape: Rounded',
|
||||
shapeCircle: 'Shape: Circle',
|
||||
shapeThumbnail: 'Shape: Thumbnail',
|
||||
shapeNone: 'Shape: None',
|
||||
dragImageHere: 'Thả Ảnh ở vùng này',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: 'Chọn từ File',
|
||||
maximumFileSize: 'Maximum file size',
|
||||
maximumFileSizeError: 'Maximum file size exceeded.',
|
||||
url: 'URL',
|
||||
remove: 'Xóa',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: 'Video',
|
||||
videoLink: 'Link đến Video',
|
||||
insert: 'Chèn Video',
|
||||
url: 'URL',
|
||||
providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion và Youku)'
|
||||
},
|
||||
link: {
|
||||
link: 'Link',
|
||||
insert: 'Chèn Link',
|
||||
unlink: 'Gỡ Link',
|
||||
edit: 'Sửa',
|
||||
textToDisplay: 'Văn bản hiển thị',
|
||||
url: 'URL',
|
||||
openInNewWindow: 'Mở ở Cửa sổ mới'
|
||||
},
|
||||
table: {
|
||||
table: 'Bảng',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: 'Chèn'
|
||||
},
|
||||
style: {
|
||||
style: 'Kiểu chữ',
|
||||
p: 'Chữ thường',
|
||||
blockquote: 'Đoạn trích',
|
||||
pre: 'Mã Code',
|
||||
h1: 'H1',
|
||||
h2: 'H2',
|
||||
h3: 'H3',
|
||||
h4: 'H4',
|
||||
h5: 'H5',
|
||||
h6: 'H6'
|
||||
},
|
||||
lists: {
|
||||
unordered: 'Liệt kê danh sách',
|
||||
ordered: 'Liệt kê theo thứ tự'
|
||||
},
|
||||
options: {
|
||||
help: 'Trợ giúp',
|
||||
fullscreen: 'Toàn Màn hình',
|
||||
codeview: 'Xem Code'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: 'Canh lề',
|
||||
outdent: 'Dịch sang trái',
|
||||
indent: 'Dịch sang phải',
|
||||
left: 'Canh trái',
|
||||
center: 'Canh giữa',
|
||||
right: 'Canh phải',
|
||||
justify: 'Canh đều'
|
||||
},
|
||||
color: {
|
||||
recent: 'Màu chữ',
|
||||
more: 'Mở rộng',
|
||||
background: 'Màu nền',
|
||||
foreground: 'Màu chữ',
|
||||
transparent: 'trong suốt',
|
||||
setTransparent: 'Nền trong suốt',
|
||||
reset: 'Thiết lập lại',
|
||||
resetToDefault: 'Trở lại ban đầu'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: 'Phím tắt',
|
||||
close: 'Đóng',
|
||||
textFormatting: 'Định dạng Văn bản',
|
||||
action: 'Hành động',
|
||||
paragraphFormatting: 'Định dạng',
|
||||
documentStyle: 'Kiểu văn bản',
|
||||
extraKeys: 'Extra keys'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: 'Lùi lại',
|
||||
redo: 'Làm lại'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-zh-CN.js
vendored
Normal file
155
public/js/summernote/lang/summernote-zh-CN.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'zh-CN': {
|
||||
font: {
|
||||
bold: '粗体',
|
||||
italic: '斜体',
|
||||
underline: '下划线',
|
||||
clear: '清除格式',
|
||||
height: '行高',
|
||||
name: '字体',
|
||||
strikethrough: '删除线',
|
||||
subscript: '下标',
|
||||
superscript: '上标',
|
||||
size: '字号'
|
||||
},
|
||||
image: {
|
||||
image: '图片',
|
||||
insert: '插入图片',
|
||||
resizeFull: '缩放至 100%',
|
||||
resizeHalf: '缩放至 50%',
|
||||
resizeQuarter: '缩放至 25%',
|
||||
floatLeft: '靠左浮动',
|
||||
floatRight: '靠右浮动',
|
||||
floatNone: '取消浮动',
|
||||
shapeRounded: '形状: 圆角',
|
||||
shapeCircle: '形状: 圆',
|
||||
shapeThumbnail: '形状: 缩略图',
|
||||
shapeNone: '形状: 无',
|
||||
dragImageHere: '将图片拖拽至此处',
|
||||
dropImage: '拖拽图片或文本',
|
||||
selectFromFiles: '从本地上传',
|
||||
maximumFileSize: '文件大小最大值',
|
||||
maximumFileSizeError: '文件大小超出最大值。',
|
||||
url: '图片地址',
|
||||
remove: '移除图片',
|
||||
original: '原始图片'
|
||||
},
|
||||
video: {
|
||||
video: '视频',
|
||||
videoLink: '视频链接',
|
||||
insert: '插入视频',
|
||||
url: '视频地址',
|
||||
providers: '(优酷, 腾讯, Instagram, DailyMotion, Youtube等)'
|
||||
},
|
||||
link: {
|
||||
link: '链接',
|
||||
insert: '插入链接',
|
||||
unlink: '去除链接',
|
||||
edit: '编辑链接',
|
||||
textToDisplay: '显示文本',
|
||||
url: '链接地址',
|
||||
openInNewWindow: '在新窗口打开'
|
||||
},
|
||||
table: {
|
||||
table: '表格',
|
||||
addRowAbove: '在上方插入行',
|
||||
addRowBelow: '在下方插入行',
|
||||
addColLeft: '在左侧插入列',
|
||||
addColRight: '在右侧插入列',
|
||||
delRow: '删除行',
|
||||
delCol: '删除列',
|
||||
delTable: '删除表格'
|
||||
},
|
||||
hr: {
|
||||
insert: '水平线'
|
||||
},
|
||||
style: {
|
||||
style: '样式',
|
||||
p: '普通',
|
||||
blockquote: '引用',
|
||||
pre: '代码',
|
||||
h1: '标题 1',
|
||||
h2: '标题 2',
|
||||
h3: '标题 3',
|
||||
h4: '标题 4',
|
||||
h5: '标题 5',
|
||||
h6: '标题 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '无序列表',
|
||||
ordered: '有序列表'
|
||||
},
|
||||
options: {
|
||||
help: '帮助',
|
||||
fullscreen: '全屏',
|
||||
codeview: '源代码'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '段落',
|
||||
outdent: '减少缩进',
|
||||
indent: '增加缩进',
|
||||
left: '左对齐',
|
||||
center: '居中对齐',
|
||||
right: '右对齐',
|
||||
justify: '两端对齐'
|
||||
},
|
||||
color: {
|
||||
recent: '最近使用',
|
||||
more: '更多',
|
||||
background: '背景',
|
||||
foreground: '前景',
|
||||
transparent: '透明',
|
||||
setTransparent: '透明',
|
||||
reset: '重置',
|
||||
resetToDefault: '默认'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: '快捷键',
|
||||
close: '关闭',
|
||||
textFormatting: '文本格式',
|
||||
action: '动作',
|
||||
paragraphFormatting: '段落格式',
|
||||
documentStyle: '文档样式',
|
||||
extraKeys: '额外按键'
|
||||
},
|
||||
help: {
|
||||
insertParagraph: '插入段落',
|
||||
undo: '撤销',
|
||||
redo: '重做',
|
||||
tab: '增加缩进',
|
||||
untab: '减少缩进',
|
||||
bold: '粗体',
|
||||
italic: '斜体',
|
||||
underline: '下划线',
|
||||
strikethrough: '删除线',
|
||||
removeFormat: '清除格式',
|
||||
justifyLeft: '左对齐',
|
||||
justifyCenter: '居中对齐',
|
||||
justifyRight: '右对齐',
|
||||
justifyFull: '两端对齐',
|
||||
insertUnorderedList: '无序列表',
|
||||
insertOrderedList: '有序列表',
|
||||
outdent: '减少缩进',
|
||||
indent: '增加缩进',
|
||||
formatPara: '设置选中内容样式为 普通',
|
||||
formatH1: '设置选中内容样式为 标题1',
|
||||
formatH2: '设置选中内容样式为 标题2',
|
||||
formatH3: '设置选中内容样式为 标题3',
|
||||
formatH4: '设置选中内容样式为 标题4',
|
||||
formatH5: '设置选中内容样式为 标题5',
|
||||
formatH6: '设置选中内容样式为 标题6',
|
||||
insertHorizontalRule: '插入水平线',
|
||||
'linkDialog.show': '显示链接对话框'
|
||||
},
|
||||
history: {
|
||||
undo: '撤销',
|
||||
redo: '重做'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: '特殊字符',
|
||||
select: '选取特殊字符'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
155
public/js/summernote/lang/summernote-zh-TW.js
vendored
Normal file
155
public/js/summernote/lang/summernote-zh-TW.js
vendored
Normal file
@@ -0,0 +1,155 @@
|
||||
(function($) {
|
||||
$.extend($.summernote.lang, {
|
||||
'zh-TW': {
|
||||
font: {
|
||||
bold: '粗體',
|
||||
italic: '斜體',
|
||||
underline: '底線',
|
||||
clear: '清除格式',
|
||||
height: '行高',
|
||||
name: '字體',
|
||||
strikethrough: '刪除線',
|
||||
subscript: '下標',
|
||||
superscript: '上標',
|
||||
size: '字號'
|
||||
},
|
||||
image: {
|
||||
image: '圖片',
|
||||
insert: '插入圖片',
|
||||
resizeFull: '縮放至100%',
|
||||
resizeHalf: '縮放至 50%',
|
||||
resizeQuarter: '縮放至 25%',
|
||||
floatLeft: '靠左浮動',
|
||||
floatRight: '靠右浮動',
|
||||
floatNone: '取消浮動',
|
||||
shapeRounded: '形狀: 圓角',
|
||||
shapeCircle: '形狀: 圓',
|
||||
shapeThumbnail: '形狀: 縮略圖',
|
||||
shapeNone: '形狀: 無',
|
||||
dragImageHere: '將圖片拖曳至此處',
|
||||
dropImage: 'Drop image or Text',
|
||||
selectFromFiles: '從本機上傳',
|
||||
maximumFileSize: '文件大小最大值',
|
||||
maximumFileSizeError: '文件大小超出最大值。',
|
||||
url: '圖片網址',
|
||||
remove: '移除圖片',
|
||||
original: 'Original'
|
||||
},
|
||||
video: {
|
||||
video: '影片',
|
||||
videoLink: '影片連結',
|
||||
insert: '插入影片',
|
||||
url: '影片網址',
|
||||
providers: '(優酷, Instagram, DailyMotion, Youtube等)'
|
||||
},
|
||||
link: {
|
||||
link: '連結',
|
||||
insert: '插入連結',
|
||||
unlink: '取消連結',
|
||||
edit: '編輯連結',
|
||||
textToDisplay: '顯示文字',
|
||||
url: '連結網址',
|
||||
openInNewWindow: '在新視窗開啟'
|
||||
},
|
||||
table: {
|
||||
table: '表格',
|
||||
addRowAbove: 'Add row above',
|
||||
addRowBelow: 'Add row below',
|
||||
addColLeft: 'Add column left',
|
||||
addColRight: 'Add column right',
|
||||
delRow: 'Delete row',
|
||||
delCol: 'Delete column',
|
||||
delTable: 'Delete table'
|
||||
},
|
||||
hr: {
|
||||
insert: '水平線'
|
||||
},
|
||||
style: {
|
||||
style: '樣式',
|
||||
p: '一般',
|
||||
blockquote: '引用區塊',
|
||||
pre: '程式碼區塊',
|
||||
h1: '標題 1',
|
||||
h2: '標題 2',
|
||||
h3: '標題 3',
|
||||
h4: '標題 4',
|
||||
h5: '標題 5',
|
||||
h6: '標題 6'
|
||||
},
|
||||
lists: {
|
||||
unordered: '項目清單',
|
||||
ordered: '編號清單'
|
||||
},
|
||||
options: {
|
||||
help: '幫助',
|
||||
fullscreen: '全螢幕',
|
||||
codeview: '原始碼'
|
||||
},
|
||||
paragraph: {
|
||||
paragraph: '段落',
|
||||
outdent: '取消縮排',
|
||||
indent: '增加縮排',
|
||||
left: '靠右對齊',
|
||||
center: '靠中對齊',
|
||||
right: '靠右對齊',
|
||||
justify: '左右對齊'
|
||||
},
|
||||
color: {
|
||||
recent: '字型顏色',
|
||||
more: '更多',
|
||||
background: '背景',
|
||||
foreground: '前景',
|
||||
transparent: '透明',
|
||||
setTransparent: '透明',
|
||||
reset: '重設',
|
||||
resetToDefault: '默認'
|
||||
},
|
||||
shortcut: {
|
||||
shortcuts: '快捷鍵',
|
||||
close: '關閉',
|
||||
textFormatting: '文字格式',
|
||||
action: '動作',
|
||||
paragraphFormatting: '段落格式',
|
||||
documentStyle: '文件格式',
|
||||
extraKeys: '額外按鍵'
|
||||
},
|
||||
help: {
|
||||
'insertParagraph': 'Insert Paragraph',
|
||||
'undo': 'Undoes the last command',
|
||||
'redo': 'Redoes the last command',
|
||||
'tab': 'Tab',
|
||||
'untab': 'Untab',
|
||||
'bold': 'Set a bold style',
|
||||
'italic': 'Set a italic style',
|
||||
'underline': 'Set a underline style',
|
||||
'strikethrough': 'Set a strikethrough style',
|
||||
'removeFormat': 'Clean a style',
|
||||
'justifyLeft': 'Set left align',
|
||||
'justifyCenter': 'Set center align',
|
||||
'justifyRight': 'Set right align',
|
||||
'justifyFull': 'Set full align',
|
||||
'insertUnorderedList': 'Toggle unordered list',
|
||||
'insertOrderedList': 'Toggle ordered list',
|
||||
'outdent': 'Outdent on current paragraph',
|
||||
'indent': 'Indent on current paragraph',
|
||||
'formatPara': 'Change current block\'s format as a paragraph(P tag)',
|
||||
'formatH1': 'Change current block\'s format as H1',
|
||||
'formatH2': 'Change current block\'s format as H2',
|
||||
'formatH3': 'Change current block\'s format as H3',
|
||||
'formatH4': 'Change current block\'s format as H4',
|
||||
'formatH5': 'Change current block\'s format as H5',
|
||||
'formatH6': 'Change current block\'s format as H6',
|
||||
'insertHorizontalRule': 'Insert horizontal rule',
|
||||
'linkDialog.show': 'Show Link Dialog'
|
||||
},
|
||||
history: {
|
||||
undo: '復原',
|
||||
redo: '取消復原'
|
||||
},
|
||||
specialChar: {
|
||||
specialChar: 'SPECIAL CHARACTERS',
|
||||
select: 'Select Special characters'
|
||||
}
|
||||
}
|
||||
});
|
||||
})(jQuery);
|
||||
16
public/js/summernote/plugin/databasic/summernote-ext-databasic.css
vendored
Normal file
16
public/js/summernote/plugin/databasic/summernote-ext-databasic.css
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
.ext-databasic {
|
||||
position: relative;
|
||||
display: block;
|
||||
min-height: 50px;
|
||||
background-color: cyan;
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
border: 1px solid white;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.ext-databasic p {
|
||||
color: white;
|
||||
font-size: 1.2em;
|
||||
margin: 0;
|
||||
}
|
||||
292
public/js/summernote/plugin/databasic/summernote-ext-databasic.js
vendored
Normal file
292
public/js/summernote/plugin/databasic/summernote-ext-databasic.js
vendored
Normal file
@@ -0,0 +1,292 @@
|
||||
(function(factory) {
|
||||
/* global define */
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof module === 'object' && module.exports) {
|
||||
// Node/CommonJS
|
||||
module.exports = factory(require('jquery'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory(window.jQuery);
|
||||
}
|
||||
}(function($) {
|
||||
// pull in some summernote core functions
|
||||
var ui = $.summernote.ui;
|
||||
var dom = $.summernote.dom;
|
||||
|
||||
// define the popover plugin
|
||||
var DataBasicPlugin = function(context) {
|
||||
var self = this;
|
||||
var options = context.options;
|
||||
var lang = options.langInfo;
|
||||
|
||||
self.icon = '<i class="fa fa-object-group"/>';
|
||||
|
||||
// add context menu button for dialog
|
||||
context.memo('button.databasic', function() {
|
||||
return ui.button({
|
||||
contents: self.icon,
|
||||
tooltip: lang.databasic.insert,
|
||||
click: context.createInvokeHandler('databasic.showDialog')
|
||||
}).render();
|
||||
});
|
||||
|
||||
// add popover edit button
|
||||
context.memo('button.databasicDialog', function() {
|
||||
return ui.button({
|
||||
contents: self.icon,
|
||||
tooltip: lang.databasic.edit,
|
||||
click: context.createInvokeHandler('databasic.showDialog')
|
||||
}).render();
|
||||
});
|
||||
|
||||
// add popover size buttons
|
||||
context.memo('button.databasicSize100', function() {
|
||||
return ui.button({
|
||||
contents: '<span class="note-fontsize-10">100%</span>',
|
||||
tooltip: lang.image.resizeFull,
|
||||
click: context.createInvokeHandler('editor.resize', '1')
|
||||
}).render();
|
||||
});
|
||||
context.memo('button.databasicSize50', function() {
|
||||
return ui.button({
|
||||
contents: '<span class="note-fontsize-10">50%</span>',
|
||||
tooltip: lang.image.resizeHalf,
|
||||
click: context.createInvokeHandler('editor.resize', '0.5')
|
||||
}).render();
|
||||
});
|
||||
context.memo('button.databasicSize25', function() {
|
||||
return ui.button({
|
||||
contents: '<span class="note-fontsize-10">25%</span>',
|
||||
tooltip: lang.image.resizeQuarter,
|
||||
click: context.createInvokeHandler('editor.resize', '0.25')
|
||||
}).render();
|
||||
});
|
||||
|
||||
self.events = {
|
||||
'summernote.init': function(we, e) {
|
||||
// update existing containers
|
||||
$('data.ext-databasic', e.editable).each(function() { self.setContent($(this)); });
|
||||
// TODO: make this an undo snapshot...
|
||||
},
|
||||
'summernote.keyup summernote.mouseup summernote.change summernote.scroll': function() {
|
||||
self.update();
|
||||
},
|
||||
'summernote.dialog.shown': function() {
|
||||
self.hidePopover();
|
||||
}
|
||||
};
|
||||
|
||||
self.initialize = function() {
|
||||
// create dialog markup
|
||||
var $container = options.dialogsInBody ? $(document.body) : context.layoutInfo.editor;
|
||||
|
||||
var body = '<div class="form-group row-fluid">' +
|
||||
'<label>' + lang.databasic.testLabel + '</label>' +
|
||||
'<input class="ext-databasic-test form-control" type="text" />' +
|
||||
'</div>';
|
||||
var footer = '<button href="#" class="btn btn-primary ext-databasic-save">' + lang.databasic.insert + '</button>';
|
||||
|
||||
self.$dialog = ui.dialog({
|
||||
title: lang.databasic.name,
|
||||
fade: options.dialogsFade,
|
||||
body: body,
|
||||
footer: footer
|
||||
}).render().appendTo($container);
|
||||
|
||||
// create popover
|
||||
self.$popover = ui.popover({
|
||||
className: 'ext-databasic-popover'
|
||||
}).render().appendTo('body');
|
||||
var $content = self.$popover.find('.popover-content');
|
||||
|
||||
context.invoke('buttons.build', $content, options.popover.databasic);
|
||||
};
|
||||
|
||||
self.destroy = function() {
|
||||
self.$popover.remove();
|
||||
self.$popover = null;
|
||||
self.$dialog.remove();
|
||||
self.$dialog = null;
|
||||
};
|
||||
|
||||
self.update = function() {
|
||||
// Prevent focusing on editable when invoke('code') is executed
|
||||
if (!context.invoke('editor.hasFocus')) {
|
||||
self.hidePopover();
|
||||
return;
|
||||
}
|
||||
|
||||
var rng = context.invoke('editor.createRange');
|
||||
var visible = false;
|
||||
|
||||
if (rng.isOnData()) {
|
||||
var $data = $(rng.sc).closest('data.ext-databasic');
|
||||
|
||||
if ($data.length) {
|
||||
var pos = dom.posFromPlaceholder($data[0]);
|
||||
|
||||
self.$popover.css({
|
||||
display: 'block',
|
||||
left: pos.left,
|
||||
top: pos.top
|
||||
});
|
||||
|
||||
// save editor target to let size buttons resize the container
|
||||
context.invoke('editor.saveTarget', $data[0]);
|
||||
|
||||
visible = true;
|
||||
}
|
||||
}
|
||||
|
||||
// hide if not visible
|
||||
if (!visible) {
|
||||
self.hidePopover();
|
||||
}
|
||||
};
|
||||
|
||||
self.hidePopover = function() {
|
||||
self.$popover.hide();
|
||||
};
|
||||
|
||||
// define plugin dialog
|
||||
self.getInfo = function() {
|
||||
var rng = context.invoke('editor.createRange');
|
||||
|
||||
if (rng.isOnData()) {
|
||||
var $data = $(rng.sc).closest('data.ext-databasic');
|
||||
|
||||
if ($data.length) {
|
||||
// Get the first node on range(for edit).
|
||||
return {
|
||||
node: $data,
|
||||
test: $data.attr('data-test')
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return {};
|
||||
};
|
||||
|
||||
self.setContent = function($node) {
|
||||
$node.html('<p contenteditable="false">' + self.icon + ' ' + lang.databasic.name + ': ' +
|
||||
$node.attr('data-test') + '</p>');
|
||||
};
|
||||
|
||||
self.updateNode = function(info) {
|
||||
self.setContent(info.node
|
||||
.attr('data-test', info.test));
|
||||
};
|
||||
|
||||
self.createNode = function(info) {
|
||||
var $node = $('<data class="ext-databasic"></data>');
|
||||
|
||||
if ($node) {
|
||||
// save node to info structure
|
||||
info.node = $node;
|
||||
// insert node into editor dom
|
||||
context.invoke('editor.insertNode', $node[0]);
|
||||
}
|
||||
|
||||
return $node;
|
||||
};
|
||||
|
||||
self.showDialog = function() {
|
||||
var info = self.getInfo();
|
||||
var newNode = !info.node;
|
||||
context.invoke('editor.saveRange');
|
||||
|
||||
self
|
||||
.openDialog(info)
|
||||
.then(function(dialogInfo) {
|
||||
// [workaround] hide dialog before restore range for IE range focus
|
||||
ui.hideDialog(self.$dialog);
|
||||
context.invoke('editor.restoreRange');
|
||||
|
||||
// insert a new node
|
||||
if (newNode) {
|
||||
self.createNode(info);
|
||||
}
|
||||
|
||||
// update info with dialog info
|
||||
$.extend(info, dialogInfo);
|
||||
|
||||
self.updateNode(info);
|
||||
})
|
||||
.fail(function() {
|
||||
context.invoke('editor.restoreRange');
|
||||
});
|
||||
};
|
||||
|
||||
self.openDialog = function(info) {
|
||||
return $.Deferred(function(deferred) {
|
||||
var $inpTest = self.$dialog.find('.ext-databasic-test');
|
||||
var $saveBtn = self.$dialog.find('.ext-databasic-save');
|
||||
var onKeyup = function(event) {
|
||||
if (event.keyCode === 13) {
|
||||
$saveBtn.trigger('click');
|
||||
}
|
||||
};
|
||||
|
||||
ui.onDialogShown(self.$dialog, function() {
|
||||
context.triggerEvent('dialog.shown');
|
||||
|
||||
$inpTest.val(info.test).on('input', function() {
|
||||
ui.toggleBtn($saveBtn, $inpTest.val());
|
||||
}).trigger('focus').on('keyup', onKeyup);
|
||||
|
||||
$saveBtn
|
||||
.text(info.node ? lang.databasic.edit : lang.databasic.insert)
|
||||
.click(function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
deferred.resolve({ test: $inpTest.val() });
|
||||
});
|
||||
|
||||
// init save button
|
||||
ui.toggleBtn($saveBtn, $inpTest.val());
|
||||
});
|
||||
|
||||
ui.onDialogHidden(self.$dialog, function() {
|
||||
$inpTest.off('input keyup');
|
||||
$saveBtn.off('click');
|
||||
|
||||
if (deferred.state() === 'pending') {
|
||||
deferred.reject();
|
||||
}
|
||||
});
|
||||
|
||||
ui.showDialog(self.$dialog);
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
// Extends summernote
|
||||
$.extend(true, $.summernote, {
|
||||
plugins: {
|
||||
databasic: DataBasicPlugin
|
||||
},
|
||||
|
||||
options: {
|
||||
popover: {
|
||||
databasic: [
|
||||
['databasic', ['databasicDialog', 'databasicSize100', 'databasicSize50', 'databasicSize25']]
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
// add localization texts
|
||||
lang: {
|
||||
'en-US': {
|
||||
databasic: {
|
||||
name: 'Basic Data Container',
|
||||
insert: 'insert basic data container',
|
||||
edit: 'edit basic data container',
|
||||
testLabel: 'test input'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
}));
|
||||
81
public/js/summernote/plugin/hello/summernote-ext-hello.js
vendored
Normal file
81
public/js/summernote/plugin/hello/summernote-ext-hello.js
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
(function(factory) {
|
||||
/* global define */
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof module === 'object' && module.exports) {
|
||||
// Node/CommonJS
|
||||
module.exports = factory(require('jquery'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory(window.jQuery);
|
||||
}
|
||||
}(function($) {
|
||||
// Extends plugins for adding hello.
|
||||
// - plugin is external module for customizing.
|
||||
$.extend($.summernote.plugins, {
|
||||
/**
|
||||
* @param {Object} context - context object has status of editor.
|
||||
*/
|
||||
'hello': function(context) {
|
||||
var self = this;
|
||||
|
||||
// ui has renders to build ui elements.
|
||||
// - you can create a button with `ui.button`
|
||||
var ui = $.summernote.ui;
|
||||
|
||||
// add hello button
|
||||
context.memo('button.hello', function() {
|
||||
// create button
|
||||
var button = ui.button({
|
||||
contents: '<i class="fa fa-child"/> Hello',
|
||||
tooltip: 'hello',
|
||||
click: function() {
|
||||
self.$panel.show();
|
||||
self.$panel.hide(500);
|
||||
// invoke insertText method with 'hello' on editor module.
|
||||
context.invoke('editor.insertText', 'hello');
|
||||
}
|
||||
});
|
||||
|
||||
// create jQuery object from button instance.
|
||||
var $hello = button.render();
|
||||
return $hello;
|
||||
});
|
||||
|
||||
// This events will be attached when editor is initialized.
|
||||
this.events = {
|
||||
// This will be called after modules are initialized.
|
||||
'summernote.init': function(we, e) {
|
||||
console.log('summernote initialized', we, e);
|
||||
},
|
||||
// This will be called when user releases a key on editable.
|
||||
'summernote.keyup': function(we, e) {
|
||||
console.log('summernote keyup', we, e);
|
||||
}
|
||||
};
|
||||
|
||||
// This method will be called when editor is initialized by $('..').summernote();
|
||||
// You can create elements for plugin
|
||||
this.initialize = function() {
|
||||
this.$panel = $('<div class="hello-panel"/>').css({
|
||||
position: 'absolute',
|
||||
width: 100,
|
||||
height: 100,
|
||||
left: '50%',
|
||||
top: '50%',
|
||||
background: 'red'
|
||||
}).hide();
|
||||
|
||||
this.$panel.appendTo('body');
|
||||
};
|
||||
|
||||
// This methods will be called when editor is destroyed by $('..').summernote('destroy');
|
||||
// You should remove elements on `initialize`.
|
||||
this.destroy = function() {
|
||||
this.$panel.remove();
|
||||
this.$panel = null;
|
||||
};
|
||||
}
|
||||
});
|
||||
}));
|
||||
312
public/js/summernote/plugin/specialchars/summernote-ext-specialchars.js
vendored
Normal file
312
public/js/summernote/plugin/specialchars/summernote-ext-specialchars.js
vendored
Normal file
@@ -0,0 +1,312 @@
|
||||
(function(factory) {
|
||||
/* global define */
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof module === 'object' && module.exports) {
|
||||
// Node/CommonJS
|
||||
module.exports = factory(require('jquery'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory(window.jQuery);
|
||||
}
|
||||
}(function($) {
|
||||
$.extend($.summernote.plugins, {
|
||||
'specialchars': function(context) {
|
||||
var self = this;
|
||||
var ui = $.summernote.ui;
|
||||
|
||||
var $editor = context.layoutInfo.editor;
|
||||
var options = context.options;
|
||||
var lang = options.langInfo;
|
||||
|
||||
var KEY = {
|
||||
UP: 38,
|
||||
DOWN: 40,
|
||||
LEFT: 37,
|
||||
RIGHT: 39,
|
||||
ENTER: 13
|
||||
};
|
||||
var COLUMN_LENGTH = 15;
|
||||
var COLUMN_WIDTH = 35;
|
||||
|
||||
var currentColumn = 0;
|
||||
var currentRow = 0;
|
||||
var totalColumn = 0;
|
||||
var totalRow = 0;
|
||||
|
||||
// special characters data set
|
||||
var specialCharDataSet = [
|
||||
'"', '&', '<', '>', '¡', '¢',
|
||||
'£', '¤', '¥', '¦', '§',
|
||||
'¨', '©', 'ª', '«', '¬',
|
||||
'®', '¯', '°', '±', '²',
|
||||
'³', '´', 'µ', '¶', '·',
|
||||
'¸', '¹', 'º', '»', '¼',
|
||||
'½', '¾', '¿', '×', '÷',
|
||||
'ƒ', 'ˆ', '˜', '–', '—',
|
||||
'‘', '’', '‚', '“', '”',
|
||||
'„', '†', '‡', '•', '…',
|
||||
'‰', '′', '″', '‹', '›',
|
||||
'‾', '⁄', '€', 'ℑ', '℘',
|
||||
'ℜ', '™', 'ℵ', '←', '↑',
|
||||
'→', '↓', '↔', '↵', '⇐',
|
||||
'⇑', '⇒', '⇓', '⇔', '∀',
|
||||
'∂', '∃', '∅', '∇', '∈',
|
||||
'∉', '∋', '∏', '∑', '−',
|
||||
'∗', '√', '∝', '∞', '∠',
|
||||
'∧', '∨', '∩', '∪', '∫',
|
||||
'∴', '∼', '≅', '≈', '≠',
|
||||
'≡', '≤', '≥', '⊂', '⊃',
|
||||
'⊄', '⊆', '⊇', '⊕', '⊗',
|
||||
'⊥', '⋅', '⌈', '⌉', '⌊',
|
||||
'⌋', '◊', '♠', '♣', '♥',
|
||||
'♦'
|
||||
];
|
||||
|
||||
context.memo('button.specialchars', function() {
|
||||
return ui.button({
|
||||
contents: '<i class="fa fa-font fa-flip-vertical">',
|
||||
tooltip: lang.specialChar.specialChar,
|
||||
click: function() {
|
||||
self.show();
|
||||
}
|
||||
}).render();
|
||||
});
|
||||
|
||||
/**
|
||||
* Make Special Characters Table
|
||||
*
|
||||
* @member plugin.specialChar
|
||||
* @private
|
||||
* @return {jQuery}
|
||||
*/
|
||||
this.makeSpecialCharSetTable = function() {
|
||||
var $table = $('<table/>');
|
||||
$.each(specialCharDataSet, function(idx, text) {
|
||||
var $td = $('<td/>').addClass('note-specialchar-node');
|
||||
var $tr = (idx % COLUMN_LENGTH === 0) ? $('<tr/>') : $table.find('tr').last();
|
||||
|
||||
var $button = ui.button({
|
||||
callback: function($node) {
|
||||
$node.html(text);
|
||||
$node.attr('title', text);
|
||||
$node.attr('data-value', encodeURIComponent(text));
|
||||
$node.css({
|
||||
width: COLUMN_WIDTH,
|
||||
'margin-right': '2px',
|
||||
'margin-bottom': '2px'
|
||||
});
|
||||
}
|
||||
}).render();
|
||||
|
||||
$td.append($button);
|
||||
|
||||
$tr.append($td);
|
||||
if (idx % COLUMN_LENGTH === 0) {
|
||||
$table.append($tr);
|
||||
}
|
||||
});
|
||||
|
||||
totalRow = $table.find('tr').length;
|
||||
totalColumn = COLUMN_LENGTH;
|
||||
|
||||
return $table;
|
||||
};
|
||||
|
||||
this.initialize = function() {
|
||||
var $container = options.dialogsInBody ? $(document.body) : $editor;
|
||||
|
||||
var body = '<div class="form-group row-fluid">' + this.makeSpecialCharSetTable()[0].outerHTML + '</div>';
|
||||
|
||||
this.$dialog = ui.dialog({
|
||||
title: lang.specialChar.select,
|
||||
body: body
|
||||
}).render().appendTo($container);
|
||||
};
|
||||
|
||||
this.show = function() {
|
||||
var text = context.invoke('editor.getSelectedText');
|
||||
context.invoke('editor.saveRange');
|
||||
this.showSpecialCharDialog(text).then(function(selectChar) {
|
||||
context.invoke('editor.restoreRange');
|
||||
|
||||
// build node
|
||||
var $node = $('<span></span>').html(selectChar)[0];
|
||||
|
||||
if ($node) {
|
||||
// insert video node
|
||||
context.invoke('editor.insertNode', $node);
|
||||
}
|
||||
}).fail(function() {
|
||||
context.invoke('editor.restoreRange');
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* show image dialog
|
||||
*
|
||||
* @param {jQuery} $dialog
|
||||
* @return {Promise}
|
||||
*/
|
||||
this.showSpecialCharDialog = function(text) {
|
||||
return $.Deferred(function(deferred) {
|
||||
var $specialCharDialog = self.$dialog;
|
||||
var $specialCharNode = $specialCharDialog.find('.note-specialchar-node');
|
||||
var $selectedNode = null;
|
||||
var ARROW_KEYS = [KEY.UP, KEY.DOWN, KEY.LEFT, KEY.RIGHT];
|
||||
var ENTER_KEY = KEY.ENTER;
|
||||
|
||||
function addActiveClass($target) {
|
||||
if (!$target) {
|
||||
return;
|
||||
}
|
||||
$target.find('button').addClass('active');
|
||||
$selectedNode = $target;
|
||||
}
|
||||
|
||||
function removeActiveClass($target) {
|
||||
$target.find('button').removeClass('active');
|
||||
$selectedNode = null;
|
||||
}
|
||||
|
||||
// find next node
|
||||
function findNextNode(row, column) {
|
||||
var findNode = null;
|
||||
$.each($specialCharNode, function(idx, $node) {
|
||||
var findRow = Math.ceil((idx + 1) / COLUMN_LENGTH);
|
||||
var findColumn = ((idx + 1) % COLUMN_LENGTH === 0) ? COLUMN_LENGTH : (idx + 1) % COLUMN_LENGTH;
|
||||
if (findRow === row && findColumn === column) {
|
||||
findNode = $node;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
return $(findNode);
|
||||
}
|
||||
|
||||
function arrowKeyHandler(keyCode) {
|
||||
// left, right, up, down key
|
||||
var $nextNode;
|
||||
var lastRowColumnLength = $specialCharNode.length % totalColumn;
|
||||
|
||||
if (KEY.LEFT === keyCode) {
|
||||
if (currentColumn > 1) {
|
||||
currentColumn = currentColumn - 1;
|
||||
} else if (currentRow === 1 && currentColumn === 1) {
|
||||
currentColumn = lastRowColumnLength;
|
||||
currentRow = totalRow;
|
||||
} else {
|
||||
currentColumn = totalColumn;
|
||||
currentRow = currentRow - 1;
|
||||
}
|
||||
} else if (KEY.RIGHT === keyCode) {
|
||||
if (currentRow === totalRow && lastRowColumnLength === currentColumn) {
|
||||
currentColumn = 1;
|
||||
currentRow = 1;
|
||||
} else if (currentColumn < totalColumn) {
|
||||
currentColumn = currentColumn + 1;
|
||||
} else {
|
||||
currentColumn = 1;
|
||||
currentRow = currentRow + 1;
|
||||
}
|
||||
} else if (KEY.UP === keyCode) {
|
||||
if (currentRow === 1 && lastRowColumnLength < currentColumn) {
|
||||
currentRow = totalRow - 1;
|
||||
} else {
|
||||
currentRow = currentRow - 1;
|
||||
}
|
||||
} else if (KEY.DOWN === keyCode) {
|
||||
currentRow = currentRow + 1;
|
||||
}
|
||||
|
||||
if (currentRow === totalRow && currentColumn > lastRowColumnLength) {
|
||||
currentRow = 1;
|
||||
} else if (currentRow > totalRow) {
|
||||
currentRow = 1;
|
||||
} else if (currentRow < 1) {
|
||||
currentRow = totalRow;
|
||||
}
|
||||
|
||||
$nextNode = findNextNode(currentRow, currentColumn);
|
||||
|
||||
if ($nextNode) {
|
||||
removeActiveClass($selectedNode);
|
||||
addActiveClass($nextNode);
|
||||
}
|
||||
}
|
||||
|
||||
function enterKeyHandler() {
|
||||
if (!$selectedNode) {
|
||||
return;
|
||||
}
|
||||
|
||||
deferred.resolve(decodeURIComponent($selectedNode.find('button').attr('data-value')));
|
||||
$specialCharDialog.modal('hide');
|
||||
}
|
||||
|
||||
function keyDownEventHandler(event) {
|
||||
event.preventDefault();
|
||||
var keyCode = event.keyCode;
|
||||
if (keyCode === undefined || keyCode === null) {
|
||||
return;
|
||||
}
|
||||
// check arrowKeys match
|
||||
if (ARROW_KEYS.indexOf(keyCode) > -1) {
|
||||
if ($selectedNode === null) {
|
||||
addActiveClass($specialCharNode.eq(0));
|
||||
currentColumn = 1;
|
||||
currentRow = 1;
|
||||
return;
|
||||
}
|
||||
arrowKeyHandler(keyCode);
|
||||
} else if (keyCode === ENTER_KEY) {
|
||||
enterKeyHandler();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// remove class
|
||||
removeActiveClass($specialCharNode);
|
||||
|
||||
// find selected node
|
||||
if (text) {
|
||||
for (var i = 0; i < $specialCharNode.length; i++) {
|
||||
var $checkNode = $($specialCharNode[i]);
|
||||
if ($checkNode.text() === text) {
|
||||
addActiveClass($checkNode);
|
||||
currentRow = Math.ceil((i + 1) / COLUMN_LENGTH);
|
||||
currentColumn = (i + 1) % COLUMN_LENGTH;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ui.onDialogShown(self.$dialog, function() {
|
||||
$(document).on('keydown', keyDownEventHandler);
|
||||
|
||||
self.$dialog.find('button').tooltip();
|
||||
|
||||
$specialCharNode.on('click', function(event) {
|
||||
event.preventDefault();
|
||||
deferred.resolve(decodeURIComponent($(event.currentTarget).find('button').attr('data-value')));
|
||||
ui.hideDialog(self.$dialog);
|
||||
});
|
||||
});
|
||||
|
||||
ui.onDialogHidden(self.$dialog, function() {
|
||||
$specialCharNode.off('click');
|
||||
|
||||
self.$dialog.find('button').tooltip('destroy');
|
||||
|
||||
$(document).off('keydown', keyDownEventHandler);
|
||||
|
||||
if (deferred.state() === 'pending') {
|
||||
deferred.reject();
|
||||
}
|
||||
});
|
||||
|
||||
ui.showDialog(self.$dialog);
|
||||
});
|
||||
};
|
||||
}
|
||||
});
|
||||
}));
|
||||
1
public/js/summernote/summernote-bs4.css
vendored
Normal file
1
public/js/summernote/summernote-bs4.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7574
public/js/summernote/summernote-bs4.js
vendored
Normal file
7574
public/js/summernote/summernote-bs4.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
public/js/summernote/summernote-bs4.min.js
vendored
Normal file
3
public/js/summernote/summernote-bs4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/summernote/summernote-lite.css
vendored
Normal file
1
public/js/summernote/summernote-lite.css
vendored
Normal file
File diff suppressed because one or more lines are too long
8118
public/js/summernote/summernote-lite.js
vendored
Normal file
8118
public/js/summernote/summernote-lite.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
public/js/summernote/summernote-lite.min.js
vendored
Normal file
3
public/js/summernote/summernote-lite.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/summernote/summernote.css
vendored
Normal file
1
public/js/summernote/summernote.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7570
public/js/summernote/summernote.js
vendored
Normal file
7570
public/js/summernote/summernote.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
public/js/summernote/summernote.min.js
vendored
Normal file
3
public/js/summernote/summernote.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
53
public/js/support/support.js
vendored
Normal file
53
public/js/support/support.js
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
$(document).ready(function() {
|
||||
let selctor = $('#supporttxt');
|
||||
let placeholder = 'Please write what is your problem or needs';
|
||||
common_helper.init_summernote(selctor,placeholder);
|
||||
})
|
||||
const closeTicket = (userData,url) => {
|
||||
let html_content = `<h4>Are you sure you want to close the ticket?</h4>`;
|
||||
const swalresponse = common_helper.swalAleart(html_content, 'warning', 450, true, '', true, true, 'Yes');
|
||||
swalresponse.then(async function (result) {
|
||||
let data = {
|
||||
action: 'CLOSE_SUPPORT_TICKET',
|
||||
userData: userData,
|
||||
_token: $('meta[name="csrf-token"]').attr('content')
|
||||
};
|
||||
if (result.isConfirmed) {
|
||||
await common_helper.globalAjaxRequestAsync(url, 'POST', data ,closeTicketCallBack);
|
||||
}
|
||||
});
|
||||
}
|
||||
const closeTicketCallBack = (response)=>{
|
||||
if (response.status) {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
window.location = $('[name="redirect_url"]').val();
|
||||
} else {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
const reminder_btn_click = (userData,url) => {
|
||||
let html_content = `<h4>Are you sure you want to send reminder for the ticket?</h4>`;
|
||||
const swalresponse = common_helper.swalAleart(html_content, 'warning', 450, true, '', true, true, 'Yes');
|
||||
swalresponse.then(async function (result) {
|
||||
let data = {
|
||||
action: 'REMINDER_SUPPORT_TICKET',
|
||||
supportId: userData,
|
||||
_token: $('meta[name="csrf-token"]').attr('content')
|
||||
};
|
||||
if (result.isConfirmed) {
|
||||
await common_helper.globalAjaxRequestAsync(url, 'POST', data ,reminderCallBack);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const reminderCallBack = (response)=>{
|
||||
if (response.status) {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
} else {
|
||||
Swal.fire({icon: response.type, title: response.message, width: 450,closeOnConfirm: true});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
2
public/js/sweetalert2/sweetalert2.min.js
vendored
Normal file
2
public/js/sweetalert2/sweetalert2.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
69
public/js/topbar/topbar.js
vendored
Normal file
69
public/js/topbar/topbar.js
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
common_helper.formValidate('#payment-report_form',
|
||||
{'card_number': 'required', 'expiry': 'required', 'cvv': 'required'},
|
||||
{
|
||||
'card_number': {required: "Please enter your card number"},
|
||||
'expiry': {required: "Please enter expire date"},
|
||||
'cvv': {required: "Please enter your card code"}
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
$('#popup_youtube').click(function (e) {
|
||||
e.preventDefault();
|
||||
common_helper.youtubePopup($("#popup_youtube"));
|
||||
});
|
||||
// const callbackfunction=(result)=>{
|
||||
// if(result.status)
|
||||
// {
|
||||
// $('#confirmation_modal').modal('hide');
|
||||
// @php
|
||||
// unsetCache('card_'.auth()->id());
|
||||
// unsetCache('expiration_'.auth()->id());
|
||||
// unsetCache('cvv_'.auth()->id());
|
||||
// @endphp
|
||||
// window.location.href='{{route('manage.clients')}}';
|
||||
//
|
||||
// }
|
||||
// }
|
||||
|
||||
// $('#btn-submit-form').click(function (e) {
|
||||
// common_helper.globalAjaxRequestAsync('{{route('process.ajax')}}','POST',{action:'DELETE_RECURRING',id:null, _token:"{{ csrf_token() }}"},callbackfunction);
|
||||
// });
|
||||
|
||||
$("#expiry").keyup(function(){
|
||||
if ($(this).val().length === 2){
|
||||
$(this).val($(this).val() + "/");
|
||||
}
|
||||
});
|
||||
|
||||
const subscription = () => {
|
||||
event.preventDefault();
|
||||
let message = 'Are you sure you want to cancel your account?'
|
||||
commonModalView('COMMON_MODAL','confirmation_modal_subscription',message);
|
||||
}
|
||||
|
||||
// const supportModalView=()=> {
|
||||
// $('#support_modal').modal('show');
|
||||
// }
|
||||
|
||||
|
||||
// const profilePicModalView=()=> {
|
||||
// debugger;
|
||||
// $("#modal_target").load("/partials/modal/modal_views",
|
||||
// function(){$("#profile_pic_modal").modal('show');});
|
||||
// // $('#profile_pic_modal').modal('show');
|
||||
// }
|
||||
|
||||
const modalviewcallback=(result,data)=>{
|
||||
|
||||
if(result){
|
||||
|
||||
$('#modal_target').html(result);
|
||||
|
||||
//This shows the modal
|
||||
$('#'+ data.targetModal).modal('show');
|
||||
}
|
||||
}
|
||||
|
||||
48
public/js/unwanted_char_remove.js
vendored
Normal file
48
public/js/unwanted_char_remove.js
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
function remove_non_ascii(str) {
|
||||
|
||||
if ((str === null) || (str === ''))
|
||||
return false;
|
||||
else
|
||||
str = str.toString();
|
||||
|
||||
var unwanted_char_removed_str = str.replace(/[^\x20-\x7E]/g, '');
|
||||
|
||||
unwanted_char_removed_str = scriptTagRemove(unwanted_char_removed_str);
|
||||
var dir_folder = "";
|
||||
// if(ENVIROMENT == 3){
|
||||
// dir_folder = "rtgv4/";
|
||||
// }
|
||||
//https://identityiq.com/CreditReportContent/DEFAULT/style.DEFAULT.css
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"', 'href="/'+dir_folder+'css/font-awesome.min.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://www.identityiq.com/CreditReportContent/DEFAULT/style.DEFAULT.css"', 'href="/'+dir_folder+'epicvelocity/css/style.DEFAULT.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://identityiq.com/CreditReportContent/DEFAULT/style.DEFAULT.css"', 'href="/'+dir_folder+'epicvelocity/css/style.DEFAULT.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://member.identityiq.com/CreditReportContent/DEFAULT/style.DEFAULT.css"', 'href="/'+dir_folder+'epicvelocity/css/style.DEFAULT.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://www.identityiq.com/css/CRDownload.css"', 'href="/'+dir_folder+'epicvelocity/css/CRDownload.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://identityiq.com/css/CRDownload.css"', 'href="/'+dir_folder+'epicvelocity/css/CRDownload.css"')
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace('href="https://member.identityiq.com/css/CRDownload.css"', 'href="/'+dir_folder+'epicvelocity/css/CRDownload.css"')
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://www.identityiq.com/images/tu/info_icon.gif','/'+dir_folder+'images/iq_report_img/info_icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://identityiq.com/images/tu/info_icon.gif','/'+dir_folder+'images/iq_report_img/info_icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://member.identityiq.com/images/tu/info_icon.gif','/'+dir_folder+'images/iq_report_img/info_icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://member.identityiq.com/images/tu/legend-icon.gif','/'+dir_folder+'images/iq_report_img/legend-icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://www.identityiq.com/images/tu/legend-icon.gif','/'+dir_folder+'images/iq_report_img/legend-icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://identityiq.com/images/tu/legend-icon.gif','/'+dir_folder+'images/iq_report_img/legend-icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
unwanted_char_removed_str = replaceAllLink(unwanted_char_removed_str,'https://identityiq.com/images/tu/legend-icon.gif','/'+dir_folder+'images/iq_report_img/legend-icon.gif')//unwanted_char_removed_str.replace(, )
|
||||
|
||||
return unwanted_char_removed_str;
|
||||
|
||||
}
|
||||
function replaceAllLink(str, find, replace) {
|
||||
return str.replace(new RegExp(find, 'g'), replace);
|
||||
}
|
||||
|
||||
function replaceAllString(str, find, replace) {
|
||||
return str.replace(new RegExp(find, 'g'), replace);
|
||||
}
|
||||
function scriptTagRemove(unwanted_char_removed_str){
|
||||
if(unwanted_char_removed_str){
|
||||
var script_tag_regex = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi
|
||||
unwanted_char_removed_str = unwanted_char_removed_str.replace(script_tag_regex, "");
|
||||
}
|
||||
|
||||
return unwanted_char_removed_str;
|
||||
}
|
||||
1709
public/js/upload_report_script.js
vendored
Normal file
1709
public/js/upload_report_script.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/js/upload_report_script.min.js
vendored
Normal file
1
public/js/upload_report_script.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
60855
public/js/vue/app.js
vendored
Normal file
60855
public/js/vue/app.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user