diff --git a/app/frontend/static/assets/js/demo_3/dashboard_2.js b/app/frontend/static/assets/js/demo_3/dashboard_2.js deleted file mode 100755 index e14b2785..00000000 --- a/app/frontend/static/assets/js/demo_3/dashboard_2.js +++ /dev/null @@ -1,167 +0,0 @@ -(function($) { - 'use strict'; - $(function() { - if ($('#dashoard-line-chart').length) { - var lineChartCanvas = $("#dashoard-line-chart").get(0).getContext("2d"); - var data = { - labels: ["2013", "2014", "2014", "2015", "2016", "2017", "2018"], - datasets: [{ - label: 'Profit', - data: [1, 3, 7, 1, 3, 5, 3, 2, 6, 8, 8, 8, 5], - borderColor: [ - 'rgba(231, 72, 126, 1)' - ], - borderWidth: 2, - fill: false - }] - }; - var options = { - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 0 - } - }, - stepsize: 100 - }; - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: options - }); - } - if ($("#dashboard-bar-chart").length) { - var CurrentChartCanvas = $("#dashboard-bar-chart").get(0).getContext("2d"); - var CurrentChart = new Chart(CurrentChartCanvas, { - type: 'bar', - data: { - labels: ["1", "3", "6", "9", "12", "15", "18", "21", "24", "27"], - datasets: [{ - label: 'SNOOZED', - data: [330, 380, 230, 400, 309, 430, 340, 310, 280, 300], - backgroundColor: '#8862e0' - }, - { - label: 'COMPLETED', - data: [375, 440, 284, 450, 386, 480, 400, 365, 365, 435], - backgroundColor: '#49bbce' - }, - { - label: 'OVERDUE', - data: [425, 480, 324, 490, 426, 520, 440, 405, 425, 475], - backgroundColor: '#e7487e' - } - ] - }, - options: { - responsive: true, - maintainAspectRatio: true, - layout: { - padding: { - left: 0, - right: 0, - top: 20, - bottom: 0 - } - }, - scales: { - yAxes: [{ - display: false, - gridLines: { - display: false - } - }], - xAxes: [{ - stacked: true, - ticks: { - beginAtZero: true, - fontColor: "#bdbcbe" - }, - gridLines: { - color: "rgba(0, 0, 0, 0)", - display: false - }, - barPercentage: 0.2 - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 0 - } - } - } - }); - } - if ($("#dashboardTrendingProgress").length) { - var bar = new ProgressBar.Circle(dashboardTrendingProgress, { - strokeWidth: 15, - trailWidth: 15, - easing: 'easeInOut', - duration: 1400, - from: { - color: '#f2f2f4', - width: 10 - }, - to: { - color: '#00df59', - width: 15 - }, - step: function(state, circle) { - circle.path.setAttribute('stroke', state.color); - circle.path.setAttribute('stroke-width', state.width); - } - }); - bar.animate(.84); - } - if ($("#dashboardTrendingBars").length) { - var CurrentChartCanvas = $("#dashboardTrendingBars").get(0).getContext("2d"); - var CurrentChart = new Chart(CurrentChartCanvas, { - type: 'bar', - data: { - labels: ["1", "3", "6", "9", "12", "15"], - datasets: [{ - data: [100, 130, 180, 170, 130, 170], - backgroundColor: '#8862e0' - }] - }, - options: { - responsive: true, - maintainAspectRatio: true, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - }, - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false, - barPercentage: 0.8 - }] - }, - legend: { - display: false - } - } - }); - } - }); -})(jQuery); diff --git a/app/frontend/static/assets/js/demo_3/widgets.js b/app/frontend/static/assets/js/demo_3/widgets.js deleted file mode 100755 index cd290786..00000000 --- a/app/frontend/static/assets/js/demo_3/widgets.js +++ /dev/null @@ -1,1024 +0,0 @@ -(function ($) { - 'use strict'; - $(function () { - function onRefresh(chart) { - chart.data.datasets.forEach(function (dataset) { - dataset.data.push({ - x: Date.now(), - y: Math.random() - }); - }); - } - var lineChartStyleOption_1 = { - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 1 - }, - line: { - tension: 0 - } - }, - stepsize: 100 - }; - var lineChartStyleOption_2 = { - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 0 - }, - line: { - tension: 0 - } - }, - stepsize: 100 - }; - if ($('#source-graph-1').length) { - var lineChartCanvas = $("#source-graph-1").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [1, 3, 7, 4, 1, 9, 6], - borderColor: [ - warningColor - ], - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: lineChartStyleOption_1 - }); - } - if ($('#source-graph-2').length) { - var lineChartCanvas = $("#source-graph-2").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [1, 4, 8, 3, 4, 6, 1], - borderColor: [ - successColor - ], - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: lineChartStyleOption_1 - }); - } - if ($('#source-graph-3').length) { - var lineChartCanvas = $("#source-graph-3").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [8, 12, 5, 4, 1, 12, 4], - borderColor: [ - dangerColor - ], - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: lineChartStyleOption_1 - }); - } - if ($('#source-graph-4').length) { - var lineChartCanvas = $("#source-graph-4").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [6, 9, 3, 4, 2, 5, 6], - borderColor: [ - warningColor - ], - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: lineChartStyleOption_1 - }); - } - if ($("#trafficDoughnutChart").length) { - var doughnutChartCanvas = $("#trafficDoughnutChart").get(0).getContext("2d"); - var doughnutPieData = { - datasets: [{ - data: [70, 20], - backgroundColor: [ - primaryColor, - successColor - ], - borderColor: [ - primaryColor, - successColor - ], - }], - - // These labels appear in the legend and in the tooltips when hovering different arcs - labels: [ - 'Chrome', - 'Firefox', - 'Safari', - 'Opera', - 'IE', - ] - }; - var doughnutPieOptions = { - cutoutPercentage: 70, - animationEasing: "easeOutBounce", - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: true, - showScale: true, - legend: { - display: false - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - } - }; - var doughnutChart = new Chart(doughnutChartCanvas, { - type: 'doughnut', - data: doughnutPieData, - options: doughnutPieOptions - }); - } - if ($('#sourceLineChart').length) { - var sourceLineChartCanvas = $("#sourceLineChart").get(0).getContext("2d"); - var sourceLineChart = new Chart(sourceLineChartCanvas, { - type: 'line', - data: { - labels: ["2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018"], - datasets: [{ - label: 'Desktop', - data: [0, 16, 3, 5, 2, 12, 9, 3], - borderColor: successColor, - backgroundColor: successColor, - borderWidth: 2, - fill: false - }, { - label: 'Mobile', - data: [0, 23, 7, 12, 40, 17, 26, 13], - borderColor: primaryColor, - backgroundColor: primaryColor, - borderWidth: 2, - fill: false - }] - }, - options: { - responsive: true, - animation: { - animateScale: true, - animateRotate: true - }, - elements: { - point: { - radius: 2 - } - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - }, - legend: false, - stepsize: 20, - scales: { - xAxes: [{ - gridLines: { - color: 'rgba(0, 0, 0, 0)', - display: true - } - }], - yAxes: [{ - gridLines: { - color: 'rgba(0, 0, 0, 0.05)', - display: true - } - }] - } - } - }); - } - if ($('#statistics-graph-1').length) { - var lineChartCanvas = $("#statistics-graph-1").get(0).getContext("2d"); - var gradientStrokeFill_1 = lineChartCanvas.createLinearGradient(1, 2, 1, 400); - gradientStrokeFill_1.addColorStop(0, 'rgba(0,0,0,0.2)'); - gradientStrokeFill_1.addColorStop(1, infoColor); - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [3, 9, 7, 5, 7, 2, 8], - borderColor: infoColor, - backgroundColor: gradientStrokeFill_1, - borderWidth: 2, - fill: true - }] - }, - options: lineChartStyleOption_2 - }); - } - if ($('#statistics-graph-2').length) { - var lineChartCanvas = $("#statistics-graph-2").get(0).getContext("2d"); - var gradientStrokeFill_1 = lineChartCanvas.createLinearGradient(1, 2, 1, 400); - gradientStrokeFill_1.addColorStop(0, 'rgba(0,0,0,0.2)'); - gradientStrokeFill_1.addColorStop(1, primaryColor); - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [7, 9, 2, 2, 8, 7, 9], - borderColor: primaryColor, - backgroundColor: gradientStrokeFill_1, - borderWidth: 2, - fill: true - }] - }, - options: lineChartStyleOption_2 - }); - } - if ($('#statistics-graph-3').length) { - var lineChartCanvas = $("#statistics-graph-3").get(0).getContext("2d"); - var gradientStrokeFill_1 = lineChartCanvas.createLinearGradient(1, 2, 1, 400); - gradientStrokeFill_1.addColorStop(0, 'rgba(0,0,0,0.2)'); - gradientStrokeFill_1.addColorStop(1, warningColor); - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [5, 4, 7, 2, 9, 2, 8], - borderColor: warningColor, - backgroundColor: gradientStrokeFill_1, - borderWidth: 2, - fill: true - }] - }, - options: lineChartStyleOption_2 - }); - } - if ($('#statistics-graph-4').length) { - var lineChartCanvas = $("#statistics-graph-4").get(0).getContext("2d"); - var gradientStrokeFill_1 = lineChartCanvas.createLinearGradient(1, 2, 1, 400); - gradientStrokeFill_1.addColorStop(0, 'rgba(0,0,0,0.2)'); - gradientStrokeFill_1.addColorStop(1, dangerColor); - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7"], - datasets: [{ - label: 'Profit', - data: [5, 2, 5, 2, 4, 4, 1], - borderColor: dangerColor, - backgroundColor: gradientStrokeFill_1, - borderWidth: 2, - fill: true - }] - }, - options: lineChartStyleOption_2 - }); - } - if ($('#review-rating-1').length) { - $('#review-rating-1').barrating({ - theme: 'css-stars', - showSelectedRating: false, - initialRating: 4 - }); - } - if ($('#review-rating-2').length) { - $('#review-rating-2').barrating({ - theme: 'css-stars', - showSelectedRating: false, - initialRating: 5 - }); - } - if ($('#review-rating-3').length) { - $('#review-rating-3').barrating({ - theme: 'css-stars', - showSelectedRating: false, - initialRating: 3 - }); - } - if ($('#review-rating-4').length) { - $('#review-rating-4').barrating({ - theme: 'css-stars', - showSelectedRating: false, - initialRating: 4 - }); - } - if ($('#review-rating-5').length) { - $('#review-rating-5').barrating({ - theme: 'css-stars', - showSelectedRating: false, - initialRating: 2 - }); - } - if ($('#statistics-chart').length) { - var barChartCanvas = $("#statistics-chart").get(0).getContext("2d"); - var barChart = new Chart(barChartCanvas, { - type: 'bar', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7", "Day 8", "Day 9", "Day 10", ], - datasets: [{ - label: 'Revenue', - data: [39, 19, 25, 16, 31, 39, 23, 20, 23, 18], - backgroundColor: successColor - }, - { - label: 'Sales', - data: [27, 12, 26, 15, 21, 27, 13, 19, 32, 22], - backgroundColor: primaryColor - } - ] - }, - options: { - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - }, - - scales: { - responsive: true, - maintainAspectRatio: true, - yAxes: [{ - stacked: true, - display: false, - gridLines: { - color: 'rgba(0, 0, 0, 0.03)', - } - }], - xAxes: [{ - stacked: true, - display: false, - barPercentage: 0.3, - gridLines: { - display: false, - } - }] - }, - legend: { - display: false - } - } - }); - } - if ($('#balance-chart-1').length) { - var lineChartCanvas = $("#balance-chart-1").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7", "Day 8"], - datasets: [{ - label: 'Balance', - data: [10, 2, 7, 3, 10, 0, 9, 0], - borderColor: primaryColor, - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: { - responsive: true, - maintainAspectRatio: true, - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 1 - } - }, - stepsize: 100 - } - }); - } - if ($('#balance-chart-2').length) { - var lineChartCanvas = $("#balance-chart-2").get(0).getContext("2d"); - var data = { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7", "Day 8"], - datasets: [{ - label: 'Credit', - data: [4, 1, 7, 4, 1, 8, 2, 8], - borderColor: primaryColor, - borderWidth: 2, - fill: false - }] - }; - - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: { - responsive: true, - maintainAspectRatio: true, - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 1 - } - }, - stepsize: 100 - } - }); - } - if ($("#UsersDoughnutChart").length) { - var doughnutChartCanvas = $("#UsersDoughnutChart").get(0).getContext("2d"); - var doughnutPieData = { - datasets: [{ - data: [80, 34, 100], - backgroundColor: [ - successColor, - infoColor, - secondaryColor - ], - borderColor: [ - successColor, - infoColor, - secondaryColor - ], - }], - labels: [ - 'Request', - 'Email', - ] - }; - var doughnutPieOptions = { - cutoutPercentage: 70, - animationEasing: "easeOutBounce", - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: true, - showScale: true, - legend: { - display: false - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - } - }; - var doughnutChart = new Chart(doughnutChartCanvas, { - type: 'doughnut', - data: doughnutPieData, - options: doughnutPieOptions - }); - } - if ($('#conversionBarChart').length) { - var barChartCanvas = $("#conversionBarChart").get(0).getContext("2d"); - var barChart = new Chart(barChartCanvas, { - type: 'bar', - data: { - labels: ["Day 1", "Day 2", "Day 3", "Day 4", "Day 5", "Day 6", "Day 7", "Day 8", "Day 9", "Day 10"], - datasets: [{ - label: 'Amount Due', - data: [39, 19, 25, 16, 31, 39, 12, 18, 33, 24], - backgroundColor: primaryColor - }] - }, - options: { - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - }, - - scales: { - responsive: true, - maintainAspectRatio: true, - yAxes: [{ - display: false, - gridLines: { - color: 'rgba(0, 0, 0, 0.03)', - } - }], - xAxes: [{ - display: false, - barPercentage: 0.4, - gridLines: { - display: false, - } - }] - }, - legend: { - display: false - } - } - }); - } - if ($("#dashboard-bar-chart").length) { - var CurrentChartCanvas = $("#dashboard-bar-chart").get(0).getContext("2d"); - var CurrentChart = new Chart(CurrentChartCanvas, { - type: 'bar', - data: { - labels: ["1", "3", "6", "9", "12", "15", "18", "21", "24", "27"], - datasets: [{ - label: 'SNOOZED', - data: [330, 380, 230, 400, 309, 430, 340, 310, 280, 300], - backgroundColor: '#8862e0' - }, - { - label: 'COMPLETED', - data: [375, 440, 284, 450, 386, 480, 400, 365, 365, 435], - backgroundColor: '#49bbce' - }, - { - label: 'OVERDUE', - data: [425, 480, 324, 490, 426, 520, 440, 405, 425, 475], - backgroundColor: '#e7487e' - } - ] - }, - options: { - responsive: true, - maintainAspectRatio: true, - layout: { - padding: { - left: 0, - right: 0, - top: 20, - bottom: 0 - } - }, - scales: { - yAxes: [{ - display: false, - gridLines: { - display: false - } - }], - xAxes: [{ - stacked: true, - ticks: { - beginAtZero: true, - fontColor: "#bdbcbe" - }, - gridLines: { - color: "rgba(0, 0, 0, 0)", - display: false - }, - barPercentage: 0.2 - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 0 - } - } - } - }); - } - if ($('#topSellingProducts').length) { - var topSellingChartCanvas = $("#topSellingProducts").get(0).getContext("2d"); - - var topSellingChart = new Chart(topSellingChartCanvas, { - type: 'line', - data: { - labels: ["2011", "2012", "2013", "2014", "2015", "2016", "2017"], - datasets: [{ - label: 'Total Profit', - data: [150, 200, 150, 220, 350, 275, 365], - borderColor: primaryColor, - backgroundColor: 'rgba(0,0,0,0.2)', - borderWidth: 2, - fill: true - }, { - label: 'Total Sales', - data: [300, 400, 300, 440, 700, 550, 730], - borderColor: successColor, - backgroundColor: 'rgba(0,0,0,0.2)', - borderWidth: 2, - fill: true - }] - }, - options: { - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 3 - }, - line: { - tension: 0 - } - }, - stepsize: 100 - } - }); - } - if ($("#realtime-statistics").length) { - var realtimeChartCanvas = $("#realtime-statistics").get(0).getContext("2d"); - var realtimeChart = new Chart(realtimeChartCanvas, { - type: 'bar', - data: { - labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], - datasets: [{ - label: 'Profit', - data: [330, 380, 230, 400, 309, 530, 340, 400, 490, 380, 300, 510], - backgroundColor: primaryColor - }, - { - label: 'Target', - data: [600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600], - backgroundColor: 'rgba(238, 242, 245, 1)' - } - ] - }, - options: { - responsive: true, - maintainAspectRatio: true, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - }, - scales: { - yAxes: [{ - display: false, - gridLines: { - display: false - } - }], - xAxes: [{ - stacked: true, - ticks: { - beginAtZero: true, - fontColor: "#354168" - }, - gridLines: { - color: "rgba(0, 0, 0, 0)", - display: false - }, - barPercentage: 0.4 - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 0 - } - } - } - }); - } - if ($("#humanResouceDoughnutChart").length) { - var doughnutChartCanvas = $("#humanResouceDoughnutChart").get(0).getContext("2d"); - var doughnutPieData = { - datasets: [{ - data: [20, 80, 85, 45], - backgroundColor: [ - successColor, - primaryColor, - dangerColor, - secondaryColor - ], - borderColor: [ - successColor, - primaryColor, - dangerColor, - secondaryColor - ], - }], - - // These labels appear in the legend and in the tooltips when hovering different arcs - labels: [ - 'Human Resources', - 'Manger', - 'Other' - ] - }; - var doughnutPieOptions = { - cutoutPercentage: 75, - animationEasing: "easeOutBounce", - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: true, - showScale: true, - legend: { - display: false - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - } - }; - var doughnutChart = new Chart(doughnutChartCanvas, { - type: 'doughnut', - data: doughnutPieData, - options: doughnutPieOptions - }); - } - if ($("#trafficSourceDoughnutChart").length) { - var doughnutChartCanvas = $("#trafficSourceDoughnutChart").get(0).getContext("2d"); - var doughnutPieData = { - datasets: [{ - data: [185, 85, 15], - backgroundColor: [ - secondaryColor, - successColor, - dangerColor, - - ], - borderColor: [ - secondaryColor, - successColor, - dangerColor, - - ], - }], - - // These labels appear in the legend and in the tooltips when hovering different arcs - labels: [ - 'Human Resources', - 'Manger', - 'Other' - ] - }; - var doughnutPieOptions = { - cutoutPercentage: 75, - animationEasing: "easeOutBounce", - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: true, - showScale: true, - legend: { - display: false - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - } - }; - var doughnutChart = new Chart(doughnutChartCanvas, { - type: 'doughnut', - data: doughnutPieData, - options: doughnutPieOptions - }); - } - if ($('#todo-tags-1').length) { - $('#todo-tags-1').tagsInput({ - 'width': '100%', - 'interactive': true, - 'defaultText': 'Add More', - 'removeWithBackspace': true, - 'minChars': 0, - 'maxChars': 20 - }); - } - if ($('#todo-tags-2').length) { - $('#todo-tags-2').tagsInput({ - 'width': '100%', - 'interactive': true, - 'defaultText': 'Add More', - 'removeWithBackspace': true, - 'minChars': 0, - 'maxChars': 20, // if not provided there is no limit - 'placeholderColor': '#666666' - }); - } - if ($("#salesPrdictionDoughnutChart").length) { - var doughnutChartCanvas = $("#salesPrdictionDoughnutChart").get(0).getContext("2d"); - var doughnutPieData = { - datasets: [{ - data: [185, 85, 65], - backgroundColor: [ - primaryColor, - warningColor, - successColor, - ], - borderColor: [ - primaryColor, - warningColor, - successColor, - ], - }], - - // These labels appear in the legend and in the tooltips when hovering different arcs - labels: [ - 'Human Resources', - 'Manger', - 'Other' - ] - }; - var doughnutPieOptions = { - cutoutPercentage: 75, - animationEasing: "easeOutBounce", - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: true, - showScale: true, - legend: { - display: false - }, - layout: { - padding: { - left: 0, - right: 0, - top: 0, - bottom: 0 - } - } - }; - var doughnutChart = new Chart(doughnutChartCanvas, { - type: 'doughnut', - data: doughnutPieData, - options: doughnutPieOptions - }); - } - if ($('#usersDoughnutChart').length) { - var g1 - var g1 = new JustGage({ - id: "usersDoughnutChart", - value: getRandomInt(0, 100), - min: 0, - max: 100, - gaugeWidthScale: 0.8, - hideInnerShadow: true, - customSectors: [{ - color: dangerColor, - lo: 0, - hi: 25 - }, { - color: warningColor, - lo: 25, - hi: 50 - }, { - color: successColor, - lo: 50, - hi: 100 - }], - label: "Daily average" - }); - - - setInterval(function () { - g1.refresh(getRandomInt(20, 100)); - }, 3500); - } - if ($('#product-area-chart').length) { - var lineChartCanvas = $("#product-area-chart").get(0).getContext("2d"); - var data = { - labels: ["2013", "2014", "2014", "2015", "2016", "2017", "2018"], - datasets: [{ - label: 'Support', - data: [150, 200, 150, 220, 350, 275, 365], - backgroundColor: 'rgba(52,110,240,0.7)', - borderColor: 'rgba(52,110,240,0.8)', - borderWidth: 2, - fill: true - }, - { - label: 'Product', - data: [300, 400, 300, 440, 700, 550, 730], - backgroundColor: 'rgba(0,187,248,0.7)', - borderColor: 'rgba(0,187,248,0.8)', - borderWidth: 2, - fill: true - } - ] - }; - var options = { - scales: { - yAxes: [{ - display: false - }], - xAxes: [{ - display: false - }] - }, - legend: { - display: false - }, - elements: { - point: { - radius: 3 - }, - line: { - tension: 0 - } - }, - stepsize: 1 - }; - var lineChart = new Chart(lineChartCanvas, { - type: 'line', - data: data, - options: options - }); - } - }); -})(jQuery) \ No newline at end of file diff --git a/app/frontend/static/assets/js/shared/misc.js b/app/frontend/static/assets/js/shared/misc.js index f39bf482..37d8e31d 100755 --- a/app/frontend/static/assets/js/shared/misc.js +++ b/app/frontend/static/assets/js/shared/misc.js @@ -1,238 +1,232 @@ -var ChartColor = ["#5D62B4", "#54C3BE", "#EF726F", "#F9C446", "rgb(93.0, 98.0, 180.0)", "#21B7EC", "#04BCCC"]; -var primaryColor = getComputedStyle(document.body).getPropertyValue('--primary'); -var secondaryColor = getComputedStyle(document.body).getPropertyValue('--secondary'); -var successColor = getComputedStyle(document.body).getPropertyValue('--success'); -var warningColor = getComputedStyle(document.body).getPropertyValue('--warning'); -var dangerColor = getComputedStyle(document.body).getPropertyValue('--danger'); -var infoColor = getComputedStyle(document.body).getPropertyValue('--info'); -var darkColor = getComputedStyle(document.body).getPropertyValue('--dark'); -var lightColor = getComputedStyle(document.body).getPropertyValue('--light'); -if ($('body').hasClass("dark-theme")) { - var chartFontcolor = '#b9c0d3'; - var chartGridLineColor = '#383e5d'; - +var ChartColor = [ + "#5D62B4", + "#54C3BE", + "#EF726F", + "#F9C446", + "rgb(93.0, 98.0, 180.0)", + "#21B7EC", + "#04BCCC", +]; +var primaryColor = getComputedStyle(document.body).getPropertyValue( + "--primary" +); +var secondaryColor = getComputedStyle(document.body).getPropertyValue( + "--secondary" +); +var successColor = getComputedStyle(document.body).getPropertyValue( + "--success" +); +var warningColor = getComputedStyle(document.body).getPropertyValue( + "--warning" +); +var dangerColor = getComputedStyle(document.body).getPropertyValue("--danger"); +var infoColor = getComputedStyle(document.body).getPropertyValue("--info"); +var darkColor = getComputedStyle(document.body).getPropertyValue("--dark"); +var lightColor = getComputedStyle(document.body).getPropertyValue("--light"); +if ($("body").hasClass("dark-theme")) { + var chartFontcolor = "#b9c0d3"; + var chartGridLineColor = "#383e5d"; } else { - var chartFontcolor = '#6c757d'; - var chartGridLineColor = 'rgba(0,0,0,0.08)'; + var chartFontcolor = "#6c757d"; + var chartGridLineColor = "rgba(0,0,0,0.08)"; } -if ($('canvas').length) { - Chart.defaults.global.tooltips.enabled = false; - Chart.defaults.global.defaultFontColor = '#354d66'; - Chart.defaults.global.defaultFontFamily = '"Poppins", sans-serif'; - Chart.defaults.global.tooltips.custom = function (tooltipModel) { - // Tooltip Element - var tooltipEl = document.getElementById('chartjs-tooltip'); +if ($("canvas").length) { + Chart.defaults.global.tooltips.enabled = false; + Chart.defaults.global.defaultFontColor = "#354d66"; + Chart.defaults.global.defaultFontFamily = '"Poppins", sans-serif'; + Chart.defaults.global.tooltips.custom = function (tooltipModel) { + // Tooltip Element + var tooltipEl = document.getElementById("chartjs-tooltip"); - // Create element on first render - if (!tooltipEl) { - tooltipEl = document.createElement('div'); - tooltipEl.id = 'chartjs-tooltip'; - tooltipEl.innerHTML = "
"; - document.body.appendChild(tooltipEl); - } + // Create element on first render + if (!tooltipEl) { + tooltipEl = document.createElement("div"); + tooltipEl.id = "chartjs-tooltip"; + tooltipEl.innerHTML = "
"; + document.body.appendChild(tooltipEl); + } - // Hide if no tooltip - if (tooltipModel.opacity === 0) { - tooltipEl.style.opacity = 0; - return; - } + // Hide if no tooltip + if (tooltipModel.opacity === 0) { + tooltipEl.style.opacity = 0; + return; + } - // Set caret Position - tooltipEl.classList.remove('above', 'below', 'no-transform'); - if (tooltipModel.yAlign) { - tooltipEl.classList.add(tooltipModel.yAlign); - } else { - tooltipEl.classList.add('no-transform'); - } + // Set caret Position + tooltipEl.classList.remove("above", "below", "no-transform"); + if (tooltipModel.yAlign) { + tooltipEl.classList.add(tooltipModel.yAlign); + } else { + tooltipEl.classList.add("no-transform"); + } - function getBody(bodyItem) { - return bodyItem.lines; - } + function getBody(bodyItem) { + return bodyItem.lines; + } - // Set Text - if (tooltipModel.body) { - var titleLines = tooltipModel.title || []; - var bodyLines = tooltipModel.body.map(getBody); + // Set Text + if (tooltipModel.body) { + var titleLines = tooltipModel.title || []; + var bodyLines = tooltipModel.body.map(getBody); - var innerHtml = ''; + var innerHtml = ""; - titleLines.forEach(function (title) { - innerHtml += '' + title + ''; - }); - innerHtml += ''; + titleLines.forEach(function (title) { + innerHtml += "" + title + ""; + }); + innerHtml += ""; - bodyLines.forEach(function (body, i) { - var colors = tooltipModel.labelColors[i]; - var style = 'background:' + colors.borderColor; - style += '; border-color:' + colors.borderColor; - style += '; border-width: 2px'; - var span = ''; - innerHtml += '' + span + body + ''; - }); - innerHtml += ''; + bodyLines.forEach(function (body, i) { + var colors = tooltipModel.labelColors[i]; + var style = "background:" + colors.borderColor; + style += "; border-color:" + colors.borderColor; + style += "; border-width: 2px"; + var span = ''; + innerHtml += "" + span + body + ""; + }); + innerHtml += ""; - var tableRoot = tooltipEl.querySelector('table'); - tableRoot.innerHTML = innerHtml; - } + var tableRoot = tooltipEl.querySelector("table"); + tableRoot.innerHTML = innerHtml; + } - // `this` will be the overall tooltip - var position = this._chart.canvas.getBoundingClientRect(); + // `this` will be the overall tooltip + var position = this._chart.canvas.getBoundingClientRect(); - // Display, position, and set styles for font - tooltipEl.style.opacity = 1; - tooltipEl.style.position = 'absolute'; - tooltipEl.style.left = position.left + window.pageXOffset + tooltipModel.caretX + 'px'; - tooltipEl.style.top = position.top + window.pageYOffset + tooltipModel.caretY + 'px'; - tooltipEl.style.fontFamily = tooltipModel._bodyFontFamily; - tooltipEl.style.fontSize = tooltipModel.bodyFontSize + 'px'; - tooltipEl.style.fontStyle = tooltipModel._bodyFontStyle; - tooltipEl.style.padding = tooltipModel.yPadding + 'px ' + tooltipModel.xPadding + 'px'; - tooltipEl.style.pointerEvents = 'none'; - } - Chart.defaults.global.legend.labels.fontStyle = "italic"; - Chart.defaults.global.tooltips.intersect = false; + // Display, position, and set styles for font + tooltipEl.style.opacity = 1; + tooltipEl.style.position = "absolute"; + tooltipEl.style.left = + position.left + window.pageXOffset + tooltipModel.caretX + "px"; + tooltipEl.style.top = + position.top + window.pageYOffset + tooltipModel.caretY + "px"; + tooltipEl.style.fontFamily = tooltipModel._bodyFontFamily; + tooltipEl.style.fontSize = tooltipModel.bodyFontSize + "px"; + tooltipEl.style.fontStyle = tooltipModel._bodyFontStyle; + tooltipEl.style.padding = + tooltipModel.yPadding + "px " + tooltipModel.xPadding + "px"; + tooltipEl.style.pointerEvents = "none"; + }; + Chart.defaults.global.legend.labels.fontStyle = "italic"; + Chart.defaults.global.tooltips.intersect = false; } (function ($) { - 'use strict'; - $(function () { - var body = $('body'); - var contentWrapper = $('.content-wrapper'); - var scroller = $('.container-scroller'); - var footer = $('.footer'); - var sidebar = $('#sidebar'); + "use strict"; + $(function () { + var body = $("body"); + var contentWrapper = $(".content-wrapper"); + var scroller = $(".container-scroller"); + var footer = $(".footer"); + var sidebar = $("#sidebar"); - //Add active class to nav-link based on url dynamically - //Active class can be hard coded directly in html file also as required - if (!$('#sidebar').hasClass("dynamic-active-class-disabled")) { - var current = location.pathname.split("/").slice(-1)[0].replace(/^\/|\/$/g, ''); - $('#sidebar >.nav > li:not(.not-navigation-link) a').each(function () { - var $this = $(this); - if (current === "") { - //for root url - if ($this.attr('href').indexOf("index.html") !== -1) { - $(this).parents('.nav-item').last().addClass('active'); - if ($(this).parents('.sub-menu').length) { - $(this).addClass('active'); - } - } - } else { - //for other url - if ($this.attr('href').indexOf(current) !== -1) { - $(this).parents('.nav-item').last().addClass('active'); - if ($(this).parents('.sub-menu').length) { - $(this).addClass('active'); - } - if (current !== "index.html") { - $(this).parents('.nav-item').last().find(".nav-link").attr("aria-expanded", "true"); - if ($(this).parents('.sub-menu').length) { - $(this).closest('.collapse').addClass('show'); - } - } - } - } - }) - } + //Add active class to nav-link based on url dynamically + //Active class can be hard coded directly in html file also as required + if (!sidebar.hasClass("dynamic-active-class-disabled")) { + var current = location.pathname + .split("/") + .slice(-1)[0] + .replace(/^\/|\/$/g, ""); + $("#sidebar >.nav > li:not(.not-navigation-link) a").each( + function () { + var $this = $(this); + if (current === "") { + //for root url + if ($this.attr("href").indexOf("index.html") !== -1) { + $(this) + .parents(".nav-item") + .last() + .addClass("active"); + if ($(this).parents(".sub-menu").length) { + $(this).addClass("active"); + } + } + } else { + //for other url + if ($this.attr("href").indexOf(current) !== -1) { + $(this) + .parents(".nav-item") + .last() + .addClass("active"); + if ($(this).parents(".sub-menu").length) { + $(this).addClass("active"); + } + if (current !== "index.html") { + $(this) + .parents(".nav-item") + .last() + .find(".nav-link") + .attr("aria-expanded", "true"); + if ($(this).parents(".sub-menu").length) { + $(this) + .closest(".collapse") + .addClass("show"); + } + } + } + } + } + ); + } - // Themeswitch function - function themeSwitch(url) { - var currentURL = window.location.href; - var res = currentURL.split("/"); - var abs_url = currentURL.replace(/demo_.\d*/, url); - window.location.href = abs_url; - } - $("#theme-light-switch").on("click", function (e) { - e.preventDefault(); - themeSwitch('demo_1'); - }); - $("#theme-dark-switch").on("click", function (e) { - e.preventDefault(); - themeSwitch('demo_3'); - }); + //Close other submenu in sidebar on opening any + $("#sidebar > .nav > .nav-item > a[data-toggle='collapse']").on( + "click", + function () { + $("#sidebar > .nav > .nav-item") + .find(".collapse.show") + .collapse("hide"); + } + ); + $('[data-toggle="minimize"]').on("click", function () { + if ( + body.hasClass("sidebar-toggle-display") || + body.hasClass("sidebar-absolute") + ) { + body.toggleClass("sidebar-hidden"); + } else { + body.toggleClass("sidebar-icon-only"); + const vw = Math.max( + document.documentElement.clientWidth || 0, + window.innerWidth || 0 + ); + if (vw >= 1200) { + localStorage.setItem( + "crafty-sidebar-expanded", + !body.hasClass("sidebar-icon-only") + ); + } + } + }); - $(".email-wrapper .mail-list-container .mail-list").on("click", function () { - $(".email-wrapper .mail-list-container").addClass("d-none"); - $(".email-wrapper .mail-view").addClass("d-block"); - }); - $(".email-wrapper .mail-back-button").on("click", function () { - $(".email-wrapper .mail-list-container").removeClass("d-none"); - $(".email-wrapper .mail-view").removeClass("d-block"); - }); - $(".aside-toggler").on("click", function () { - $(".mail-sidebar,.chat-list-wrapper").toggleClass("menu-open"); - }); - $("#color-setting").on("click", function () { - $("#color-settings").addClass("open"); - }); - $("#layout-toggler").on("click", function () { - $("#theme-settings").addClass("open"); - }); - $("#chat-toggler").on("click", function () { - $("#right-sidebar").addClass("open"); - }); + //checkbox and radios + $(".form-check label,.form-radio label").append( + '' + ); + }); - //Close other submenu in sidebar on opening any - $("#sidebar > .nav > .nav-item > a[data-toggle='collapse']").on("click", function () { - $("#sidebar > .nav > .nav-item").find('.collapse.show').collapse('hide'); - }); + $('[data-toggle="tooltip"]').tooltip(); - - //Change sidebar and content-wrapper height - applyStyles(); - - function applyStyles() { - //Applying perfect scrollbar - if (!body.hasClass("rtl")) { - if ($('.settings-panel .tab-content .tab-pane.scroll-wrapper').length) { - const settingsPanelScroll = new PerfectScrollbar('.settings-panel .tab-content .tab-pane.scroll-wrapper'); - } - if ($('.chats').length) { - const chatsScroll = new PerfectScrollbar('.chats'); - } - if ($('.scroll-container').length) { - const ScrollContainer = new PerfectScrollbar('.scroll-container'); - } - if (body.hasClass("sidebar-fixed")) { - var fixedSidebarScroll = new PerfectScrollbar('#sidebar .nav'); - } - if ($('.ps-enabled').length) { - const psEnabled = new PerfectScrollbar('.ps-enabled'); - } - } - } - - $('[data-toggle="minimize"]').on("click", function () { - if ((body.hasClass('sidebar-toggle-display')) || (body.hasClass('sidebar-absolute'))) { - body.toggleClass('sidebar-hidden'); - } else { - body.toggleClass('sidebar-icon-only'); - const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0); - if (vw >= 1200) { - localStorage.setItem('crafty-sidebar-expanded', !body.hasClass('sidebar-icon-only')); - } - } - }); - - //checkbox and radios - $(".form-check label,.form-radio label").append(''); - }); - - $('[data-toggle="tooltip"]').tooltip(); - - $(".sidebar .sidebar-inner > .nav > .nav-item").not(".brand-logo").attr('toggle-status', 'closed'); - $(".sidebar .sidebar-inner > .nav > .nav-item").on('click', function () { - $(".sidebar .sidebar-inner > .nav > .nav-item").removeClass("active"); - $(this).addClass("active"); - $(".sidebar .sidebar-inner > .nav > .nav-item").find(".submenu").removeClass("open"); - $(".sidebar .sidebar-inner > .nav > .nav-item").not(this).attr('toggle-status', 'closed'); - var toggleStatus = $(this).attr('toggle-status'); - if (toggleStatus == 'closed') { - $(this).find(".submenu").addClass("open"); - $(this).attr('toggle-status', 'open'); - } else { - $(this).find(".submenu").removeClass("open"); - $(this).not(".brand-logo").attr('toggle-status', 'closed'); - } - }); + $(".sidebar .sidebar-inner > .nav > .nav-item") + .not(".brand-logo") + .attr("toggle-status", "closed"); + $(".sidebar .sidebar-inner > .nav > .nav-item").on("click", function () { + $(".sidebar .sidebar-inner > .nav > .nav-item").removeClass("active"); + $(this).addClass("active"); + $(".sidebar .sidebar-inner > .nav > .nav-item") + .find(".submenu") + .removeClass("open"); + $(".sidebar .sidebar-inner > .nav > .nav-item") + .not(this) + .attr("toggle-status", "closed"); + var toggleStatus = $(this).attr("toggle-status"); + if (toggleStatus == "closed") { + $(this).find(".submenu").addClass("open"); + $(this).attr("toggle-status", "open"); + } else { + $(this).find(".submenu").removeClass("open"); + $(this).not(".brand-logo").attr("toggle-status", "closed"); + } + }); })(jQuery); diff --git a/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.css b/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.css deleted file mode 100755 index eb681513..00000000 --- a/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) - * - * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - */ - -.datepicker{padding:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background-color:#fde19a;background-image:-moz-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-ms-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));background-image:-webkit-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:-o-linear-gradient(to bottom,#fdd49a,#fdf59a);background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color:#fdf59a}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:-moz-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-ms-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));background-image:-webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-o-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:-moz-linear-gradient(to bottom,#b3b3b3,grey);background-image:-ms-linear-gradient(to bottom,#b3b3b3,grey);background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));background-image:-webkit-linear-gradient(to bottom,#b3b3b3,grey);background-image:-o-linear-gradient(to bottom,#b3b3b3,grey);background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color:#04c}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.input-daterange input{text-align:center}.input-daterange input:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-daterange input:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-daterange .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px} \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.js b/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.js deleted file mode 100755 index 8800106e..00000000 --- a/app/frontend/static/assets/vendors/bootstrap-datepicker/bootstrap-datepicker.min.js +++ /dev/null @@ -1,8 +0,0 @@ -/*! - * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker) - * - * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - */ - -!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):jQuery)}(function(a,b){function c(){return new Date(Date.UTC.apply(Date,arguments))}function d(){var a=new Date;return c(a.getFullYear(),a.getMonth(),a.getDate())}function e(a,b){return a.getUTCFullYear()===b.getUTCFullYear()&&a.getUTCMonth()===b.getUTCMonth()&&a.getUTCDate()===b.getUTCDate()}function f(c,d){return function(){return d!==b&&a.fn.datepicker.deprecated(d),this[c].apply(this,arguments)}}function g(a){return a&&!isNaN(a.getTime())}function h(b,c){function d(a,b){return b.toLowerCase()}var e,f=a(b).data(),g={},h=new RegExp("^"+c.toLowerCase()+"([A-Z])");c=new RegExp("^"+c.toLowerCase());for(var i in f)c.test(i)&&(e=i.replace(h,d),g[e]=f[i]);return g}function i(b){var c={};if(q[b]||(b=b.split("-")[0],q[b])){var d=q[b];return a.each(p,function(a,b){b in d&&(c[b]=d[b])}),c}}var j=function(){var b={get:function(a){return this.slice(a)[0]},contains:function(a){for(var b=a&&a.valueOf(),c=0,d=this.length;c]/g)||[]).length<=0)return!0;return a(c).length>0}catch(a){return!1}},_process_options:function(b){this._o=a.extend({},this._o,b);var e=this.o=a.extend({},this._o),f=e.language;q[f]||(f=f.split("-")[0],q[f]||(f=o.language)),e.language=f,e.startView=this._resolveViewName(e.startView),e.minViewMode=this._resolveViewName(e.minViewMode),e.maxViewMode=this._resolveViewName(e.maxViewMode),e.startView=Math.max(this.o.minViewMode,Math.min(this.o.maxViewMode,e.startView)),!0!==e.multidate&&(e.multidate=Number(e.multidate)||!1,!1!==e.multidate&&(e.multidate=Math.max(0,e.multidate))),e.multidateSeparator=String(e.multidateSeparator),e.weekStart%=7,e.weekEnd=(e.weekStart+6)%7;var g=r.parseFormat(e.format);e.startDate!==-1/0&&(e.startDate?e.startDate instanceof Date?e.startDate=this._local_to_utc(this._zero_time(e.startDate)):e.startDate=r.parseDate(e.startDate,g,e.language,e.assumeNearbyYear):e.startDate=-1/0),e.endDate!==1/0&&(e.endDate?e.endDate instanceof Date?e.endDate=this._local_to_utc(this._zero_time(e.endDate)):e.endDate=r.parseDate(e.endDate,g,e.language,e.assumeNearbyYear):e.endDate=1/0),e.daysOfWeekDisabled=this._resolveDaysOfWeek(e.daysOfWeekDisabled||[]),e.daysOfWeekHighlighted=this._resolveDaysOfWeek(e.daysOfWeekHighlighted||[]),e.datesDisabled=e.datesDisabled||[],a.isArray(e.datesDisabled)||(e.datesDisabled=e.datesDisabled.split(",")),e.datesDisabled=a.map(e.datesDisabled,function(a){return r.parseDate(a,g,e.language,e.assumeNearbyYear)});var h=String(e.orientation).toLowerCase().split(/\s+/g),i=e.orientation.toLowerCase();if(h=a.grep(h,function(a){return/^auto|left|right|top|bottom$/.test(a)}),e.orientation={x:"auto",y:"auto"},i&&"auto"!==i)if(1===h.length)switch(h[0]){case"top":case"bottom":e.orientation.y=h[0];break;case"left":case"right":e.orientation.x=h[0]}else i=a.grep(h,function(a){return/^left|right$/.test(a)}),e.orientation.x=i[0]||"auto",i=a.grep(h,function(a){return/^top|bottom$/.test(a)}),e.orientation.y=i[0]||"auto";else;if(e.defaultViewDate instanceof Date||"string"==typeof e.defaultViewDate)e.defaultViewDate=r.parseDate(e.defaultViewDate,g,e.language,e.assumeNearbyYear);else if(e.defaultViewDate){var j=e.defaultViewDate.year||(new Date).getFullYear(),k=e.defaultViewDate.month||0,l=e.defaultViewDate.day||1;e.defaultViewDate=c(j,k,l)}else e.defaultViewDate=d()},_applyEvents:function(a){for(var c,d,e,f=0;fe?(this.picker.addClass("datepicker-orient-right"),m+=l-b):this.o.rtl?this.picker.addClass("datepicker-orient-right"):this.picker.addClass("datepicker-orient-left");var o,p=this.o.orientation.y;if("auto"===p&&(o=-f+n-c,p=o<0?"bottom":"top"),this.picker.addClass("datepicker-orient-"+p),"top"===p?n-=c+parseInt(this.picker.css("padding-top")):n+=k,this.o.rtl){var q=e-(m+l);this.picker.css({top:n,right:q,zIndex:i})}else this.picker.css({top:n,left:m,zIndex:i});return this},_allow_update:!0,update:function(){if(!this._allow_update)return this;var b=this.dates.copy(),c=[],d=!1;return arguments.length?(a.each(arguments,a.proxy(function(a,b){b instanceof Date&&(b=this._local_to_utc(b)),c.push(b)},this)),d=!0):(c=this.isInput?this.element.val():this.element.data("date")||this.inputField.val(),c=c&&this.o.multidate?c.split(this.o.multidateSeparator):[c],delete this.element.data().date),c=a.map(c,a.proxy(function(a){return r.parseDate(a,this.o.format,this.o.language,this.o.assumeNearbyYear)},this)),c=a.grep(c,a.proxy(function(a){return!this.dateWithinRange(a)||!a},this),!0),this.dates.replace(c),this.o.updateViewDate&&(this.dates.length?this.viewDate=new Date(this.dates.get(-1)):this.viewDatethis.o.endDate?this.viewDate=new Date(this.o.endDate):this.viewDate=this.o.defaultViewDate),d?(this.setValue(),this.element.change()):this.dates.length&&String(b)!==String(this.dates)&&d&&(this._trigger("changeDate"),this.element.change()),!this.dates.length&&b.length&&(this._trigger("clearDate"),this.element.change()),this.fill(),this},fillDow:function(){if(this.o.showWeekDays){var b=this.o.weekStart,c="";for(this.o.calendarWeeks&&(c+=' ');b";c+="",this.picker.find(".datepicker-days thead").append(c)}},fillMonths:function(){for(var a,b=this._utc_to_local(this.viewDate),c="",d=0;d<12;d++)a=b&&b.getMonth()===d?" focused":"",c+=''+q[this.o.language].monthsShort[d]+"";this.picker.find(".datepicker-months td").html(c)},setRange:function(b){b&&b.length?this.range=a.map(b,function(a){return a.valueOf()}):delete this.range,this.fill()},getClassNames:function(b){var c=[],f=this.viewDate.getUTCFullYear(),g=this.viewDate.getUTCMonth(),h=d();return b.getUTCFullYear()f||b.getUTCFullYear()===f&&b.getUTCMonth()>g)&&c.push("new"),this.focusDate&&b.valueOf()===this.focusDate.valueOf()&&c.push("focused"),this.o.todayHighlight&&e(b,h)&&c.push("today"),-1!==this.dates.contains(b)&&c.push("active"),this.dateWithinRange(b)||c.push("disabled"),this.dateIsDisabled(b)&&c.push("disabled","disabled-date"),-1!==a.inArray(b.getUTCDay(),this.o.daysOfWeekHighlighted)&&c.push("highlighted"),this.range&&(b>this.range[0]&&bh)&&j.push("disabled"),t===r&&j.push("focused"),i!==a.noop&&(l=i(new Date(t,0,1)),l===b?l={}:"boolean"==typeof l?l={enabled:l}:"string"==typeof l&&(l={classes:l}),!1===l.enabled&&j.push("disabled"),l.classes&&(j=j.concat(l.classes.split(/\s+/))),l.tooltip&&(k=l.tooltip)),m+='"+t+"";o.find(".datepicker-switch").text(p+"-"+q),o.find("td").html(m)},fill:function(){var e,f,g=new Date(this.viewDate),h=g.getUTCFullYear(),i=g.getUTCMonth(),j=this.o.startDate!==-1/0?this.o.startDate.getUTCFullYear():-1/0,k=this.o.startDate!==-1/0?this.o.startDate.getUTCMonth():-1/0,l=this.o.endDate!==1/0?this.o.endDate.getUTCFullYear():1/0,m=this.o.endDate!==1/0?this.o.endDate.getUTCMonth():1/0,n=q[this.o.language].today||q.en.today||"",o=q[this.o.language].clear||q.en.clear||"",p=q[this.o.language].titleFormat||q.en.titleFormat,s=d(),t=(!0===this.o.todayBtn||"linked"===this.o.todayBtn)&&s>=this.o.startDate&&s<=this.o.endDate&&!this.weekOfDateIsDisabled(s);if(!isNaN(h)&&!isNaN(i)){this.picker.find(".datepicker-days .datepicker-switch").text(r.formatDate(g,p,this.o.language)),this.picker.find("tfoot .today").text(n).css("display",t?"table-cell":"none"),this.picker.find("tfoot .clear").text(o).css("display",!0===this.o.clearBtn?"table-cell":"none"),this.picker.find("thead .datepicker-title").text(this.o.title).css("display","string"==typeof this.o.title&&""!==this.o.title?"table-cell":"none"),this.updateNavArrows(),this.fillMonths();var u=c(h,i,0),v=u.getUTCDate();u.setUTCDate(v-(u.getUTCDay()-this.o.weekStart+7)%7);var w=new Date(u);u.getUTCFullYear()<100&&w.setUTCFullYear(u.getUTCFullYear()),w.setUTCDate(w.getUTCDate()+42),w=w.valueOf();for(var x,y,z=[];u.valueOf()"),this.o.calendarWeeks)){var A=new Date(+u+(this.o.weekStart-x-7)%7*864e5),B=new Date(Number(A)+(11-A.getUTCDay())%7*864e5),C=new Date(Number(C=c(B.getUTCFullYear(),0,1))+(11-C.getUTCDay())%7*864e5),D=(B-C)/864e5/7+1;z.push(''+D+"")}y=this.getClassNames(u),y.push("day");var E=u.getUTCDate();this.o.beforeShowDay!==a.noop&&(f=this.o.beforeShowDay(this._utc_to_local(u)),f===b?f={}:"boolean"==typeof f?f={enabled:f}:"string"==typeof f&&(f={classes:f}),!1===f.enabled&&y.push("disabled"),f.classes&&(y=y.concat(f.classes.split(/\s+/))),f.tooltip&&(e=f.tooltip),f.content&&(E=f.content)),y=a.isFunction(a.uniqueSort)?a.uniqueSort(y):a.unique(y),z.push(''+E+""),e=null,x===this.o.weekEnd&&z.push(""),u.setUTCDate(u.getUTCDate()+1)}this.picker.find(".datepicker-days tbody").html(z.join(""));var F=q[this.o.language].monthsTitle||q.en.monthsTitle||"Months",G=this.picker.find(".datepicker-months").find(".datepicker-switch").text(this.o.maxViewMode<2?F:h).end().find("tbody span").removeClass("active");if(a.each(this.dates,function(a,b){b.getUTCFullYear()===h&&G.eq(b.getUTCMonth()).addClass("active")}),(hl)&&G.addClass("disabled"),h===j&&G.slice(0,k).addClass("disabled"),h===l&&G.slice(m+1).addClass("disabled"),this.o.beforeShowMonth!==a.noop){var H=this;a.each(G,function(c,d){var e=new Date(h,c,1),f=H.o.beforeShowMonth(e);f===b?f={}:"boolean"==typeof f?f={enabled:f}:"string"==typeof f&&(f={classes:f}),!1!==f.enabled||a(d).hasClass("disabled")||a(d).addClass("disabled"),f.classes&&a(d).addClass(f.classes),f.tooltip&&a(d).prop("title",f.tooltip)})}this._fill_yearsView(".datepicker-years","year",10,h,j,l,this.o.beforeShowYear),this._fill_yearsView(".datepicker-decades","decade",100,h,j,l,this.o.beforeShowDecade),this._fill_yearsView(".datepicker-centuries","century",1e3,h,j,l,this.o.beforeShowCentury)}},updateNavArrows:function(){if(this._allow_update){var a,b,c=new Date(this.viewDate),d=c.getUTCFullYear(),e=c.getUTCMonth(),f=this.o.startDate!==-1/0?this.o.startDate.getUTCFullYear():-1/0,g=this.o.startDate!==-1/0?this.o.startDate.getUTCMonth():-1/0,h=this.o.endDate!==1/0?this.o.endDate.getUTCFullYear():1/0,i=this.o.endDate!==1/0?this.o.endDate.getUTCMonth():1/0,j=1;switch(this.viewMode){case 4:j*=10;case 3:j*=10;case 2:j*=10;case 1:a=Math.floor(d/j)*j<=f,b=Math.floor(d/j)*j+j>h;break;case 0:a=d<=f&&e<=g,b=d>=h&&e>=i}this.picker.find(".prev").toggleClass("disabled",a),this.picker.find(".next").toggleClass("disabled",b)}},click:function(b){b.preventDefault(),b.stopPropagation();var e,f,g,h;e=a(b.target),e.hasClass("datepicker-switch")&&this.viewMode!==this.o.maxViewMode&&this.setViewMode(this.viewMode+1),e.hasClass("today")&&!e.hasClass("day")&&(this.setViewMode(0),this._setDate(d(),"linked"===this.o.todayBtn?null:"view")),e.hasClass("clear")&&this.clearDates(),e.hasClass("disabled")||(e.hasClass("month")||e.hasClass("year")||e.hasClass("decade")||e.hasClass("century"))&&(this.viewDate.setUTCDate(1),f=1,1===this.viewMode?(h=e.parent().find("span").index(e),g=this.viewDate.getUTCFullYear(),this.viewDate.setUTCMonth(h)):(h=0,g=Number(e.text()),this.viewDate.setUTCFullYear(g)),this._trigger(r.viewModes[this.viewMode-1].e,this.viewDate),this.viewMode===this.o.minViewMode?this._setDate(c(g,h,f)):(this.setViewMode(this.viewMode-1),this.fill())),this.picker.is(":visible")&&this._focused_from&&this._focused_from.focus(),delete this._focused_from},dayCellClick:function(b){var c=a(b.currentTarget),d=c.data("date"),e=new Date(d);this.o.updateViewDate&&(e.getUTCFullYear()!==this.viewDate.getUTCFullYear()&&this._trigger("changeYear",this.viewDate),e.getUTCMonth()!==this.viewDate.getUTCMonth()&&this._trigger("changeMonth",this.viewDate)),this._setDate(e)},navArrowsClick:function(b){var c=a(b.currentTarget),d=c.hasClass("prev")?-1:1;0!==this.viewMode&&(d*=12*r.viewModes[this.viewMode].navStep),this.viewDate=this.moveMonth(this.viewDate,d),this._trigger(r.viewModes[this.viewMode].e,this.viewDate),this.fill()},_toggle_multidate:function(a){var b=this.dates.contains(a);if(a||this.dates.clear(),-1!==b?(!0===this.o.multidate||this.o.multidate>1||this.o.toggleActive)&&this.dates.remove(b):!1===this.o.multidate?(this.dates.clear(),this.dates.push(a)):this.dates.push(a),"number"==typeof this.o.multidate)for(;this.dates.length>this.o.multidate;)this.dates.remove(0)},_setDate:function(a,b){b&&"date"!==b||this._toggle_multidate(a&&new Date(a)),(!b&&this.o.updateViewDate||"view"===b)&&(this.viewDate=a&&new Date(a)),this.fill(),this.setValue(),b&&"view"===b||this._trigger("changeDate"),this.inputField.trigger("change"),!this.o.autoclose||b&&"date"!==b||this.hide()},moveDay:function(a,b){var c=new Date(a);return c.setUTCDate(a.getUTCDate()+b),c},moveWeek:function(a,b){return this.moveDay(a,7*b)},moveMonth:function(a,b){if(!g(a))return this.o.defaultViewDate;if(!b)return a;var c,d,e=new Date(a.valueOf()),f=e.getUTCDate(),h=e.getUTCMonth(),i=Math.abs(b);if(b=b>0?1:-1,1===i)d=-1===b?function(){return e.getUTCMonth()===h}:function(){return e.getUTCMonth()!==c},c=h+b,e.setUTCMonth(c),c=(c+12)%12;else{for(var j=0;j0},dateWithinRange:function(a){return a>=this.o.startDate&&a<=this.o.endDate},keydown:function(a){if(!this.picker.is(":visible"))return void(40!==a.keyCode&&27!==a.keyCode||(this.show(),a.stopPropagation()));var b,c,d=!1,e=this.focusDate||this.viewDate;switch(a.keyCode){case 27:this.focusDate?(this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill()):this.hide(),a.preventDefault(),a.stopPropagation();break;case 37:case 38:case 39:case 40:if(!this.o.keyboardNavigation||7===this.o.daysOfWeekDisabled.length)break;b=37===a.keyCode||38===a.keyCode?-1:1,0===this.viewMode?a.ctrlKey?(c=this.moveAvailableDate(e,b,"moveYear"))&&this._trigger("changeYear",this.viewDate):a.shiftKey?(c=this.moveAvailableDate(e,b,"moveMonth"))&&this._trigger("changeMonth",this.viewDate):37===a.keyCode||39===a.keyCode?c=this.moveAvailableDate(e,b,"moveDay"):this.weekOfDateIsDisabled(e)||(c=this.moveAvailableDate(e,b,"moveWeek")):1===this.viewMode?(38!==a.keyCode&&40!==a.keyCode||(b*=4),c=this.moveAvailableDate(e,b,"moveMonth")):2===this.viewMode&&(38!==a.keyCode&&40!==a.keyCode||(b*=4),c=this.moveAvailableDate(e,b,"moveYear")),c&&(this.focusDate=this.viewDate=c,this.setValue(),this.fill(),a.preventDefault());break;case 13:if(!this.o.forceParse)break;e=this.focusDate||this.dates.get(-1)||this.viewDate,this.o.keyboardNavigation&&(this._toggle_multidate(e),d=!0),this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.setValue(),this.fill(),this.picker.is(":visible")&&(a.preventDefault(),a.stopPropagation(),this.o.autoclose&&this.hide());break;case 9:this.focusDate=null,this.viewDate=this.dates.get(-1)||this.viewDate,this.fill(),this.hide()}d&&(this.dates.length?this._trigger("changeDate"):this._trigger("clearDate"),this.inputField.trigger("change"))},setViewMode:function(a){this.viewMode=a,this.picker.children("div").hide().filter(".datepicker-"+r.viewModes[this.viewMode].clsName).show(),this.updateNavArrows(),this._trigger("changeViewMode",new Date(this.viewDate))}};var l=function(b,c){a.data(b,"datepicker",this),this.element=a(b),this.inputs=a.map(c.inputs,function(a){return a.jquery?a[0]:a}),delete c.inputs,this.keepEmptyValues=c.keepEmptyValues,delete c.keepEmptyValues,n.call(a(this.inputs),c).on("changeDate",a.proxy(this.dateUpdated,this)),this.pickers=a.map(this.inputs,function(b){return a.data(b,"datepicker")}),this.updateDates()};l.prototype={updateDates:function(){this.dates=a.map(this.pickers,function(a){return a.getUTCDate()}),this.updateRanges()},updateRanges:function(){var b=a.map(this.dates,function(a){return a.valueOf()});a.each(this.pickers,function(a,c){c.setRange(b)})},clearDates:function(){a.each(this.pickers,function(a,b){b.clearDates()})},dateUpdated:function(c){if(!this.updating){this.updating=!0;var d=a.data(c.target,"datepicker");if(d!==b){var e=d.getUTCDate(),f=this.keepEmptyValues,g=a.inArray(c.target,this.inputs),h=g-1,i=g+1,j=this.inputs.length;if(-1!==g){if(a.each(this.pickers,function(a,b){b.getUTCDate()||b!==d&&f||b.setUTCDate(e)}),e=0&&ethis.dates[i])for(;ithis.dates[i];)this.pickers[i++].setUTCDate(e);this.updateDates(),delete this.updating}}}},destroy:function(){a.map(this.pickers,function(a){a.destroy()}),a(this.inputs).off("changeDate",this.dateUpdated),delete this.element.data().datepicker},remove:f("destroy","Method `remove` is deprecated and will be removed in version 2.0. Use `destroy` instead")};var m=a.fn.datepicker,n=function(c){var d=Array.apply(null,arguments);d.shift();var e;if(this.each(function(){var b=a(this),f=b.data("datepicker"),g="object"==typeof c&&c;if(!f){var j=h(this,"date"),m=a.extend({},o,j,g),n=i(m.language),p=a.extend({},o,n,j,g);b.hasClass("input-daterange")||p.inputs?(a.extend(p,{inputs:p.inputs||b.find("input").toArray()}),f=new l(this,p)):f=new k(this,p),b.data("datepicker",f)}"string"==typeof c&&"function"==typeof f[c]&&(e=f[c].apply(f,d))}),e===b||e instanceof k||e instanceof l)return this;if(this.length>1)throw new Error("Using only allowed for the collection of a single element ("+c+" function)");return e};a.fn.datepicker=n;var o=a.fn.datepicker.defaults={assumeNearbyYear:!1,autoclose:!1,beforeShowDay:a.noop,beforeShowMonth:a.noop,beforeShowYear:a.noop,beforeShowDecade:a.noop,beforeShowCentury:a.noop,calendarWeeks:!1,clearBtn:!1,toggleActive:!1,daysOfWeekDisabled:[],daysOfWeekHighlighted:[],datesDisabled:[],endDate:1/0,forceParse:!0,format:"mm/dd/yyyy",keepEmptyValues:!1,keyboardNavigation:!0,language:"en",minViewMode:0,maxViewMode:4,multidate:!1,multidateSeparator:",",orientation:"auto",rtl:!1,startDate:-1/0,startView:0,todayBtn:!1,todayHighlight:!1,updateViewDate:!0,weekStart:0,disableTouchKeyboard:!1,enableOnReadonly:!0,showOnFocus:!0,zIndexOffset:10,container:"body",immediateUpdates:!1,title:"",templates:{leftArrow:"«",rightArrow:"»"},showWeekDays:!0},p=a.fn.datepicker.locale_opts=["format","rtl","weekStart"];a.fn.datepicker.Constructor=k;var q=a.fn.datepicker.dates={en:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",clear:"Clear",titleFormat:"MM yyyy"}},r={viewModes:[{names:["days","month"],clsName:"days",e:"changeMonth"},{names:["months","year"],clsName:"months",e:"changeYear",navStep:1},{names:["years","decade"],clsName:"years",e:"changeDecade",navStep:10},{names:["decades","century"],clsName:"decades",e:"changeCentury",navStep:100},{names:["centuries","millennium"],clsName:"centuries",e:"changeMillennium",navStep:1e3}],validParts:/dd?|DD?|mm?|MM?|yy(?:yy)?/g,nonpunctuation:/[^ -\/:-@\u5e74\u6708\u65e5\[-`{-~\t\n\r]+/g,parseFormat:function(a){if("function"==typeof a.toValue&&"function"==typeof a.toDisplay)return a;var b=a.replace(this.validParts,"\0").split("\0"),c=a.match(this.validParts);if(!b||!b.length||!c||0===c.length)throw new Error("Invalid date format.");return{separators:b,parts:c}},parseDate:function(c,e,f,g){function h(a,b){return!0===b&&(b=10),a<100&&(a+=2e3)>(new Date).getFullYear()+b&&(a-=100),a}function i(){var a=this.slice(0,j[n].length),b=j[n].slice(0,a.length);return a.toLowerCase()===b.toLowerCase()}if(!c)return b;if(c instanceof Date)return c;if("string"==typeof e&&(e=r.parseFormat(e)),e.toValue)return e.toValue(c,e,f);var j,l,m,n,o,p={d:"moveDay",m:"moveMonth",w:"moveWeek",y:"moveYear"},s={yesterday:"-1d",today:"+0d",tomorrow:"+1d"};if(c in s&&(c=s[c]),/^[\-+]\d+[dmwy]([\s,]+[\-+]\d+[dmwy])*$/i.test(c)){for(j=c.match(/([\-+]\d+)([dmwy])/gi),c=new Date,n=0;n'+o.templates.leftArrow+''+o.templates.rightArrow+"",contTemplate:'',footTemplate:''};r.template='
'+r.headTemplate+""+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+'
'+r.headTemplate+r.contTemplate+r.footTemplate+"
",a.fn.datepicker.DPGlobal=r,a.fn.datepicker.noConflict=function(){return a.fn.datepicker=m,this},a.fn.datepicker.version="1.9.0",a.fn.datepicker.deprecated=function(a){var b=window.console;b&&b.warn&&b.warn("DEPRECATED: "+a)},a(document).on("focus.datepicker.data-api click.datepicker.data-api",'[data-provide="datepicker"]',function(b){var c=a(this);c.data("datepicker")||(b.preventDefault(),n.call(c,"show"))}),a(function(){n.call(a('[data-provide="datepicker-inline"]'))})}); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/dropzone/dropzone.css b/app/frontend/static/assets/vendors/dropzone/dropzone.css deleted file mode 100755 index 0494d1cc..00000000 --- a/app/frontend/static/assets/vendors/dropzone/dropzone.css +++ /dev/null @@ -1,388 +0,0 @@ -/* - * The MIT License - * Copyright (c) 2012 Matias Meno - */ -@-webkit-keyframes passing-through { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30%, 70% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } - 100% { - opacity: 0; - -webkit-transform: translateY(-40px); - -moz-transform: translateY(-40px); - -ms-transform: translateY(-40px); - -o-transform: translateY(-40px); - transform: translateY(-40px); } } -@-moz-keyframes passing-through { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30%, 70% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } - 100% { - opacity: 0; - -webkit-transform: translateY(-40px); - -moz-transform: translateY(-40px); - -ms-transform: translateY(-40px); - -o-transform: translateY(-40px); - transform: translateY(-40px); } } -@keyframes passing-through { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30%, 70% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } - 100% { - opacity: 0; - -webkit-transform: translateY(-40px); - -moz-transform: translateY(-40px); - -ms-transform: translateY(-40px); - -o-transform: translateY(-40px); - transform: translateY(-40px); } } -@-webkit-keyframes slide-in { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } } -@-moz-keyframes slide-in { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } } -@keyframes slide-in { - 0% { - opacity: 0; - -webkit-transform: translateY(40px); - -moz-transform: translateY(40px); - -ms-transform: translateY(40px); - -o-transform: translateY(40px); - transform: translateY(40px); } - 30% { - opacity: 1; - -webkit-transform: translateY(0px); - -moz-transform: translateY(0px); - -ms-transform: translateY(0px); - -o-transform: translateY(0px); - transform: translateY(0px); } } -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } - 10% { - -webkit-transform: scale(1.1); - -moz-transform: scale(1.1); - -ms-transform: scale(1.1); - -o-transform: scale(1.1); - transform: scale(1.1); } - 20% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } } -@-moz-keyframes pulse { - 0% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } - 10% { - -webkit-transform: scale(1.1); - -moz-transform: scale(1.1); - -ms-transform: scale(1.1); - -o-transform: scale(1.1); - transform: scale(1.1); } - 20% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } } -@keyframes pulse { - 0% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } - 10% { - -webkit-transform: scale(1.1); - -moz-transform: scale(1.1); - -ms-transform: scale(1.1); - -o-transform: scale(1.1); - transform: scale(1.1); } - 20% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); } } -.dropzone, .dropzone * { - box-sizing: border-box; } - -.dropzone { - min-height: 150px; - border: 2px solid rgba(0, 0, 0, 0.3); - background: white; - padding: 20px 20px; } - .dropzone.dz-clickable { - cursor: pointer; } - .dropzone.dz-clickable * { - cursor: default; } - .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * { - cursor: pointer; } - .dropzone.dz-started .dz-message { - display: none; } - .dropzone.dz-drag-hover { - border-style: solid; } - .dropzone.dz-drag-hover .dz-message { - opacity: 0.5; } - .dropzone .dz-message { - text-align: center; - margin: 2em 0; } - .dropzone .dz-preview { - position: relative; - display: inline-block; - vertical-align: top; - margin: 16px; - min-height: 100px; } - .dropzone .dz-preview:hover { - z-index: 1000; } - .dropzone .dz-preview:hover .dz-details { - opacity: 1; } - .dropzone .dz-preview.dz-file-preview .dz-image { - border-radius: 20px; - background: #999; - background: linear-gradient(to bottom, #eee, #ddd); } - .dropzone .dz-preview.dz-file-preview .dz-details { - opacity: 1; } - .dropzone .dz-preview.dz-image-preview { - background: white; } - .dropzone .dz-preview.dz-image-preview .dz-details { - -webkit-transition: opacity 0.2s linear; - -moz-transition: opacity 0.2s linear; - -ms-transition: opacity 0.2s linear; - -o-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; } - .dropzone .dz-preview .dz-remove { - font-size: 14px; - text-align: center; - display: block; - cursor: pointer; - border: none; } - .dropzone .dz-preview .dz-remove:hover { - text-decoration: underline; } - .dropzone .dz-preview:hover .dz-details { - opacity: 1; } - .dropzone .dz-preview .dz-details { - z-index: 20; - position: absolute; - top: 0; - left: 0; - opacity: 0; - font-size: 13px; - min-width: 100%; - max-width: 100%; - padding: 2em 1em; - text-align: center; - color: rgba(0, 0, 0, 0.9); - line-height: 150%; } - .dropzone .dz-preview .dz-details .dz-size { - margin-bottom: 1em; - font-size: 16px; } - .dropzone .dz-preview .dz-details .dz-filename { - white-space: nowrap; } - .dropzone .dz-preview .dz-details .dz-filename:hover span { - border: 1px solid rgba(200, 200, 200, 0.8); - background-color: rgba(255, 255, 255, 0.8); } - .dropzone .dz-preview .dz-details .dz-filename:not(:hover) { - overflow: hidden; - text-overflow: ellipsis; } - .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span { - border: 1px solid transparent; } - .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span { - background-color: rgba(255, 255, 255, 0.4); - padding: 0 0.4em; - border-radius: 3px; } - .dropzone .dz-preview:hover .dz-image img { - -webkit-transform: scale(1.05, 1.05); - -moz-transform: scale(1.05, 1.05); - -ms-transform: scale(1.05, 1.05); - -o-transform: scale(1.05, 1.05); - transform: scale(1.05, 1.05); - -webkit-filter: blur(8px); - filter: blur(8px); } - .dropzone .dz-preview .dz-image { - border-radius: 20px; - overflow: hidden; - width: 120px; - height: 120px; - position: relative; - display: block; - z-index: 10; } - .dropzone .dz-preview .dz-image img { - display: block; } - .dropzone .dz-preview.dz-success .dz-success-mark { - -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); - -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); - -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); - -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); - animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); } - .dropzone .dz-preview.dz-error .dz-error-mark { - opacity: 1; - -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); - -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); - -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); - -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); - animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); } - .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark { - pointer-events: none; - opacity: 0; - z-index: 500; - position: absolute; - display: block; - top: 50%; - left: 50%; - margin-left: -27px; - margin-top: -27px; } - .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg { - display: block; - width: 54px; - height: 54px; } - .dropzone .dz-preview.dz-processing .dz-progress { - opacity: 1; - -webkit-transition: all 0.2s linear; - -moz-transition: all 0.2s linear; - -ms-transition: all 0.2s linear; - -o-transition: all 0.2s linear; - transition: all 0.2s linear; } - .dropzone .dz-preview.dz-complete .dz-progress { - opacity: 0; - -webkit-transition: opacity 0.4s ease-in; - -moz-transition: opacity 0.4s ease-in; - -ms-transition: opacity 0.4s ease-in; - -o-transition: opacity 0.4s ease-in; - transition: opacity 0.4s ease-in; } - .dropzone .dz-preview:not(.dz-processing) .dz-progress { - -webkit-animation: pulse 6s ease infinite; - -moz-animation: pulse 6s ease infinite; - -ms-animation: pulse 6s ease infinite; - -o-animation: pulse 6s ease infinite; - animation: pulse 6s ease infinite; } - .dropzone .dz-preview .dz-progress { - opacity: 1; - z-index: 1000; - pointer-events: none; - position: absolute; - height: 16px; - left: 50%; - top: 50%; - margin-top: -8px; - width: 80px; - margin-left: -40px; - background: rgba(255, 255, 255, 0.9); - -webkit-transform: scale(1); - border-radius: 8px; - overflow: hidden; } - .dropzone .dz-preview .dz-progress .dz-upload { - background: #333; - background: linear-gradient(to bottom, #666, #444); - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 0; - -webkit-transition: width 300ms ease-in-out; - -moz-transition: width 300ms ease-in-out; - -ms-transition: width 300ms ease-in-out; - -o-transition: width 300ms ease-in-out; - transition: width 300ms ease-in-out; } - .dropzone .dz-preview.dz-error .dz-error-message { - display: block; } - .dropzone .dz-preview.dz-error:hover .dz-error-message { - opacity: 1; - pointer-events: auto; } - .dropzone .dz-preview .dz-error-message { - pointer-events: none; - z-index: 1000; - position: absolute; - display: block; - display: none; - opacity: 0; - -webkit-transition: opacity 0.3s ease; - -moz-transition: opacity 0.3s ease; - -ms-transition: opacity 0.3s ease; - -o-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; - border-radius: 8px; - font-size: 13px; - top: 130px; - left: -10px; - width: 140px; - background: #be2626; - background: linear-gradient(to bottom, #be2626, #a92222); - padding: 0.5em 1.2em; - color: white; } - .dropzone .dz-preview .dz-error-message:after { - content: ''; - position: absolute; - top: -6px; - left: 64px; - width: 0; - height: 0; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #be2626; } diff --git a/app/frontend/static/assets/vendors/dropzone/dropzone.js b/app/frontend/static/assets/vendors/dropzone/dropzone.js deleted file mode 100755 index 96483442..00000000 --- a/app/frontend/static/assets/vendors/dropzone/dropzone.js +++ /dev/null @@ -1,3530 +0,0 @@ -"use strict"; - -var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - -function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } - -function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - -/* - * - * More info at [www.dropzonejs.com](http://www.dropzonejs.com) - * - * Copyright (c) 2012, Matias Meno - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - * THE SOFTWARE. - * - */ - -// The Emitter class provides the ability to call `.on()` on Dropzone to listen -// to events. -// It is strongly based on component's emitter class, and I removed the -// functionality because of the dependency hell with different frameworks. -var Emitter = function () { - function Emitter() { - _classCallCheck(this, Emitter); - } - - _createClass(Emitter, [{ - key: "on", - - // Add an event listener for given event - value: function on(event, fn) { - this._callbacks = this._callbacks || {}; - // Create namespace for this event - if (!this._callbacks[event]) { - this._callbacks[event] = []; - } - this._callbacks[event].push(fn); - return this; - } - }, { - key: "emit", - value: function emit(event) { - this._callbacks = this._callbacks || {}; - var callbacks = this._callbacks[event]; - - if (callbacks) { - for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - args[_key - 1] = arguments[_key]; - } - - for (var _iterator = callbacks, _isArray = true, _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) { - var _ref; - - if (_isArray) { - if (_i >= _iterator.length) break; - _ref = _iterator[_i++]; - } else { - _i = _iterator.next(); - if (_i.done) break; - _ref = _i.value; - } - - var callback = _ref; - - callback.apply(this, args); - } - } - - return this; - } - - // Remove event listener for given event. If fn is not provided, all event - // listeners for that event will be removed. If neither is provided, all - // event listeners will be removed. - - }, { - key: "off", - value: function off(event, fn) { - if (!this._callbacks || arguments.length === 0) { - this._callbacks = {}; - return this; - } - - // specific event - var callbacks = this._callbacks[event]; - if (!callbacks) { - return this; - } - - // remove all handlers - if (arguments.length === 1) { - delete this._callbacks[event]; - return this; - } - - // remove specific handler - for (var i = 0; i < callbacks.length; i++) { - var callback = callbacks[i]; - if (callback === fn) { - callbacks.splice(i, 1); - break; - } - } - - return this; - } - }]); - - return Emitter; -}(); - -var Dropzone = function (_Emitter) { - _inherits(Dropzone, _Emitter); - - _createClass(Dropzone, null, [{ - key: "initClass", - value: function initClass() { - - // Exposing the emitter class, mainly for tests - this.prototype.Emitter = Emitter; - - /* - This is a list of all available events you can register on a dropzone object. - You can register an event handler like this: - dropzone.on("dragEnter", function() { }); - */ - this.prototype.events = ["drop", "dragstart", "dragend", "dragenter", "dragover", "dragleave", "addedfile", "addedfiles", "removedfile", "thumbnail", "error", "errormultiple", "processing", "processingmultiple", "uploadprogress", "totaluploadprogress", "sending", "sendingmultiple", "success", "successmultiple", "canceled", "canceledmultiple", "complete", "completemultiple", "reset", "maxfilesexceeded", "maxfilesreached", "queuecomplete"]; - - this.prototype.defaultOptions = { - /** - * Has to be specified on elements other than form (or when the form - * doesn't have an `action` attribute). You can also - * provide a function that will be called with `files` and - * must return the url (since `v3.12.0`) - */ - url: null, - - /** - * Can be changed to `"put"` if necessary. You can also provide a function - * that will be called with `files` and must return the method (since `v3.12.0`). - */ - method: "post", - - /** - * Will be set on the XHRequest. - */ - withCredentials: false, - - /** - * The timeout for the XHR requests in milliseconds (since `v4.4.0`). - */ - timeout: 30000, - - /** - * How many file uploads to process in parallel (See the - * Enqueuing file uploads* documentation section for more info) - */ - parallelUploads: 2, - - /** - * Whether to send multiple files in one request. If - * this it set to true, then the fallback file input element will - * have the `multiple` attribute as well. This option will - * also trigger additional events (like `processingmultiple`). See the events - * documentation section for more information. - */ - uploadMultiple: false, - - /** - * Whether you want files to be uploaded in chunks to your server. This can't be - * used in combination with `uploadMultiple`. - * - * See [chunksUploaded](#config-chunksUploaded) for the callback to finalise an upload. - */ - chunking: false, - - /** - * If `chunking` is enabled, this defines whether **every** file should be chunked, - * even if the file size is below chunkSize. This means, that the additional chunk - * form data will be submitted and the `chunksUploaded` callback will be invoked. - */ - forceChunking: false, - - /** - * If `chunking` is `true`, then this defines the chunk size in bytes. - */ - chunkSize: 2000000, - - /** - * If `true`, the individual chunks of a file are being uploaded simultaneously. - */ - parallelChunkUploads: false, - - /** - * Whether a chunk should be retried if it fails. - */ - retryChunks: false, - - /** - * If `retryChunks` is true, how many times should it be retried. - */ - retryChunksLimit: 3, - - /** - * If not `null` defines how many files this Dropzone handles. If it exceeds, - * the event `maxfilesexceeded` will be called. The dropzone element gets the - * class `dz-max-files-reached` accordingly so you can provide visual feedback. - */ - maxFilesize: 256, - - /** - * The name of the file param that gets transferred. - * **NOTE**: If you have the option `uploadMultiple` set to `true`, then - * Dropzone will append `[]` to the name. - */ - paramName: "file", - - /** - * Whether thumbnails for images should be generated - */ - createImageThumbnails: true, - - /** - * In MB. When the filename exceeds this limit, the thumbnail will not be generated. - */ - maxThumbnailFilesize: 10, - - /** - * If `null`, the ratio of the image will be used to calculate it. - */ - thumbnailWidth: 120, - - /** - * The same as `thumbnailWidth`. If both are null, images will not be resized. - */ - thumbnailHeight: 120, - - /** - * How the images should be scaled down in case both, `thumbnailWidth` and `thumbnailHeight` are provided. - * Can be either `contain` or `crop`. - */ - thumbnailMethod: 'crop', - - /** - * If set, images will be resized to these dimensions before being **uploaded**. - * If only one, `resizeWidth` **or** `resizeHeight` is provided, the original aspect - * ratio of the file will be preserved. - * - * The `options.transformFile` function uses these options, so if the `transformFile` function - * is overridden, these options don't do anything. - */ - resizeWidth: null, - - /** - * See `resizeWidth`. - */ - resizeHeight: null, - - /** - * The mime type of the resized image (before it gets uploaded to the server). - * If `null` the original mime type will be used. To force jpeg, for example, use `image/jpeg`. - * See `resizeWidth` for more information. - */ - resizeMimeType: null, - - /** - * The quality of the resized images. See `resizeWidth`. - */ - resizeQuality: 0.8, - - /** - * How the images should be scaled down in case both, `resizeWidth` and `resizeHeight` are provided. - * Can be either `contain` or `crop`. - */ - resizeMethod: 'contain', - - /** - * The base that is used to calculate the filesize. You can change this to - * 1024 if you would rather display kibibytes, mebibytes, etc... - * 1024 is technically incorrect, because `1024 bytes` are `1 kibibyte` not `1 kilobyte`. - * You can change this to `1024` if you don't care about validity. - */ - filesizeBase: 1000, - - /** - * Can be used to limit the maximum number of files that will be handled by this Dropzone - */ - maxFiles: null, - - /** - * An optional object to send additional headers to the server. Eg: - * `{ "My-Awesome-Header": "header value" }` - */ - headers: null, - - /** - * If `true`, the dropzone element itself will be clickable, if `false` - * nothing will be clickable. - * - * You can also pass an HTML element, a CSS selector (for multiple elements) - * or an array of those. In that case, all of those elements will trigger an - * upload when clicked. - */ - clickable: true, - - /** - * Whether hidden files in directories should be ignored. - */ - ignoreHiddenFiles: true, - - /** - * The default implementation of `accept` checks the file's mime type or - * extension against this list. This is a comma separated list of mime - * types or file extensions. - * - * Eg.: `image/*,application/pdf,.psd` - * - * If the Dropzone is `clickable` this option will also be used as - * [`accept`](https://developer.mozilla.org/en-US/docs/HTML/Element/input#attr-accept) - * parameter on the hidden file input as well. - */ - acceptedFiles: null, - - /** - * **Deprecated!** - * Use acceptedFiles instead. - */ - acceptedMimeTypes: null, - - /** - * If false, files will be added to the queue but the queue will not be - * processed automatically. - * This can be useful if you need some additional user input before sending - * files (or if you want want all files sent at once). - * If you're ready to send the file simply call `myDropzone.processQueue()`. - * - * See the [enqueuing file uploads](#enqueuing-file-uploads) documentation - * section for more information. - */ - autoProcessQueue: true, - - /** - * If false, files added to the dropzone will not be queued by default. - * You'll have to call `enqueueFile(file)` manually. - */ - autoQueue: true, - - /** - * If `true`, this will add a link to every file preview to remove or cancel (if - * already uploading) the file. The `dictCancelUpload`, `dictCancelUploadConfirmation` - * and `dictRemoveFile` options are used for the wording. - */ - addRemoveLinks: false, - - /** - * Defines where to display the file previews – if `null` the - * Dropzone element itself is used. Can be a plain `HTMLElement` or a CSS - * selector. The element should have the `dropzone-previews` class so - * the previews are displayed properly. - */ - previewsContainer: null, - - /** - * This is the element the hidden input field (which is used when clicking on the - * dropzone to trigger file selection) will be appended to. This might - * be important in case you use frameworks to switch the content of your page. - * - * Can be a selector string, or an element directly. - */ - hiddenInputContainer: "body", - - /** - * If null, no capture type will be specified - * If camera, mobile devices will skip the file selection and choose camera - * If microphone, mobile devices will skip the file selection and choose the microphone - * If camcorder, mobile devices will skip the file selection and choose the camera in video mode - * On apple devices multiple must be set to false. AcceptedFiles may need to - * be set to an appropriate mime type (e.g. "image/*", "audio/*", or "video/*"). - */ - capture: null, - - /** - * **Deprecated**. Use `renameFile` instead. - */ - renameFilename: null, - - /** - * A function that is invoked before the file is uploaded to the server and renames the file. - * This function gets the `File` as argument and can use the `file.name`. The actual name of the - * file that gets used during the upload can be accessed through `file.upload.filename`. - */ - renameFile: null, - - /** - * If `true` the fallback will be forced. This is very useful to test your server - * implementations first and make sure that everything works as - * expected without dropzone if you experience problems, and to test - * how your fallbacks will look. - */ - forceFallback: false, - - /** - * The text used before any files are dropped. - */ - dictDefaultMessage: "Drop files here to upload", - - /** - * The text that replaces the default message text it the browser is not supported. - */ - dictFallbackMessage: "Your browser does not support drag'n'drop file uploads.", - - /** - * The text that will be added before the fallback form. - * If you provide a fallback element yourself, or if this option is `null` this will - * be ignored. - */ - dictFallbackText: "Please use the fallback form below to upload your files like in the olden days.", - - /** - * If the filesize is too big. - * `{{filesize}}` and `{{maxFilesize}}` will be replaced with the respective configuration values. - */ - dictFileTooBig: "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.", - - /** - * If the file doesn't match the file type. - */ - dictInvalidFileType: "You can't upload files of this type.", - - /** - * If the server response was invalid. - * `{{statusCode}}` will be replaced with the servers status code. - */ - dictResponseError: "Server responded with {{statusCode}} code.", - - /** - * If `addRemoveLinks` is true, the text to be used for the cancel upload link. - */ - dictCancelUpload: "Cancel upload", - - /** - * The text that is displayed if an upload was manually canceled - */ - dictUploadCanceled: "Upload canceled.", - - /** - * If `addRemoveLinks` is true, the text to be used for confirmation when cancelling upload. - */ - dictCancelUploadConfirmation: "Are you sure you want to cancel this upload?", - - /** - * If `addRemoveLinks` is true, the text to be used to remove a file. - */ - dictRemoveFile: "Remove file", - - /** - * If this is not null, then the user will be prompted before removing a file. - */ - dictRemoveFileConfirmation: null, - - /** - * Displayed if `maxFiles` is st and exceeded. - * The string `{{maxFiles}}` will be replaced by the configuration value. - */ - dictMaxFilesExceeded: "You can not upload any more files.", - - /** - * Allows you to translate the different units. Starting with `tb` for terabytes and going down to - * `b` for bytes. - */ - dictFileSizeUnits: { tb: "TB", gb: "GB", mb: "MB", kb: "KB", b: "b" }, - /** - * Called when dropzone initialized - * You can add event listeners here - */ - init: function init() {}, - - - /** - * Can be an **object** of additional parameters to transfer to the server, **or** a `Function` - * that gets invoked with the `files`, `xhr` and, if it's a chunked upload, `chunk` arguments. In case - * of a function, this needs to return a map. - * - * The default implementation does nothing for normal uploads, but adds relevant information for - * chunked uploads. - * - * This is the same as adding hidden input fields in the form element. - */ - params: function params(files, xhr, chunk) { - if (chunk) { - return { - dzuuid: chunk.file.upload.uuid, - dzchunkindex: chunk.index, - dztotalfilesize: chunk.file.size, - dzchunksize: this.options.chunkSize, - dztotalchunkcount: chunk.file.upload.totalChunkCount, - dzchunkbyteoffset: chunk.index * this.options.chunkSize - }; - } - }, - - - /** - * A function that gets a [file](https://developer.mozilla.org/en-US/docs/DOM/File) - * and a `done` function as parameters. - * - * If the done function is invoked without arguments, the file is "accepted" and will - * be processed. If you pass an error message, the file is rejected, and the error - * message will be displayed. - * This function will not be called if the file is too big or doesn't match the mime types. - */ - accept: function accept(file, done) { - return done(); - }, - - - /** - * The callback that will be invoked when all chunks have been uploaded for a file. - * It gets the file for which the chunks have been uploaded as the first parameter, - * and the `done` function as second. `done()` needs to be invoked when everything - * needed to finish the upload process is done. - */ - chunksUploaded: function chunksUploaded(file, done) { - done(); - }, - - /** - * Gets called when the browser is not supported. - * The default implementation shows the fallback input field and adds - * a text. - */ - fallback: function fallback() { - // This code should pass in IE7... :( - var messageElement = void 0; - this.element.className = this.element.className + " dz-browser-not-supported"; - - for (var _iterator2 = this.element.getElementsByTagName("div"), _isArray2 = true, _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) { - var _ref2; - - if (_isArray2) { - if (_i2 >= _iterator2.length) break; - _ref2 = _iterator2[_i2++]; - } else { - _i2 = _iterator2.next(); - if (_i2.done) break; - _ref2 = _i2.value; - } - - var child = _ref2; - - if (/(^| )dz-message($| )/.test(child.className)) { - messageElement = child; - child.className = "dz-message"; // Removes the 'dz-default' class - break; - } - } - if (!messageElement) { - messageElement = Dropzone.createElement("
"); - this.element.appendChild(messageElement); - } - - var span = messageElement.getElementsByTagName("span")[0]; - if (span) { - if (span.textContent != null) { - span.textContent = this.options.dictFallbackMessage; - } else if (span.innerText != null) { - span.innerText = this.options.dictFallbackMessage; - } - } - - return this.element.appendChild(this.getFallbackForm()); - }, - - - /** - * Gets called to calculate the thumbnail dimensions. - * - * It gets `file`, `width` and `height` (both may be `null`) as parameters and must return an object containing: - * - * - `srcWidth` & `srcHeight` (required) - * - `trgWidth` & `trgHeight` (required) - * - `srcX` & `srcY` (optional, default `0`) - * - `trgX` & `trgY` (optional, default `0`) - * - * Those values are going to be used by `ctx.drawImage()`. - */ - resize: function resize(file, width, height, resizeMethod) { - var info = { - srcX: 0, - srcY: 0, - srcWidth: file.width, - srcHeight: file.height - }; - - var srcRatio = file.width / file.height; - - // Automatically calculate dimensions if not specified - if (width == null && height == null) { - width = info.srcWidth; - height = info.srcHeight; - } else if (width == null) { - width = height * srcRatio; - } else if (height == null) { - height = width / srcRatio; - } - - // Make sure images aren't upscaled - width = Math.min(width, info.srcWidth); - height = Math.min(height, info.srcHeight); - - var trgRatio = width / height; - - if (info.srcWidth > width || info.srcHeight > height) { - // Image is bigger and needs rescaling - if (resizeMethod === 'crop') { - if (srcRatio > trgRatio) { - info.srcHeight = file.height; - info.srcWidth = info.srcHeight * trgRatio; - } else { - info.srcWidth = file.width; - info.srcHeight = info.srcWidth / trgRatio; - } - } else if (resizeMethod === 'contain') { - // Method 'contain' - if (srcRatio > trgRatio) { - height = width / srcRatio; - } else { - width = height * srcRatio; - } - } else { - throw new Error("Unknown resizeMethod '" + resizeMethod + "'"); - } - } - - info.srcX = (file.width - info.srcWidth) / 2; - info.srcY = (file.height - info.srcHeight) / 2; - - info.trgWidth = width; - info.trgHeight = height; - - return info; - }, - - - /** - * Can be used to transform the file (for example, resize an image if necessary). - * - * The default implementation uses `resizeWidth` and `resizeHeight` (if provided) and resizes - * images according to those dimensions. - * - * Gets the `file` as the first parameter, and a `done()` function as the second, that needs - * to be invoked with the file when the transformation is done. - */ - transformFile: function transformFile(file, done) { - if ((this.options.resizeWidth || this.options.resizeHeight) && file.type.match(/image.*/)) { - return this.resizeImage(file, this.options.resizeWidth, this.options.resizeHeight, this.options.resizeMethod, done); - } else { - return done(file); - } - }, - - - /** - * A string that contains the template used for each dropped - * file. Change it to fulfill your needs but make sure to properly - * provide all elements. - * - * If you want to use an actual HTML element instead of providing a String - * as a config option, you could create a div with the id `tpl`, - * put the template inside it and provide the element like this: - * - * document - * .querySelector('#tpl') - * .innerHTML - * - */ - previewTemplate: "
\n
\n
\n
\n
\n
\n
\n
\n
\n \n Check\n \n \n \n \n \n
\n
\n \n Error\n \n \n \n \n \n \n \n
\n
", - - // END OPTIONS - // (Required by the dropzone documentation parser) - - - /* - Those functions register themselves to the events on init and handle all - the user interface specific stuff. Overwriting them won't break the upload - but can break the way it's displayed. - You can overwrite them if you don't like the default behavior. If you just - want to add an additional event handler, register it on the dropzone object - and don't overwrite those options. - */ - - // Those are self explanatory and simply concern the DragnDrop. - drop: function drop(e) { - return this.element.classList.remove("dz-drag-hover"); - }, - dragstart: function dragstart(e) {}, - dragend: function dragend(e) { - return this.element.classList.remove("dz-drag-hover"); - }, - dragenter: function dragenter(e) { - return this.element.classList.add("dz-drag-hover"); - }, - dragover: function dragover(e) { - return this.element.classList.add("dz-drag-hover"); - }, - dragleave: function dragleave(e) { - return this.element.classList.remove("dz-drag-hover"); - }, - paste: function paste(e) {}, - - - // Called whenever there are no files left in the dropzone anymore, and the - // dropzone should be displayed as if in the initial state. - reset: function reset() { - return this.element.classList.remove("dz-started"); - }, - - - // Called when a file is added to the queue - // Receives `file` - addedfile: function addedfile(file) { - var _this2 = this; - - if (this.element === this.previewsContainer) { - this.element.classList.add("dz-started"); - } - - if (this.previewsContainer) { - file.previewElement = Dropzone.createElement(this.options.previewTemplate.trim()); - file.previewTemplate = file.previewElement; // Backwards compatibility - - this.previewsContainer.appendChild(file.previewElement); - for (var _iterator3 = file.previewElement.querySelectorAll("[data-dz-name]"), _isArray3 = true, _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) { - var _ref3; - - if (_isArray3) { - if (_i3 >= _iterator3.length) break; - _ref3 = _iterator3[_i3++]; - } else { - _i3 = _iterator3.next(); - if (_i3.done) break; - _ref3 = _i3.value; - } - - var node = _ref3; - - node.textContent = file.name; - } - for (var _iterator4 = file.previewElement.querySelectorAll("[data-dz-size]"), _isArray4 = true, _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) { - if (_isArray4) { - if (_i4 >= _iterator4.length) break; - node = _iterator4[_i4++]; - } else { - _i4 = _iterator4.next(); - if (_i4.done) break; - node = _i4.value; - } - - node.innerHTML = this.filesize(file.size); - } - - if (this.options.addRemoveLinks) { - file._removeLink = Dropzone.createElement("" + this.options.dictRemoveFile + ""); - file.previewElement.appendChild(file._removeLink); - } - - var removeFileEvent = function removeFileEvent(e) { - e.preventDefault(); - e.stopPropagation(); - if (file.status === Dropzone.UPLOADING) { - return Dropzone.confirm(_this2.options.dictCancelUploadConfirmation, function () { - return _this2.removeFile(file); - }); - } else { - if (_this2.options.dictRemoveFileConfirmation) { - return Dropzone.confirm(_this2.options.dictRemoveFileConfirmation, function () { - return _this2.removeFile(file); - }); - } else { - return _this2.removeFile(file); - } - } - }; - - for (var _iterator5 = file.previewElement.querySelectorAll("[data-dz-remove]"), _isArray5 = true, _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) { - var _ref4; - - if (_isArray5) { - if (_i5 >= _iterator5.length) break; - _ref4 = _iterator5[_i5++]; - } else { - _i5 = _iterator5.next(); - if (_i5.done) break; - _ref4 = _i5.value; - } - - var removeLink = _ref4; - - removeLink.addEventListener("click", removeFileEvent); - } - } - }, - - - // Called whenever a file is removed. - removedfile: function removedfile(file) { - if (file.previewElement != null && file.previewElement.parentNode != null) { - file.previewElement.parentNode.removeChild(file.previewElement); - } - return this._updateMaxFilesReachedClass(); - }, - - - // Called when a thumbnail has been generated - // Receives `file` and `dataUrl` - thumbnail: function thumbnail(file, dataUrl) { - if (file.previewElement) { - file.previewElement.classList.remove("dz-file-preview"); - for (var _iterator6 = file.previewElement.querySelectorAll("[data-dz-thumbnail]"), _isArray6 = true, _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : _iterator6[Symbol.iterator]();;) { - var _ref5; - - if (_isArray6) { - if (_i6 >= _iterator6.length) break; - _ref5 = _iterator6[_i6++]; - } else { - _i6 = _iterator6.next(); - if (_i6.done) break; - _ref5 = _i6.value; - } - - var thumbnailElement = _ref5; - - thumbnailElement.alt = file.name; - thumbnailElement.src = dataUrl; - } - - return setTimeout(function () { - return file.previewElement.classList.add("dz-image-preview"); - }, 1); - } - }, - - - // Called whenever an error occurs - // Receives `file` and `message` - error: function error(file, message) { - if (file.previewElement) { - file.previewElement.classList.add("dz-error"); - if (typeof message !== "String" && message.error) { - message = message.error; - } - for (var _iterator7 = file.previewElement.querySelectorAll("[data-dz-errormessage]"), _isArray7 = true, _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : _iterator7[Symbol.iterator]();;) { - var _ref6; - - if (_isArray7) { - if (_i7 >= _iterator7.length) break; - _ref6 = _iterator7[_i7++]; - } else { - _i7 = _iterator7.next(); - if (_i7.done) break; - _ref6 = _i7.value; - } - - var node = _ref6; - - node.textContent = message; - } - } - }, - errormultiple: function errormultiple() {}, - - - // Called when a file gets processed. Since there is a cue, not all added - // files are processed immediately. - // Receives `file` - processing: function processing(file) { - if (file.previewElement) { - file.previewElement.classList.add("dz-processing"); - if (file._removeLink) { - return file._removeLink.innerHTML = this.options.dictCancelUpload; - } - } - }, - processingmultiple: function processingmultiple() {}, - - - // Called whenever the upload progress gets updated. - // Receives `file`, `progress` (percentage 0-100) and `bytesSent`. - // To get the total number of bytes of the file, use `file.size` - uploadprogress: function uploadprogress(file, progress, bytesSent) { - if (file.previewElement) { - for (var _iterator8 = file.previewElement.querySelectorAll("[data-dz-uploadprogress]"), _isArray8 = true, _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : _iterator8[Symbol.iterator]();;) { - var _ref7; - - if (_isArray8) { - if (_i8 >= _iterator8.length) break; - _ref7 = _iterator8[_i8++]; - } else { - _i8 = _iterator8.next(); - if (_i8.done) break; - _ref7 = _i8.value; - } - - var node = _ref7; - - node.nodeName === 'PROGRESS' ? node.value = progress : node.style.width = progress + "%"; - } - } - }, - - - // Called whenever the total upload progress gets updated. - // Called with totalUploadProgress (0-100), totalBytes and totalBytesSent - totaluploadprogress: function totaluploadprogress() {}, - - - // Called just before the file is sent. Gets the `xhr` object as second - // parameter, so you can modify it (for example to add a CSRF token) and a - // `formData` object to add additional information. - sending: function sending() {}, - sendingmultiple: function sendingmultiple() {}, - - - // When the complete upload is finished and successful - // Receives `file` - success: function success(file) { - if (file.previewElement) { - return file.previewElement.classList.add("dz-success"); - } - }, - successmultiple: function successmultiple() {}, - - - // When the upload is canceled. - canceled: function canceled(file) { - return this.emit("error", file, this.options.dictUploadCanceled); - }, - canceledmultiple: function canceledmultiple() {}, - - - // When the upload is finished, either with success or an error. - // Receives `file` - complete: function complete(file) { - if (file._removeLink) { - file._removeLink.innerHTML = this.options.dictRemoveFile; - } - if (file.previewElement) { - return file.previewElement.classList.add("dz-complete"); - } - }, - completemultiple: function completemultiple() {}, - maxfilesexceeded: function maxfilesexceeded() {}, - maxfilesreached: function maxfilesreached() {}, - queuecomplete: function queuecomplete() {}, - addedfiles: function addedfiles() {} - }; - - this.prototype._thumbnailQueue = []; - this.prototype._processingThumbnail = false; - } - - // global utility - - }, { - key: "extend", - value: function extend(target) { - for (var _len2 = arguments.length, objects = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { - objects[_key2 - 1] = arguments[_key2]; - } - - for (var _iterator9 = objects, _isArray9 = true, _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : _iterator9[Symbol.iterator]();;) { - var _ref8; - - if (_isArray9) { - if (_i9 >= _iterator9.length) break; - _ref8 = _iterator9[_i9++]; - } else { - _i9 = _iterator9.next(); - if (_i9.done) break; - _ref8 = _i9.value; - } - - var object = _ref8; - - for (var key in object) { - var val = object[key]; - target[key] = val; - } - } - return target; - } - }]); - - function Dropzone(el, options) { - _classCallCheck(this, Dropzone); - - var _this = _possibleConstructorReturn(this, (Dropzone.__proto__ || Object.getPrototypeOf(Dropzone)).call(this)); - - var fallback = void 0, - left = void 0; - _this.element = el; - // For backwards compatibility since the version was in the prototype previously - _this.version = Dropzone.version; - - _this.defaultOptions.previewTemplate = _this.defaultOptions.previewTemplate.replace(/\n*/g, ""); - - _this.clickableElements = []; - _this.listeners = []; - _this.files = []; // All files - - if (typeof _this.element === "string") { - _this.element = document.querySelector(_this.element); - } - - // Not checking if instance of HTMLElement or Element since IE9 is extremely weird. - if (!_this.element || _this.element.nodeType == null) { - throw new Error("Invalid dropzone element."); - } - - if (_this.element.dropzone) { - throw new Error("Dropzone already attached."); - } - - // Now add this dropzone to the instances. - Dropzone.instances.push(_this); - - // Put the dropzone inside the element itself. - _this.element.dropzone = _this; - - var elementOptions = (left = Dropzone.optionsForElement(_this.element)) != null ? left : {}; - - _this.options = Dropzone.extend({}, _this.defaultOptions, elementOptions, options != null ? options : {}); - - // If the browser failed, just call the fallback and leave - if (_this.options.forceFallback || !Dropzone.isBrowserSupported()) { - var _ret; - - return _ret = _this.options.fallback.call(_this), _possibleConstructorReturn(_this, _ret); - } - - // @options.url = @element.getAttribute "action" unless @options.url? - if (_this.options.url == null) { - _this.options.url = _this.element.getAttribute("action"); - } - - if (!_this.options.url) { - throw new Error("No URL provided."); - } - - if (_this.options.acceptedFiles && _this.options.acceptedMimeTypes) { - throw new Error("You can't provide both 'acceptedFiles' and 'acceptedMimeTypes'. 'acceptedMimeTypes' is deprecated."); - } - - if (_this.options.uploadMultiple && _this.options.chunking) { - throw new Error('You cannot set both: uploadMultiple and chunking.'); - } - - // Backwards compatibility - if (_this.options.acceptedMimeTypes) { - _this.options.acceptedFiles = _this.options.acceptedMimeTypes; - delete _this.options.acceptedMimeTypes; - } - - // Backwards compatibility - if (_this.options.renameFilename != null) { - _this.options.renameFile = function (file) { - return _this.options.renameFilename.call(_this, file.name, file); - }; - } - - _this.options.method = _this.options.method.toUpperCase(); - - if ((fallback = _this.getExistingFallback()) && fallback.parentNode) { - // Remove the fallback - fallback.parentNode.removeChild(fallback); - } - - // Display previews in the previewsContainer element or the Dropzone element unless explicitly set to false - if (_this.options.previewsContainer !== false) { - if (_this.options.previewsContainer) { - _this.previewsContainer = Dropzone.getElement(_this.options.previewsContainer, "previewsContainer"); - } else { - _this.previewsContainer = _this.element; - } - } - - if (_this.options.clickable) { - if (_this.options.clickable === true) { - _this.clickableElements = [_this.element]; - } else { - _this.clickableElements = Dropzone.getElements(_this.options.clickable, "clickable"); - } - } - - _this.init(); - return _this; - } - - // Returns all files that have been accepted - - - _createClass(Dropzone, [{ - key: "getAcceptedFiles", - value: function getAcceptedFiles() { - return this.files.filter(function (file) { - return file.accepted; - }).map(function (file) { - return file; - }); - } - - // Returns all files that have been rejected - // Not sure when that's going to be useful, but added for completeness. - - }, { - key: "getRejectedFiles", - value: function getRejectedFiles() { - return this.files.filter(function (file) { - return !file.accepted; - }).map(function (file) { - return file; - }); - } - }, { - key: "getFilesWithStatus", - value: function getFilesWithStatus(status) { - return this.files.filter(function (file) { - return file.status === status; - }).map(function (file) { - return file; - }); - } - - // Returns all files that are in the queue - - }, { - key: "getQueuedFiles", - value: function getQueuedFiles() { - return this.getFilesWithStatus(Dropzone.QUEUED); - } - }, { - key: "getUploadingFiles", - value: function getUploadingFiles() { - return this.getFilesWithStatus(Dropzone.UPLOADING); - } - }, { - key: "getAddedFiles", - value: function getAddedFiles() { - return this.getFilesWithStatus(Dropzone.ADDED); - } - - // Files that are either queued or uploading - - }, { - key: "getActiveFiles", - value: function getActiveFiles() { - return this.files.filter(function (file) { - return file.status === Dropzone.UPLOADING || file.status === Dropzone.QUEUED; - }).map(function (file) { - return file; - }); - } - - // The function that gets called when Dropzone is initialized. You - // can (and should) setup event listeners inside this function. - - }, { - key: "init", - value: function init() { - var _this3 = this; - - // In case it isn't set already - if (this.element.tagName === "form") { - this.element.setAttribute("enctype", "multipart/form-data"); - } - - if (this.element.classList.contains("dropzone") && !this.element.querySelector(".dz-message")) { - this.element.appendChild(Dropzone.createElement("
" + this.options.dictDefaultMessage + "
")); - } - - if (this.clickableElements.length) { - var setupHiddenFileInput = function setupHiddenFileInput() { - if (_this3.hiddenFileInput) { - _this3.hiddenFileInput.parentNode.removeChild(_this3.hiddenFileInput); - } - _this3.hiddenFileInput = document.createElement("input"); - _this3.hiddenFileInput.setAttribute("type", "file"); - if (_this3.options.maxFiles === null || _this3.options.maxFiles > 1) { - _this3.hiddenFileInput.setAttribute("multiple", "multiple"); - } - _this3.hiddenFileInput.className = "dz-hidden-input"; - - if (_this3.options.acceptedFiles !== null) { - _this3.hiddenFileInput.setAttribute("accept", _this3.options.acceptedFiles); - } - if (_this3.options.capture !== null) { - _this3.hiddenFileInput.setAttribute("capture", _this3.options.capture); - } - - // Not setting `display="none"` because some browsers don't accept clicks - // on elements that aren't displayed. - _this3.hiddenFileInput.style.visibility = "hidden"; - _this3.hiddenFileInput.style.position = "absolute"; - _this3.hiddenFileInput.style.top = "0"; - _this3.hiddenFileInput.style.left = "0"; - _this3.hiddenFileInput.style.height = "0"; - _this3.hiddenFileInput.style.width = "0"; - Dropzone.getElement(_this3.options.hiddenInputContainer, 'hiddenInputContainer').appendChild(_this3.hiddenFileInput); - return _this3.hiddenFileInput.addEventListener("change", function () { - var files = _this3.hiddenFileInput.files; - - if (files.length) { - for (var _iterator10 = files, _isArray10 = true, _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : _iterator10[Symbol.iterator]();;) { - var _ref9; - - if (_isArray10) { - if (_i10 >= _iterator10.length) break; - _ref9 = _iterator10[_i10++]; - } else { - _i10 = _iterator10.next(); - if (_i10.done) break; - _ref9 = _i10.value; - } - - var file = _ref9; - - _this3.addFile(file); - } - } - _this3.emit("addedfiles", files); - return setupHiddenFileInput(); - }); - }; - setupHiddenFileInput(); - } - - this.URL = window.URL !== null ? window.URL : window.webkitURL; - - // Setup all event listeners on the Dropzone object itself. - // They're not in @setupEventListeners() because they shouldn't be removed - // again when the dropzone gets disabled. - for (var _iterator11 = this.events, _isArray11 = true, _i11 = 0, _iterator11 = _isArray11 ? _iterator11 : _iterator11[Symbol.iterator]();;) { - var _ref10; - - if (_isArray11) { - if (_i11 >= _iterator11.length) break; - _ref10 = _iterator11[_i11++]; - } else { - _i11 = _iterator11.next(); - if (_i11.done) break; - _ref10 = _i11.value; - } - - var eventName = _ref10; - - this.on(eventName, this.options[eventName]); - } - - this.on("uploadprogress", function () { - return _this3.updateTotalUploadProgress(); - }); - - this.on("removedfile", function () { - return _this3.updateTotalUploadProgress(); - }); - - this.on("canceled", function (file) { - return _this3.emit("complete", file); - }); - - // Emit a `queuecomplete` event if all files finished uploading. - this.on("complete", function (file) { - if (_this3.getAddedFiles().length === 0 && _this3.getUploadingFiles().length === 0 && _this3.getQueuedFiles().length === 0) { - // This needs to be deferred so that `queuecomplete` really triggers after `complete` - return setTimeout(function () { - return _this3.emit("queuecomplete"); - }, 0); - } - }); - - var noPropagation = function noPropagation(e) { - e.stopPropagation(); - if (e.preventDefault) { - return e.preventDefault(); - } else { - return e.returnValue = false; - } - }; - - // Create the listeners - this.listeners = [{ - element: this.element, - events: { - "dragstart": function dragstart(e) { - return _this3.emit("dragstart", e); - }, - "dragenter": function dragenter(e) { - noPropagation(e); - return _this3.emit("dragenter", e); - }, - "dragover": function dragover(e) { - // Makes it possible to drag files from chrome's download bar - // http://stackoverflow.com/questions/19526430/drag-and-drop-file-uploads-from-chrome-downloads-bar - // Try is required to prevent bug in Internet Explorer 11 (SCRIPT65535 exception) - var efct = void 0; - try { - efct = e.dataTransfer.effectAllowed; - } catch (error) {} - e.dataTransfer.dropEffect = 'move' === efct || 'linkMove' === efct ? 'move' : 'copy'; - - noPropagation(e); - return _this3.emit("dragover", e); - }, - "dragleave": function dragleave(e) { - return _this3.emit("dragleave", e); - }, - "drop": function drop(e) { - noPropagation(e); - return _this3.drop(e); - }, - "dragend": function dragend(e) { - return _this3.emit("dragend", e); - } - - // This is disabled right now, because the browsers don't implement it properly. - // "paste": (e) => - // noPropagation e - // @paste e - } }]; - - this.clickableElements.forEach(function (clickableElement) { - return _this3.listeners.push({ - element: clickableElement, - events: { - "click": function click(evt) { - // Only the actual dropzone or the message element should trigger file selection - if (clickableElement !== _this3.element || evt.target === _this3.element || Dropzone.elementInside(evt.target, _this3.element.querySelector(".dz-message"))) { - _this3.hiddenFileInput.click(); // Forward the click - } - return true; - } - } - }); - }); - - this.enable(); - - return this.options.init.call(this); - } - - // Not fully tested yet - - }, { - key: "destroy", - value: function destroy() { - this.disable(); - this.removeAllFiles(true); - if (this.hiddenFileInput != null ? this.hiddenFileInput.parentNode : undefined) { - this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput); - this.hiddenFileInput = null; - } - delete this.element.dropzone; - return Dropzone.instances.splice(Dropzone.instances.indexOf(this), 1); - } - }, { - key: "updateTotalUploadProgress", - value: function updateTotalUploadProgress() { - var totalUploadProgress = void 0; - var totalBytesSent = 0; - var totalBytes = 0; - - var activeFiles = this.getActiveFiles(); - - if (activeFiles.length) { - for (var _iterator12 = this.getActiveFiles(), _isArray12 = true, _i12 = 0, _iterator12 = _isArray12 ? _iterator12 : _iterator12[Symbol.iterator]();;) { - var _ref11; - - if (_isArray12) { - if (_i12 >= _iterator12.length) break; - _ref11 = _iterator12[_i12++]; - } else { - _i12 = _iterator12.next(); - if (_i12.done) break; - _ref11 = _i12.value; - } - - var file = _ref11; - - totalBytesSent += file.upload.bytesSent; - totalBytes += file.upload.total; - } - totalUploadProgress = 100 * totalBytesSent / totalBytes; - } else { - totalUploadProgress = 100; - } - - return this.emit("totaluploadprogress", totalUploadProgress, totalBytes, totalBytesSent); - } - - // @options.paramName can be a function taking one parameter rather than a string. - // A parameter name for a file is obtained simply by calling this with an index number. - - }, { - key: "_getParamName", - value: function _getParamName(n) { - if (typeof this.options.paramName === "function") { - return this.options.paramName(n); - } else { - return "" + this.options.paramName + (this.options.uploadMultiple ? "[" + n + "]" : ""); - } - } - - // If @options.renameFile is a function, - // the function will be used to rename the file.name before appending it to the formData - - }, { - key: "_renameFile", - value: function _renameFile(file) { - if (typeof this.options.renameFile !== "function") { - return file.name; - } - return this.options.renameFile(file); - } - - // Returns a form that can be used as fallback if the browser does not support DragnDrop - // - // If the dropzone is already a form, only the input field and button are returned. Otherwise a complete form element is provided. - // This code has to pass in IE7 :( - - }, { - key: "getFallbackForm", - value: function getFallbackForm() { - var existingFallback = void 0, - form = void 0; - if (existingFallback = this.getExistingFallback()) { - return existingFallback; - } - - var fieldsString = "
"; - if (this.options.dictFallbackText) { - fieldsString += "

" + this.options.dictFallbackText + "

"; - } - fieldsString += "
"; - - var fields = Dropzone.createElement(fieldsString); - if (this.element.tagName !== "FORM") { - form = Dropzone.createElement("
"); - form.appendChild(fields); - } else { - // Make sure that the enctype and method attributes are set properly - this.element.setAttribute("enctype", "multipart/form-data"); - this.element.setAttribute("method", this.options.method); - } - return form != null ? form : fields; - } - - // Returns the fallback elements if they exist already - // - // This code has to pass in IE7 :( - - }, { - key: "getExistingFallback", - value: function getExistingFallback() { - var getFallback = function getFallback(elements) { - for (var _iterator13 = elements, _isArray13 = true, _i13 = 0, _iterator13 = _isArray13 ? _iterator13 : _iterator13[Symbol.iterator]();;) { - var _ref12; - - if (_isArray13) { - if (_i13 >= _iterator13.length) break; - _ref12 = _iterator13[_i13++]; - } else { - _i13 = _iterator13.next(); - if (_i13.done) break; - _ref12 = _i13.value; - } - - var el = _ref12; - - if (/(^| )fallback($| )/.test(el.className)) { - return el; - } - } - }; - - var _arr = ["div", "form"]; - for (var _i14 = 0; _i14 < _arr.length; _i14++) { - var tagName = _arr[_i14]; - var fallback; - if (fallback = getFallback(this.element.getElementsByTagName(tagName))) { - return fallback; - } - } - } - - // Activates all listeners stored in @listeners - - }, { - key: "setupEventListeners", - value: function setupEventListeners() { - return this.listeners.map(function (elementListeners) { - return function () { - var result = []; - for (var event in elementListeners.events) { - var listener = elementListeners.events[event]; - result.push(elementListeners.element.addEventListener(event, listener, false)); - } - return result; - }(); - }); - } - - // Deactivates all listeners stored in @listeners - - }, { - key: "removeEventListeners", - value: function removeEventListeners() { - return this.listeners.map(function (elementListeners) { - return function () { - var result = []; - for (var event in elementListeners.events) { - var listener = elementListeners.events[event]; - result.push(elementListeners.element.removeEventListener(event, listener, false)); - } - return result; - }(); - }); - } - - // Removes all event listeners and cancels all files in the queue or being processed. - - }, { - key: "disable", - value: function disable() { - var _this4 = this; - - this.clickableElements.forEach(function (element) { - return element.classList.remove("dz-clickable"); - }); - this.removeEventListeners(); - this.disabled = true; - - return this.files.map(function (file) { - return _this4.cancelUpload(file); - }); - } - }, { - key: "enable", - value: function enable() { - delete this.disabled; - this.clickableElements.forEach(function (element) { - return element.classList.add("dz-clickable"); - }); - return this.setupEventListeners(); - } - - // Returns a nicely formatted filesize - - }, { - key: "filesize", - value: function filesize(size) { - var selectedSize = 0; - var selectedUnit = "b"; - - if (size > 0) { - var units = ['tb', 'gb', 'mb', 'kb', 'b']; - - for (var i = 0; i < units.length; i++) { - var unit = units[i]; - var cutoff = Math.pow(this.options.filesizeBase, 4 - i) / 10; - - if (size >= cutoff) { - selectedSize = size / Math.pow(this.options.filesizeBase, 4 - i); - selectedUnit = unit; - break; - } - } - - selectedSize = Math.round(10 * selectedSize) / 10; // Cutting of digits - } - - return "" + selectedSize + " " + this.options.dictFileSizeUnits[selectedUnit]; - } - - // Adds or removes the `dz-max-files-reached` class from the form. - - }, { - key: "_updateMaxFilesReachedClass", - value: function _updateMaxFilesReachedClass() { - if (this.options.maxFiles != null && this.getAcceptedFiles().length >= this.options.maxFiles) { - if (this.getAcceptedFiles().length === this.options.maxFiles) { - this.emit('maxfilesreached', this.files); - } - return this.element.classList.add("dz-max-files-reached"); - } else { - return this.element.classList.remove("dz-max-files-reached"); - } - } - }, { - key: "drop", - value: function drop(e) { - if (!e.dataTransfer) { - return; - } - this.emit("drop", e); - - // Convert the FileList to an Array - // This is necessary for IE11 - var files = []; - for (var i = 0; i < e.dataTransfer.files.length; i++) { - files[i] = e.dataTransfer.files[i]; - } - - this.emit("addedfiles", files); - - // Even if it's a folder, files.length will contain the folders. - if (files.length) { - var items = e.dataTransfer.items; - - if (items && items.length && items[0].webkitGetAsEntry != null) { - // The browser supports dropping of folders, so handle items instead of files - this._addFilesFromItems(items); - } else { - this.handleFiles(files); - } - } - } - }, { - key: "paste", - value: function paste(e) { - if (__guard__(e != null ? e.clipboardData : undefined, function (x) { - return x.items; - }) == null) { - return; - } - - this.emit("paste", e); - var items = e.clipboardData.items; - - - if (items.length) { - return this._addFilesFromItems(items); - } - } - }, { - key: "handleFiles", - value: function handleFiles(files) { - for (var _iterator14 = files, _isArray14 = true, _i15 = 0, _iterator14 = _isArray14 ? _iterator14 : _iterator14[Symbol.iterator]();;) { - var _ref13; - - if (_isArray14) { - if (_i15 >= _iterator14.length) break; - _ref13 = _iterator14[_i15++]; - } else { - _i15 = _iterator14.next(); - if (_i15.done) break; - _ref13 = _i15.value; - } - - var file = _ref13; - - this.addFile(file); - } - } - - // When a folder is dropped (or files are pasted), items must be handled - // instead of files. - - }, { - key: "_addFilesFromItems", - value: function _addFilesFromItems(items) { - var _this5 = this; - - return function () { - var result = []; - for (var _iterator15 = items, _isArray15 = true, _i16 = 0, _iterator15 = _isArray15 ? _iterator15 : _iterator15[Symbol.iterator]();;) { - var _ref14; - - if (_isArray15) { - if (_i16 >= _iterator15.length) break; - _ref14 = _iterator15[_i16++]; - } else { - _i16 = _iterator15.next(); - if (_i16.done) break; - _ref14 = _i16.value; - } - - var item = _ref14; - - var entry; - if (item.webkitGetAsEntry != null && (entry = item.webkitGetAsEntry())) { - if (entry.isFile) { - result.push(_this5.addFile(item.getAsFile())); - } else if (entry.isDirectory) { - // Append all files from that directory to files - result.push(_this5._addFilesFromDirectory(entry, entry.name)); - } else { - result.push(undefined); - } - } else if (item.getAsFile != null) { - if (item.kind == null || item.kind === "file") { - result.push(_this5.addFile(item.getAsFile())); - } else { - result.push(undefined); - } - } else { - result.push(undefined); - } - } - return result; - }(); - } - - // Goes through the directory, and adds each file it finds recursively - - }, { - key: "_addFilesFromDirectory", - value: function _addFilesFromDirectory(directory, path) { - var _this6 = this; - - var dirReader = directory.createReader(); - - var errorHandler = function errorHandler(error) { - return __guardMethod__(console, 'log', function (o) { - return o.log(error); - }); - }; - - var readEntries = function readEntries() { - return dirReader.readEntries(function (entries) { - if (entries.length > 0) { - for (var _iterator16 = entries, _isArray16 = true, _i17 = 0, _iterator16 = _isArray16 ? _iterator16 : _iterator16[Symbol.iterator]();;) { - var _ref15; - - if (_isArray16) { - if (_i17 >= _iterator16.length) break; - _ref15 = _iterator16[_i17++]; - } else { - _i17 = _iterator16.next(); - if (_i17.done) break; - _ref15 = _i17.value; - } - - var entry = _ref15; - - if (entry.isFile) { - entry.file(function (file) { - if (_this6.options.ignoreHiddenFiles && file.name.substring(0, 1) === '.') { - return; - } - file.fullPath = path + "/" + file.name; - return _this6.addFile(file); - }); - } else if (entry.isDirectory) { - _this6._addFilesFromDirectory(entry, path + "/" + entry.name); - } - } - - // Recursively call readEntries() again, since browser only handle - // the first 100 entries. - // See: https://developer.mozilla.org/en-US/docs/Web/API/DirectoryReader#readEntries - readEntries(); - } - return null; - }, errorHandler); - }; - - return readEntries(); - } - - // If `done()` is called without argument the file is accepted - // If you call it with an error message, the file is rejected - // (This allows for asynchronous validation) - // - // This function checks the filesize, and if the file.type passes the - // `acceptedFiles` check. - - }, { - key: "accept", - value: function accept(file, done) { - if (this.options.maxFilesize && file.size > this.options.maxFilesize * 1024 * 1024) { - return done(this.options.dictFileTooBig.replace("{{filesize}}", Math.round(file.size / 1024 / 10.24) / 100).replace("{{maxFilesize}}", this.options.maxFilesize)); - } else if (!Dropzone.isValidFile(file, this.options.acceptedFiles)) { - return done(this.options.dictInvalidFileType); - } else if (this.options.maxFiles != null && this.getAcceptedFiles().length >= this.options.maxFiles) { - done(this.options.dictMaxFilesExceeded.replace("{{maxFiles}}", this.options.maxFiles)); - return this.emit("maxfilesexceeded", file); - } else { - return this.options.accept.call(this, file, done); - } - } - }, { - key: "addFile", - value: function addFile(file) { - var _this7 = this; - - file.upload = { - uuid: Dropzone.uuidv4(), - progress: 0, - // Setting the total upload size to file.size for the beginning - // It's actual different than the size to be transmitted. - total: file.size, - bytesSent: 0, - filename: this._renameFile(file), - chunked: this.options.chunking && (this.options.forceChunking || file.size > this.options.chunkSize), - totalChunkCount: Math.ceil(file.size / this.options.chunkSize) - }; - this.files.push(file); - - file.status = Dropzone.ADDED; - - this.emit("addedfile", file); - - this._enqueueThumbnail(file); - - return this.accept(file, function (error) { - if (error) { - file.accepted = false; - _this7._errorProcessing([file], error); // Will set the file.status - } else { - file.accepted = true; - if (_this7.options.autoQueue) { - _this7.enqueueFile(file); - } // Will set .accepted = true - } - return _this7._updateMaxFilesReachedClass(); - }); - } - - // Wrapper for enqueueFile - - }, { - key: "enqueueFiles", - value: function enqueueFiles(files) { - for (var _iterator17 = files, _isArray17 = true, _i18 = 0, _iterator17 = _isArray17 ? _iterator17 : _iterator17[Symbol.iterator]();;) { - var _ref16; - - if (_isArray17) { - if (_i18 >= _iterator17.length) break; - _ref16 = _iterator17[_i18++]; - } else { - _i18 = _iterator17.next(); - if (_i18.done) break; - _ref16 = _i18.value; - } - - var file = _ref16; - - this.enqueueFile(file); - } - return null; - } - }, { - key: "enqueueFile", - value: function enqueueFile(file) { - var _this8 = this; - - if (file.status === Dropzone.ADDED && file.accepted === true) { - file.status = Dropzone.QUEUED; - if (this.options.autoProcessQueue) { - return setTimeout(function () { - return _this8.processQueue(); - }, 0); // Deferring the call - } - } else { - throw new Error("This file can't be queued because it has already been processed or was rejected."); - } - } - }, { - key: "_enqueueThumbnail", - value: function _enqueueThumbnail(file) { - var _this9 = this; - - if (this.options.createImageThumbnails && file.type.match(/image.*/) && file.size <= this.options.maxThumbnailFilesize * 1024 * 1024) { - this._thumbnailQueue.push(file); - return setTimeout(function () { - return _this9._processThumbnailQueue(); - }, 0); // Deferring the call - } - } - }, { - key: "_processThumbnailQueue", - value: function _processThumbnailQueue() { - var _this10 = this; - - if (this._processingThumbnail || this._thumbnailQueue.length === 0) { - return; - } - - this._processingThumbnail = true; - var file = this._thumbnailQueue.shift(); - return this.createThumbnail(file, this.options.thumbnailWidth, this.options.thumbnailHeight, this.options.thumbnailMethod, true, function (dataUrl) { - _this10.emit("thumbnail", file, dataUrl); - _this10._processingThumbnail = false; - return _this10._processThumbnailQueue(); - }); - } - - // Can be called by the user to remove a file - - }, { - key: "removeFile", - value: function removeFile(file) { - if (file.status === Dropzone.UPLOADING) { - this.cancelUpload(file); - } - this.files = without(this.files, file); - - this.emit("removedfile", file); - if (this.files.length === 0) { - return this.emit("reset"); - } - } - - // Removes all files that aren't currently processed from the list - - }, { - key: "removeAllFiles", - value: function removeAllFiles(cancelIfNecessary) { - // Create a copy of files since removeFile() changes the @files array. - if (cancelIfNecessary == null) { - cancelIfNecessary = false; - } - for (var _iterator18 = this.files.slice(), _isArray18 = true, _i19 = 0, _iterator18 = _isArray18 ? _iterator18 : _iterator18[Symbol.iterator]();;) { - var _ref17; - - if (_isArray18) { - if (_i19 >= _iterator18.length) break; - _ref17 = _iterator18[_i19++]; - } else { - _i19 = _iterator18.next(); - if (_i19.done) break; - _ref17 = _i19.value; - } - - var file = _ref17; - - if (file.status !== Dropzone.UPLOADING || cancelIfNecessary) { - this.removeFile(file); - } - } - return null; - } - - // Resizes an image before it gets sent to the server. This function is the default behavior of - // `options.transformFile` if `resizeWidth` or `resizeHeight` are set. The callback is invoked with - // the resized blob. - - }, { - key: "resizeImage", - value: function resizeImage(file, width, height, resizeMethod, callback) { - var _this11 = this; - - return this.createThumbnail(file, width, height, resizeMethod, true, function (dataUrl, canvas) { - if (canvas == null) { - // The image has not been resized - return callback(file); - } else { - var resizeMimeType = _this11.options.resizeMimeType; - - if (resizeMimeType == null) { - resizeMimeType = file.type; - } - var resizedDataURL = canvas.toDataURL(resizeMimeType, _this11.options.resizeQuality); - if (resizeMimeType === 'image/jpeg' || resizeMimeType === 'image/jpg') { - // Now add the original EXIF information - resizedDataURL = ExifRestore.restore(file.dataURL, resizedDataURL); - } - return callback(Dropzone.dataURItoBlob(resizedDataURL)); - } - }); - } - }, { - key: "createThumbnail", - value: function createThumbnail(file, width, height, resizeMethod, fixOrientation, callback) { - var _this12 = this; - - var fileReader = new FileReader(); - - fileReader.onload = function () { - - file.dataURL = fileReader.result; - - // Don't bother creating a thumbnail for SVG images since they're vector - if (file.type === "image/svg+xml") { - if (callback != null) { - callback(fileReader.result); - } - return; - } - - return _this12.createThumbnailFromUrl(file, width, height, resizeMethod, fixOrientation, callback); - }; - - return fileReader.readAsDataURL(file); - } - }, { - key: "createThumbnailFromUrl", - value: function createThumbnailFromUrl(file, width, height, resizeMethod, fixOrientation, callback, crossOrigin) { - var _this13 = this; - - // Not using `new Image` here because of a bug in latest Chrome versions. - // See https://github.com/enyo/dropzone/pull/226 - var img = document.createElement("img"); - - if (crossOrigin) { - img.crossOrigin = crossOrigin; - } - - img.onload = function () { - var loadExif = function loadExif(callback) { - return callback(1); - }; - if (typeof EXIF !== 'undefined' && EXIF !== null && fixOrientation) { - loadExif = function loadExif(callback) { - return EXIF.getData(img, function () { - return callback(EXIF.getTag(this, 'Orientation')); - }); - }; - } - - return loadExif(function (orientation) { - file.width = img.width; - file.height = img.height; - - var resizeInfo = _this13.options.resize.call(_this13, file, width, height, resizeMethod); - - var canvas = document.createElement("canvas"); - var ctx = canvas.getContext("2d"); - - canvas.width = resizeInfo.trgWidth; - canvas.height = resizeInfo.trgHeight; - - if (orientation > 4) { - canvas.width = resizeInfo.trgHeight; - canvas.height = resizeInfo.trgWidth; - } - - switch (orientation) { - case 2: - // horizontal flip - ctx.translate(canvas.width, 0); - ctx.scale(-1, 1); - break; - case 3: - // 180° rotate left - ctx.translate(canvas.width, canvas.height); - ctx.rotate(Math.PI); - break; - case 4: - // vertical flip - ctx.translate(0, canvas.height); - ctx.scale(1, -1); - break; - case 5: - // vertical flip + 90 rotate right - ctx.rotate(0.5 * Math.PI); - ctx.scale(1, -1); - break; - case 6: - // 90° rotate right - ctx.rotate(0.5 * Math.PI); - ctx.translate(0, -canvas.width); - break; - case 7: - // horizontal flip + 90 rotate right - ctx.rotate(0.5 * Math.PI); - ctx.translate(canvas.height, -canvas.width); - ctx.scale(-1, 1); - break; - case 8: - // 90° rotate left - ctx.rotate(-0.5 * Math.PI); - ctx.translate(-canvas.height, 0); - break; - } - - // This is a bugfix for iOS' scaling bug. - drawImageIOSFix(ctx, img, resizeInfo.srcX != null ? resizeInfo.srcX : 0, resizeInfo.srcY != null ? resizeInfo.srcY : 0, resizeInfo.srcWidth, resizeInfo.srcHeight, resizeInfo.trgX != null ? resizeInfo.trgX : 0, resizeInfo.trgY != null ? resizeInfo.trgY : 0, resizeInfo.trgWidth, resizeInfo.trgHeight); - - var thumbnail = canvas.toDataURL("image/png"); - - if (callback != null) { - return callback(thumbnail, canvas); - } - }); - }; - - if (callback != null) { - img.onerror = callback; - } - - return img.src = file.dataURL; - } - - // Goes through the queue and processes files if there aren't too many already. - - }, { - key: "processQueue", - value: function processQueue() { - var parallelUploads = this.options.parallelUploads; - - var processingLength = this.getUploadingFiles().length; - var i = processingLength; - - // There are already at least as many files uploading than should be - if (processingLength >= parallelUploads) { - return; - } - - var queuedFiles = this.getQueuedFiles(); - - if (!(queuedFiles.length > 0)) { - return; - } - - if (this.options.uploadMultiple) { - // The files should be uploaded in one request - return this.processFiles(queuedFiles.slice(0, parallelUploads - processingLength)); - } else { - while (i < parallelUploads) { - if (!queuedFiles.length) { - return; - } // Nothing left to process - this.processFile(queuedFiles.shift()); - i++; - } - } - } - - // Wrapper for `processFiles` - - }, { - key: "processFile", - value: function processFile(file) { - return this.processFiles([file]); - } - - // Loads the file, then calls finishedLoading() - - }, { - key: "processFiles", - value: function processFiles(files) { - for (var _iterator19 = files, _isArray19 = true, _i20 = 0, _iterator19 = _isArray19 ? _iterator19 : _iterator19[Symbol.iterator]();;) { - var _ref18; - - if (_isArray19) { - if (_i20 >= _iterator19.length) break; - _ref18 = _iterator19[_i20++]; - } else { - _i20 = _iterator19.next(); - if (_i20.done) break; - _ref18 = _i20.value; - } - - var file = _ref18; - - file.processing = true; // Backwards compatibility - file.status = Dropzone.UPLOADING; - - this.emit("processing", file); - } - - if (this.options.uploadMultiple) { - this.emit("processingmultiple", files); - } - - return this.uploadFiles(files); - } - }, { - key: "_getFilesWithXhr", - value: function _getFilesWithXhr(xhr) { - var files = void 0; - return files = this.files.filter(function (file) { - return file.xhr === xhr; - }).map(function (file) { - return file; - }); - } - - // Cancels the file upload and sets the status to CANCELED - // **if** the file is actually being uploaded. - // If it's still in the queue, the file is being removed from it and the status - // set to CANCELED. - - }, { - key: "cancelUpload", - value: function cancelUpload(file) { - if (file.status === Dropzone.UPLOADING) { - var groupedFiles = this._getFilesWithXhr(file.xhr); - for (var _iterator20 = groupedFiles, _isArray20 = true, _i21 = 0, _iterator20 = _isArray20 ? _iterator20 : _iterator20[Symbol.iterator]();;) { - var _ref19; - - if (_isArray20) { - if (_i21 >= _iterator20.length) break; - _ref19 = _iterator20[_i21++]; - } else { - _i21 = _iterator20.next(); - if (_i21.done) break; - _ref19 = _i21.value; - } - - var groupedFile = _ref19; - - groupedFile.status = Dropzone.CANCELED; - } - if (typeof file.xhr !== 'undefined') { - file.xhr.abort(); - } - for (var _iterator21 = groupedFiles, _isArray21 = true, _i22 = 0, _iterator21 = _isArray21 ? _iterator21 : _iterator21[Symbol.iterator]();;) { - var _ref20; - - if (_isArray21) { - if (_i22 >= _iterator21.length) break; - _ref20 = _iterator21[_i22++]; - } else { - _i22 = _iterator21.next(); - if (_i22.done) break; - _ref20 = _i22.value; - } - - var _groupedFile = _ref20; - - this.emit("canceled", _groupedFile); - } - if (this.options.uploadMultiple) { - this.emit("canceledmultiple", groupedFiles); - } - } else if (file.status === Dropzone.ADDED || file.status === Dropzone.QUEUED) { - file.status = Dropzone.CANCELED; - this.emit("canceled", file); - if (this.options.uploadMultiple) { - this.emit("canceledmultiple", [file]); - } - } - - if (this.options.autoProcessQueue) { - return this.processQueue(); - } - } - }, { - key: "resolveOption", - value: function resolveOption(option) { - if (typeof option === 'function') { - for (var _len3 = arguments.length, args = Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) { - args[_key3 - 1] = arguments[_key3]; - } - - return option.apply(this, args); - } - return option; - } - }, { - key: "uploadFile", - value: function uploadFile(file) { - return this.uploadFiles([file]); - } - }, { - key: "uploadFiles", - value: function uploadFiles(files) { - var _this14 = this; - - this._transformFiles(files, function (transformedFiles) { - if (files[0].upload.chunked) { - // This file should be sent in chunks! - - // If the chunking option is set, we **know** that there can only be **one** file, since - // uploadMultiple is not allowed with this option. - var file = files[0]; - var transformedFile = transformedFiles[0]; - var startedChunkCount = 0; - - file.upload.chunks = []; - - var handleNextChunk = function handleNextChunk() { - var chunkIndex = 0; - - // Find the next item in file.upload.chunks that is not defined yet. - while (file.upload.chunks[chunkIndex] !== undefined) { - chunkIndex++; - } - - // This means, that all chunks have already been started. - if (chunkIndex >= file.upload.totalChunkCount) return; - - startedChunkCount++; - - var start = chunkIndex * _this14.options.chunkSize; - var end = Math.min(start + _this14.options.chunkSize, file.size); - - var dataBlock = { - name: _this14._getParamName(0), - data: transformedFile.webkitSlice ? transformedFile.webkitSlice(start, end) : transformedFile.slice(start, end), - filename: file.upload.filename, - chunkIndex: chunkIndex - }; - - file.upload.chunks[chunkIndex] = { - file: file, - index: chunkIndex, - dataBlock: dataBlock, // In case we want to retry. - status: Dropzone.UPLOADING, - progress: 0, - retries: 0 // The number of times this block has been retried. - }; - - _this14._uploadData(files, [dataBlock]); - }; - - file.upload.finishedChunkUpload = function (chunk) { - var allFinished = true; - chunk.status = Dropzone.SUCCESS; - - // Clear the data from the chunk - chunk.dataBlock = null; - // Leaving this reference to xhr intact here will cause memory leaks in some browsers - chunk.xhr = null; - - for (var i = 0; i < file.upload.totalChunkCount; i++) { - if (file.upload.chunks[i] === undefined) { - return handleNextChunk(); - } - if (file.upload.chunks[i].status !== Dropzone.SUCCESS) { - allFinished = false; - } - } - - if (allFinished) { - _this14.options.chunksUploaded(file, function () { - _this14._finished(files, '', null); - }); - } - }; - - if (_this14.options.parallelChunkUploads) { - for (var i = 0; i < file.upload.totalChunkCount; i++) { - handleNextChunk(); - } - } else { - handleNextChunk(); - } - } else { - var dataBlocks = []; - for (var _i23 = 0; _i23 < files.length; _i23++) { - dataBlocks[_i23] = { - name: _this14._getParamName(_i23), - data: transformedFiles[_i23], - filename: files[_i23].upload.filename - }; - } - _this14._uploadData(files, dataBlocks); - } - }); - } - - /// Returns the right chunk for given file and xhr - - }, { - key: "_getChunk", - value: function _getChunk(file, xhr) { - for (var i = 0; i < file.upload.totalChunkCount; i++) { - if (file.upload.chunks[i] !== undefined && file.upload.chunks[i].xhr === xhr) { - return file.upload.chunks[i]; - } - } - } - - // This function actually uploads the file(s) to the server. - // If dataBlocks contains the actual data to upload (meaning, that this could either be transformed - // files, or individual chunks for chunked upload). - - }, { - key: "_uploadData", - value: function _uploadData(files, dataBlocks) { - var _this15 = this; - - var xhr = new XMLHttpRequest(); - - // Put the xhr object in the file objects to be able to reference it later. - for (var _iterator22 = files, _isArray22 = true, _i24 = 0, _iterator22 = _isArray22 ? _iterator22 : _iterator22[Symbol.iterator]();;) { - var _ref21; - - if (_isArray22) { - if (_i24 >= _iterator22.length) break; - _ref21 = _iterator22[_i24++]; - } else { - _i24 = _iterator22.next(); - if (_i24.done) break; - _ref21 = _i24.value; - } - - var file = _ref21; - - file.xhr = xhr; - } - if (files[0].upload.chunked) { - // Put the xhr object in the right chunk object, so it can be associated later, and found with _getChunk - files[0].upload.chunks[dataBlocks[0].chunkIndex].xhr = xhr; - } - - var method = this.resolveOption(this.options.method, files); - var url = this.resolveOption(this.options.url, files); - xhr.open(method, url, true); - - // Setting the timeout after open because of IE11 issue: https://gitlab.com/meno/dropzone/issues/8 - xhr.timeout = this.resolveOption(this.options.timeout, files); - - // Has to be after `.open()`. See https://github.com/enyo/dropzone/issues/179 - xhr.withCredentials = !!this.options.withCredentials; - - xhr.onload = function (e) { - _this15._finishedUploading(files, xhr, e); - }; - - xhr.onerror = function () { - _this15._handleUploadError(files, xhr); - }; - - // Some browsers do not have the .upload property - var progressObj = xhr.upload != null ? xhr.upload : xhr; - progressObj.onprogress = function (e) { - return _this15._updateFilesUploadProgress(files, xhr, e); - }; - - var headers = { - "Accept": "application/json", - "Cache-Control": "no-cache", - "X-Requested-With": "XMLHttpRequest" - }; - - if (this.options.headers) { - Dropzone.extend(headers, this.options.headers); - } - - for (var headerName in headers) { - var headerValue = headers[headerName]; - if (headerValue) { - xhr.setRequestHeader(headerName, headerValue); - } - } - - var formData = new FormData(); - - // Adding all @options parameters - if (this.options.params) { - var additionalParams = this.options.params; - if (typeof additionalParams === 'function') { - additionalParams = additionalParams.call(this, files, xhr, files[0].upload.chunked ? this._getChunk(files[0], xhr) : null); - } - - for (var key in additionalParams) { - var value = additionalParams[key]; - formData.append(key, value); - } - } - - // Let the user add additional data if necessary - for (var _iterator23 = files, _isArray23 = true, _i25 = 0, _iterator23 = _isArray23 ? _iterator23 : _iterator23[Symbol.iterator]();;) { - var _ref22; - - if (_isArray23) { - if (_i25 >= _iterator23.length) break; - _ref22 = _iterator23[_i25++]; - } else { - _i25 = _iterator23.next(); - if (_i25.done) break; - _ref22 = _i25.value; - } - - var _file = _ref22; - - this.emit("sending", _file, xhr, formData); - } - if (this.options.uploadMultiple) { - this.emit("sendingmultiple", files, xhr, formData); - } - - this._addFormElementData(formData); - - // Finally add the files - // Has to be last because some servers (eg: S3) expect the file to be the last parameter - for (var i = 0; i < dataBlocks.length; i++) { - var dataBlock = dataBlocks[i]; - formData.append(dataBlock.name, dataBlock.data, dataBlock.filename); - } - - this.submitRequest(xhr, formData, files); - } - - // Transforms all files with this.options.transformFile and invokes done with the transformed files when done. - - }, { - key: "_transformFiles", - value: function _transformFiles(files, done) { - var _this16 = this; - - var transformedFiles = []; - // Clumsy way of handling asynchronous calls, until I get to add a proper Future library. - var doneCounter = 0; - - var _loop = function _loop(i) { - _this16.options.transformFile.call(_this16, files[i], function (transformedFile) { - transformedFiles[i] = transformedFile; - if (++doneCounter === files.length) { - done(transformedFiles); - } - }); - }; - - for (var i = 0; i < files.length; i++) { - _loop(i); - } - } - - // Takes care of adding other input elements of the form to the AJAX request - - }, { - key: "_addFormElementData", - value: function _addFormElementData(formData) { - // Take care of other input elements - if (this.element.tagName === "FORM") { - for (var _iterator24 = this.element.querySelectorAll("input, textarea, select, button"), _isArray24 = true, _i26 = 0, _iterator24 = _isArray24 ? _iterator24 : _iterator24[Symbol.iterator]();;) { - var _ref23; - - if (_isArray24) { - if (_i26 >= _iterator24.length) break; - _ref23 = _iterator24[_i26++]; - } else { - _i26 = _iterator24.next(); - if (_i26.done) break; - _ref23 = _i26.value; - } - - var input = _ref23; - - var inputName = input.getAttribute("name"); - var inputType = input.getAttribute("type"); - if (inputType) inputType = inputType.toLowerCase(); - - // If the input doesn't have a name, we can't use it. - if (typeof inputName === 'undefined' || inputName === null) continue; - - if (input.tagName === "SELECT" && input.hasAttribute("multiple")) { - // Possibly multiple values - for (var _iterator25 = input.options, _isArray25 = true, _i27 = 0, _iterator25 = _isArray25 ? _iterator25 : _iterator25[Symbol.iterator]();;) { - var _ref24; - - if (_isArray25) { - if (_i27 >= _iterator25.length) break; - _ref24 = _iterator25[_i27++]; - } else { - _i27 = _iterator25.next(); - if (_i27.done) break; - _ref24 = _i27.value; - } - - var option = _ref24; - - if (option.selected) { - formData.append(inputName, option.value); - } - } - } else if (!inputType || inputType !== "checkbox" && inputType !== "radio" || input.checked) { - formData.append(inputName, input.value); - } - } - } - } - - // Invoked when there is new progress information about given files. - // If e is not provided, it is assumed that the upload is finished. - - }, { - key: "_updateFilesUploadProgress", - value: function _updateFilesUploadProgress(files, xhr, e) { - var progress = void 0; - if (typeof e !== 'undefined') { - progress = 100 * e.loaded / e.total; - - if (files[0].upload.chunked) { - var file = files[0]; - // Since this is a chunked upload, we need to update the appropriate chunk progress. - var chunk = this._getChunk(file, xhr); - chunk.progress = progress; - chunk.total = e.total; - chunk.bytesSent = e.loaded; - var fileProgress = 0, - fileTotal = void 0, - fileBytesSent = void 0; - file.upload.progress = 0; - file.upload.total = 0; - file.upload.bytesSent = 0; - for (var i = 0; i < file.upload.totalChunkCount; i++) { - if (file.upload.chunks[i] !== undefined && file.upload.chunks[i].progress !== undefined) { - file.upload.progress += file.upload.chunks[i].progress; - file.upload.total += file.upload.chunks[i].total; - file.upload.bytesSent += file.upload.chunks[i].bytesSent; - } - } - file.upload.progress = file.upload.progress / file.upload.totalChunkCount; - } else { - for (var _iterator26 = files, _isArray26 = true, _i28 = 0, _iterator26 = _isArray26 ? _iterator26 : _iterator26[Symbol.iterator]();;) { - var _ref25; - - if (_isArray26) { - if (_i28 >= _iterator26.length) break; - _ref25 = _iterator26[_i28++]; - } else { - _i28 = _iterator26.next(); - if (_i28.done) break; - _ref25 = _i28.value; - } - - var _file2 = _ref25; - - _file2.upload.progress = progress; - _file2.upload.total = e.total; - _file2.upload.bytesSent = e.loaded; - } - } - for (var _iterator27 = files, _isArray27 = true, _i29 = 0, _iterator27 = _isArray27 ? _iterator27 : _iterator27[Symbol.iterator]();;) { - var _ref26; - - if (_isArray27) { - if (_i29 >= _iterator27.length) break; - _ref26 = _iterator27[_i29++]; - } else { - _i29 = _iterator27.next(); - if (_i29.done) break; - _ref26 = _i29.value; - } - - var _file3 = _ref26; - - this.emit("uploadprogress", _file3, _file3.upload.progress, _file3.upload.bytesSent); - } - } else { - // Called when the file finished uploading - - var allFilesFinished = true; - - progress = 100; - - for (var _iterator28 = files, _isArray28 = true, _i30 = 0, _iterator28 = _isArray28 ? _iterator28 : _iterator28[Symbol.iterator]();;) { - var _ref27; - - if (_isArray28) { - if (_i30 >= _iterator28.length) break; - _ref27 = _iterator28[_i30++]; - } else { - _i30 = _iterator28.next(); - if (_i30.done) break; - _ref27 = _i30.value; - } - - var _file4 = _ref27; - - if (_file4.upload.progress !== 100 || _file4.upload.bytesSent !== _file4.upload.total) { - allFilesFinished = false; - } - _file4.upload.progress = progress; - _file4.upload.bytesSent = _file4.upload.total; - } - - // Nothing to do, all files already at 100% - if (allFilesFinished) { - return; - } - - for (var _iterator29 = files, _isArray29 = true, _i31 = 0, _iterator29 = _isArray29 ? _iterator29 : _iterator29[Symbol.iterator]();;) { - var _ref28; - - if (_isArray29) { - if (_i31 >= _iterator29.length) break; - _ref28 = _iterator29[_i31++]; - } else { - _i31 = _iterator29.next(); - if (_i31.done) break; - _ref28 = _i31.value; - } - - var _file5 = _ref28; - - this.emit("uploadprogress", _file5, progress, _file5.upload.bytesSent); - } - } - } - }, { - key: "_finishedUploading", - value: function _finishedUploading(files, xhr, e) { - var response = void 0; - - if (files[0].status === Dropzone.CANCELED) { - return; - } - - if (xhr.readyState !== 4) { - return; - } - - if (xhr.responseType !== 'arraybuffer' && xhr.responseType !== 'blob') { - response = xhr.responseText; - - if (xhr.getResponseHeader("content-type") && ~xhr.getResponseHeader("content-type").indexOf("application/json")) { - try { - response = JSON.parse(response); - } catch (error) { - e = error; - response = "Invalid JSON response from server."; - } - } - } - - this._updateFilesUploadProgress(files); - - if (!(200 <= xhr.status && xhr.status < 300)) { - this._handleUploadError(files, xhr, response); - } else { - if (files[0].upload.chunked) { - files[0].upload.finishedChunkUpload(this._getChunk(files[0], xhr)); - } else { - this._finished(files, response, e); - } - } - } - }, { - key: "_handleUploadError", - value: function _handleUploadError(files, xhr, response) { - if (files[0].status === Dropzone.CANCELED) { - return; - } - - if (files[0].upload.chunked && this.options.retryChunks) { - var chunk = this._getChunk(files[0], xhr); - if (chunk.retries++ < this.options.retryChunksLimit) { - this._uploadData(files, [chunk.dataBlock]); - return; - } else { - console.warn('Retried this chunk too often. Giving up.'); - } - } - - for (var _iterator30 = files, _isArray30 = true, _i32 = 0, _iterator30 = _isArray30 ? _iterator30 : _iterator30[Symbol.iterator]();;) { - var _ref29; - - if (_isArray30) { - if (_i32 >= _iterator30.length) break; - _ref29 = _iterator30[_i32++]; - } else { - _i32 = _iterator30.next(); - if (_i32.done) break; - _ref29 = _i32.value; - } - - var file = _ref29; - - this._errorProcessing(files, response || this.options.dictResponseError.replace("{{statusCode}}", xhr.status), xhr); - } - } - }, { - key: "submitRequest", - value: function submitRequest(xhr, formData, files) { - xhr.send(formData); - } - - // Called internally when processing is finished. - // Individual callbacks have to be called in the appropriate sections. - - }, { - key: "_finished", - value: function _finished(files, responseText, e) { - for (var _iterator31 = files, _isArray31 = true, _i33 = 0, _iterator31 = _isArray31 ? _iterator31 : _iterator31[Symbol.iterator]();;) { - var _ref30; - - if (_isArray31) { - if (_i33 >= _iterator31.length) break; - _ref30 = _iterator31[_i33++]; - } else { - _i33 = _iterator31.next(); - if (_i33.done) break; - _ref30 = _i33.value; - } - - var file = _ref30; - - file.status = Dropzone.SUCCESS; - this.emit("success", file, responseText, e); - this.emit("complete", file); - } - if (this.options.uploadMultiple) { - this.emit("successmultiple", files, responseText, e); - this.emit("completemultiple", files); - } - - if (this.options.autoProcessQueue) { - return this.processQueue(); - } - } - - // Called internally when processing is finished. - // Individual callbacks have to be called in the appropriate sections. - - }, { - key: "_errorProcessing", - value: function _errorProcessing(files, message, xhr) { - for (var _iterator32 = files, _isArray32 = true, _i34 = 0, _iterator32 = _isArray32 ? _iterator32 : _iterator32[Symbol.iterator]();;) { - var _ref31; - - if (_isArray32) { - if (_i34 >= _iterator32.length) break; - _ref31 = _iterator32[_i34++]; - } else { - _i34 = _iterator32.next(); - if (_i34.done) break; - _ref31 = _i34.value; - } - - var file = _ref31; - - file.status = Dropzone.ERROR; - this.emit("error", file, message, xhr); - this.emit("complete", file); - } - if (this.options.uploadMultiple) { - this.emit("errormultiple", files, message, xhr); - this.emit("completemultiple", files); - } - - if (this.options.autoProcessQueue) { - return this.processQueue(); - } - } - }], [{ - key: "uuidv4", - value: function uuidv4() { - return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { - var r = Math.random() * 16 | 0, - v = c === 'x' ? r : r & 0x3 | 0x8; - return v.toString(16); - }); - } - }]); - - return Dropzone; -}(Emitter); - -Dropzone.initClass(); - -Dropzone.version = "5.5.1"; - -// This is a map of options for your different dropzones. Add configurations -// to this object for your different dropzone elemens. -// -// Example: -// -// Dropzone.options.myDropzoneElementId = { maxFilesize: 1 }; -// -// To disable autoDiscover for a specific element, you can set `false` as an option: -// -// Dropzone.options.myDisabledElementId = false; -// -// And in html: -// -//
-Dropzone.options = {}; - -// Returns the options for an element or undefined if none available. -Dropzone.optionsForElement = function (element) { - // Get the `Dropzone.options.elementId` for this element if it exists - if (element.getAttribute("id")) { - return Dropzone.options[camelize(element.getAttribute("id"))]; - } else { - return undefined; - } -}; - -// Holds a list of all dropzone instances -Dropzone.instances = []; - -// Returns the dropzone for given element if any -Dropzone.forElement = function (element) { - if (typeof element === "string") { - element = document.querySelector(element); - } - if ((element != null ? element.dropzone : undefined) == null) { - throw new Error("No Dropzone found for given element. This is probably because you're trying to access it before Dropzone had the time to initialize. Use the `init` option to setup any additional observers on your Dropzone."); - } - return element.dropzone; -}; - -// Set to false if you don't want Dropzone to automatically find and attach to .dropzone elements. -Dropzone.autoDiscover = true; - -// Looks for all .dropzone elements and creates a dropzone for them -Dropzone.discover = function () { - var dropzones = void 0; - if (document.querySelectorAll) { - dropzones = document.querySelectorAll(".dropzone"); - } else { - dropzones = []; - // IE :( - var checkElements = function checkElements(elements) { - return function () { - var result = []; - for (var _iterator33 = elements, _isArray33 = true, _i35 = 0, _iterator33 = _isArray33 ? _iterator33 : _iterator33[Symbol.iterator]();;) { - var _ref32; - - if (_isArray33) { - if (_i35 >= _iterator33.length) break; - _ref32 = _iterator33[_i35++]; - } else { - _i35 = _iterator33.next(); - if (_i35.done) break; - _ref32 = _i35.value; - } - - var el = _ref32; - - if (/(^| )dropzone($| )/.test(el.className)) { - result.push(dropzones.push(el)); - } else { - result.push(undefined); - } - } - return result; - }(); - }; - checkElements(document.getElementsByTagName("div")); - checkElements(document.getElementsByTagName("form")); - } - - return function () { - var result = []; - for (var _iterator34 = dropzones, _isArray34 = true, _i36 = 0, _iterator34 = _isArray34 ? _iterator34 : _iterator34[Symbol.iterator]();;) { - var _ref33; - - if (_isArray34) { - if (_i36 >= _iterator34.length) break; - _ref33 = _iterator34[_i36++]; - } else { - _i36 = _iterator34.next(); - if (_i36.done) break; - _ref33 = _i36.value; - } - - var dropzone = _ref33; - - // Create a dropzone unless auto discover has been disabled for specific element - if (Dropzone.optionsForElement(dropzone) !== false) { - result.push(new Dropzone(dropzone)); - } else { - result.push(undefined); - } - } - return result; - }(); -}; - -// Since the whole Drag'n'Drop API is pretty new, some browsers implement it, -// but not correctly. -// So I created a blacklist of userAgents. Yes, yes. Browser sniffing, I know. -// But what to do when browsers *theoretically* support an API, but crash -// when using it. -// -// This is a list of regular expressions tested against navigator.userAgent -// -// ** It should only be used on browser that *do* support the API, but -// incorrectly ** -// -Dropzone.blacklistedBrowsers = [ -// The mac os and windows phone version of opera 12 seems to have a problem with the File drag'n'drop API. -/opera.*(Macintosh|Windows Phone).*version\/12/i]; - -// Checks if the browser is supported -Dropzone.isBrowserSupported = function () { - var capableBrowser = true; - - if (window.File && window.FileReader && window.FileList && window.Blob && window.FormData && document.querySelector) { - if (!("classList" in document.createElement("a"))) { - capableBrowser = false; - } else { - // The browser supports the API, but may be blacklisted. - for (var _iterator35 = Dropzone.blacklistedBrowsers, _isArray35 = true, _i37 = 0, _iterator35 = _isArray35 ? _iterator35 : _iterator35[Symbol.iterator]();;) { - var _ref34; - - if (_isArray35) { - if (_i37 >= _iterator35.length) break; - _ref34 = _iterator35[_i37++]; - } else { - _i37 = _iterator35.next(); - if (_i37.done) break; - _ref34 = _i37.value; - } - - var regex = _ref34; - - if (regex.test(navigator.userAgent)) { - capableBrowser = false; - continue; - } - } - } - } else { - capableBrowser = false; - } - - return capableBrowser; -}; - -Dropzone.dataURItoBlob = function (dataURI) { - // convert base64 to raw binary data held in a string - // doesn't handle URLEncoded DataURIs - see SO answer #6850276 for code that does this - var byteString = atob(dataURI.split(',')[1]); - - // separate out the mime component - var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0]; - - // write the bytes of the string to an ArrayBuffer - var ab = new ArrayBuffer(byteString.length); - var ia = new Uint8Array(ab); - for (var i = 0, end = byteString.length, asc = 0 <= end; asc ? i <= end : i >= end; asc ? i++ : i--) { - ia[i] = byteString.charCodeAt(i); - } - - // write the ArrayBuffer to a blob - return new Blob([ab], { type: mimeString }); -}; - -// Returns an array without the rejected item -var without = function without(list, rejectedItem) { - return list.filter(function (item) { - return item !== rejectedItem; - }).map(function (item) { - return item; - }); -}; - -// abc-def_ghi -> abcDefGhi -var camelize = function camelize(str) { - return str.replace(/[\-_](\w)/g, function (match) { - return match.charAt(1).toUpperCase(); - }); -}; - -// Creates an element from string -Dropzone.createElement = function (string) { - var div = document.createElement("div"); - div.innerHTML = string; - return div.childNodes[0]; -}; - -// Tests if given element is inside (or simply is) the container -Dropzone.elementInside = function (element, container) { - if (element === container) { - return true; - } // Coffeescript doesn't support do/while loops - while (element = element.parentNode) { - if (element === container) { - return true; - } - } - return false; -}; - -Dropzone.getElement = function (el, name) { - var element = void 0; - if (typeof el === "string") { - element = document.querySelector(el); - } else if (el.nodeType != null) { - element = el; - } - if (element == null) { - throw new Error("Invalid `" + name + "` option provided. Please provide a CSS selector or a plain HTML element."); - } - return element; -}; - -Dropzone.getElements = function (els, name) { - var el = void 0, - elements = void 0; - if (els instanceof Array) { - elements = []; - try { - for (var _iterator36 = els, _isArray36 = true, _i38 = 0, _iterator36 = _isArray36 ? _iterator36 : _iterator36[Symbol.iterator]();;) { - if (_isArray36) { - if (_i38 >= _iterator36.length) break; - el = _iterator36[_i38++]; - } else { - _i38 = _iterator36.next(); - if (_i38.done) break; - el = _i38.value; - } - - elements.push(this.getElement(el, name)); - } - } catch (e) { - elements = null; - } - } else if (typeof els === "string") { - elements = []; - for (var _iterator37 = document.querySelectorAll(els), _isArray37 = true, _i39 = 0, _iterator37 = _isArray37 ? _iterator37 : _iterator37[Symbol.iterator]();;) { - if (_isArray37) { - if (_i39 >= _iterator37.length) break; - el = _iterator37[_i39++]; - } else { - _i39 = _iterator37.next(); - if (_i39.done) break; - el = _i39.value; - } - - elements.push(el); - } - } else if (els.nodeType != null) { - elements = [els]; - } - - if (elements == null || !elements.length) { - throw new Error("Invalid `" + name + "` option provided. Please provide a CSS selector, a plain HTML element or a list of those."); - } - - return elements; -}; - -// Asks the user the question and calls accepted or rejected accordingly -// -// The default implementation just uses `window.confirm` and then calls the -// appropriate callback. -Dropzone.confirm = function (question, accepted, rejected) { - if (window.confirm(question)) { - return accepted(); - } else if (rejected != null) { - return rejected(); - } -}; - -// Validates the mime type like this: -// -// https://developer.mozilla.org/en-US/docs/HTML/Element/input#attr-accept -Dropzone.isValidFile = function (file, acceptedFiles) { - if (!acceptedFiles) { - return true; - } // If there are no accepted mime types, it's OK - acceptedFiles = acceptedFiles.split(","); - - var mimeType = file.type; - var baseMimeType = mimeType.replace(/\/.*$/, ""); - - for (var _iterator38 = acceptedFiles, _isArray38 = true, _i40 = 0, _iterator38 = _isArray38 ? _iterator38 : _iterator38[Symbol.iterator]();;) { - var _ref35; - - if (_isArray38) { - if (_i40 >= _iterator38.length) break; - _ref35 = _iterator38[_i40++]; - } else { - _i40 = _iterator38.next(); - if (_i40.done) break; - _ref35 = _i40.value; - } - - var validType = _ref35; - - validType = validType.trim(); - if (validType.charAt(0) === ".") { - if (file.name.toLowerCase().indexOf(validType.toLowerCase(), file.name.length - validType.length) !== -1) { - return true; - } - } else if (/\/\*$/.test(validType)) { - // This is something like a image/* mime type - if (baseMimeType === validType.replace(/\/.*$/, "")) { - return true; - } - } else { - if (mimeType === validType) { - return true; - } - } - } - - return false; -}; - -// Augment jQuery -if (typeof jQuery !== 'undefined' && jQuery !== null) { - jQuery.fn.dropzone = function (options) { - return this.each(function () { - return new Dropzone(this, options); - }); - }; -} - -if (typeof module !== 'undefined' && module !== null) { - module.exports = Dropzone; -} else { - window.Dropzone = Dropzone; -} - -// Dropzone file status codes -Dropzone.ADDED = "added"; - -Dropzone.QUEUED = "queued"; -// For backwards compatibility. Now, if a file is accepted, it's either queued -// or uploading. -Dropzone.ACCEPTED = Dropzone.QUEUED; - -Dropzone.UPLOADING = "uploading"; -Dropzone.PROCESSING = Dropzone.UPLOADING; // alias - -Dropzone.CANCELED = "canceled"; -Dropzone.ERROR = "error"; -Dropzone.SUCCESS = "success"; - -/* - - Bugfix for iOS 6 and 7 - Source: http://stackoverflow.com/questions/11929099/html5-canvas-drawimage-ratio-bug-ios - based on the work of https://github.com/stomita/ios-imagefile-megapixel - - */ - -// Detecting vertical squash in loaded image. -// Fixes a bug which squash image vertically while drawing into canvas for some images. -// This is a bug in iOS6 devices. This function from https://github.com/stomita/ios-imagefile-megapixel -var detectVerticalSquash = function detectVerticalSquash(img) { - var iw = img.naturalWidth; - var ih = img.naturalHeight; - var canvas = document.createElement("canvas"); - canvas.width = 1; - canvas.height = ih; - var ctx = canvas.getContext("2d"); - ctx.drawImage(img, 0, 0); - - var _ctx$getImageData = ctx.getImageData(1, 0, 1, ih), - data = _ctx$getImageData.data; - - // search image edge pixel position in case it is squashed vertically. - - - var sy = 0; - var ey = ih; - var py = ih; - while (py > sy) { - var alpha = data[(py - 1) * 4 + 3]; - - if (alpha === 0) { - ey = py; - } else { - sy = py; - } - - py = ey + sy >> 1; - } - var ratio = py / ih; - - if (ratio === 0) { - return 1; - } else { - return ratio; - } -}; - -// A replacement for context.drawImage -// (args are for source and destination). -var drawImageIOSFix = function drawImageIOSFix(ctx, img, sx, sy, sw, sh, dx, dy, dw, dh) { - var vertSquashRatio = detectVerticalSquash(img); - return ctx.drawImage(img, sx, sy, sw, sh, dx, dy, dw, dh / vertSquashRatio); -}; - -// Based on MinifyJpeg -// Source: http://www.perry.cz/files/ExifRestorer.js -// http://elicon.blog57.fc2.com/blog-entry-206.html - -var ExifRestore = function () { - function ExifRestore() { - _classCallCheck(this, ExifRestore); - } - - _createClass(ExifRestore, null, [{ - key: "initClass", - value: function initClass() { - this.KEY_STR = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; - } - }, { - key: "encode64", - value: function encode64(input) { - var output = ''; - var chr1 = undefined; - var chr2 = undefined; - var chr3 = ''; - var enc1 = undefined; - var enc2 = undefined; - var enc3 = undefined; - var enc4 = ''; - var i = 0; - while (true) { - chr1 = input[i++]; - chr2 = input[i++]; - chr3 = input[i++]; - enc1 = chr1 >> 2; - enc2 = (chr1 & 3) << 4 | chr2 >> 4; - enc3 = (chr2 & 15) << 2 | chr3 >> 6; - enc4 = chr3 & 63; - if (isNaN(chr2)) { - enc3 = enc4 = 64; - } else if (isNaN(chr3)) { - enc4 = 64; - } - output = output + this.KEY_STR.charAt(enc1) + this.KEY_STR.charAt(enc2) + this.KEY_STR.charAt(enc3) + this.KEY_STR.charAt(enc4); - chr1 = chr2 = chr3 = ''; - enc1 = enc2 = enc3 = enc4 = ''; - if (!(i < input.length)) { - break; - } - } - return output; - } - }, { - key: "restore", - value: function restore(origFileBase64, resizedFileBase64) { - if (!origFileBase64.match('data:image/jpeg;base64,')) { - return resizedFileBase64; - } - var rawImage = this.decode64(origFileBase64.replace('data:image/jpeg;base64,', '')); - var segments = this.slice2Segments(rawImage); - var image = this.exifManipulation(resizedFileBase64, segments); - return "data:image/jpeg;base64," + this.encode64(image); - } - }, { - key: "exifManipulation", - value: function exifManipulation(resizedFileBase64, segments) { - var exifArray = this.getExifArray(segments); - var newImageArray = this.insertExif(resizedFileBase64, exifArray); - var aBuffer = new Uint8Array(newImageArray); - return aBuffer; - } - }, { - key: "getExifArray", - value: function getExifArray(segments) { - var seg = undefined; - var x = 0; - while (x < segments.length) { - seg = segments[x]; - if (seg[0] === 255 & seg[1] === 225) { - return seg; - } - x++; - } - return []; - } - }, { - key: "insertExif", - value: function insertExif(resizedFileBase64, exifArray) { - var imageData = resizedFileBase64.replace('data:image/jpeg;base64,', ''); - var buf = this.decode64(imageData); - var separatePoint = buf.indexOf(255, 3); - var mae = buf.slice(0, separatePoint); - var ato = buf.slice(separatePoint); - var array = mae; - array = array.concat(exifArray); - array = array.concat(ato); - return array; - } - }, { - key: "slice2Segments", - value: function slice2Segments(rawImageArray) { - var head = 0; - var segments = []; - while (true) { - var length; - if (rawImageArray[head] === 255 & rawImageArray[head + 1] === 218) { - break; - } - if (rawImageArray[head] === 255 & rawImageArray[head + 1] === 216) { - head += 2; - } else { - length = rawImageArray[head + 2] * 256 + rawImageArray[head + 3]; - var endPoint = head + length + 2; - var seg = rawImageArray.slice(head, endPoint); - segments.push(seg); - head = endPoint; - } - if (head > rawImageArray.length) { - break; - } - } - return segments; - } - }, { - key: "decode64", - value: function decode64(input) { - var output = ''; - var chr1 = undefined; - var chr2 = undefined; - var chr3 = ''; - var enc1 = undefined; - var enc2 = undefined; - var enc3 = undefined; - var enc4 = ''; - var i = 0; - var buf = []; - // remove all characters that are not A-Z, a-z, 0-9, +, /, or = - var base64test = /[^A-Za-z0-9\+\/\=]/g; - if (base64test.exec(input)) { - console.warn('There were invalid base64 characters in the input text.\nValid base64 characters are A-Z, a-z, 0-9, \'+\', \'/\',and \'=\'\nExpect errors in decoding.'); - } - input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ''); - while (true) { - enc1 = this.KEY_STR.indexOf(input.charAt(i++)); - enc2 = this.KEY_STR.indexOf(input.charAt(i++)); - enc3 = this.KEY_STR.indexOf(input.charAt(i++)); - enc4 = this.KEY_STR.indexOf(input.charAt(i++)); - chr1 = enc1 << 2 | enc2 >> 4; - chr2 = (enc2 & 15) << 4 | enc3 >> 2; - chr3 = (enc3 & 3) << 6 | enc4; - buf.push(chr1); - if (enc3 !== 64) { - buf.push(chr2); - } - if (enc4 !== 64) { - buf.push(chr3); - } - chr1 = chr2 = chr3 = ''; - enc1 = enc2 = enc3 = enc4 = ''; - if (!(i < input.length)) { - break; - } - } - return buf; - } - }]); - - return ExifRestore; -}(); - -ExifRestore.initClass(); - -/* - * contentloaded.js - * - * Author: Diego Perini (diego.perini at gmail.com) - * Summary: cross-browser wrapper for DOMContentLoaded - * Updated: 20101020 - * License: MIT - * Version: 1.2 - * - * URL: - * http://javascript.nwbox.com/ContentLoaded/ - * http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE - */ - -// @win window reference -// @fn function reference -var contentLoaded = function contentLoaded(win, fn) { - var done = false; - var top = true; - var doc = win.document; - var root = doc.documentElement; - var add = doc.addEventListener ? "addEventListener" : "attachEvent"; - var rem = doc.addEventListener ? "removeEventListener" : "detachEvent"; - var pre = doc.addEventListener ? "" : "on"; - var init = function init(e) { - if (e.type === "readystatechange" && doc.readyState !== "complete") { - return; - } - (e.type === "load" ? win : doc)[rem](pre + e.type, init, false); - if (!done && (done = true)) { - return fn.call(win, e.type || e); - } - }; - - var poll = function poll() { - try { - root.doScroll("left"); - } catch (e) { - setTimeout(poll, 50); - return; - } - return init("poll"); - }; - - if (doc.readyState !== "complete") { - if (doc.createEventObject && root.doScroll) { - try { - top = !win.frameElement; - } catch (error) {} - if (top) { - poll(); - } - } - doc[add](pre + "DOMContentLoaded", init, false); - doc[add](pre + "readystatechange", init, false); - return win[add](pre + "load", init, false); - } -}; - -// As a single function to be able to write tests. -Dropzone._autoDiscoverFunction = function () { - if (Dropzone.autoDiscover) { - return Dropzone.discover(); - } -}; -contentLoaded(window, Dropzone._autoDiscoverFunction); - -function __guard__(value, transform) { - return typeof value !== 'undefined' && value !== null ? transform(value) : undefined; -} -function __guardMethod__(obj, methodName, transform) { - if (typeof obj !== 'undefined' && obj !== null && typeof obj[methodName] === 'function') { - return transform(obj, methodName); - } else { - return undefined; - } -} diff --git a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap-world-mill-en.js b/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap-world-mill-en.js deleted file mode 100755 index fa6639a3..00000000 --- a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap-world-mill-en.js +++ /dev/null @@ -1 +0,0 @@ -jQuery.fn.vectorMap('addMap', 'world_mill_en',{"insets": [{"width": 900, "top": 0, "height": 440.70631074413296, "bbox": [{"y": -12671671.123330014, "x": -20004297.151525836}, {"y": 6930392.025135122, "x": 20026572.39474939}], "left": 0}], "paths": {"BD": {"path": "M651.84,230.21l-0.6,-2.0l-1.36,-1.71l-2.31,-0.11l-0.41,0.48l0.2,0.94l-0.53,0.99l-0.72,-0.36l-0.68,0.35l-1.2,-0.36l-0.37,-2.0l-0.81,-1.86l0.39,-1.46l-0.22,-0.47l-1.14,-0.53l0.29,-0.5l1.48,-0.94l0.03,-0.65l-1.55,-1.22l0.55,-1.14l1.61,0.94l1.04,0.15l0.18,1.54l0.34,0.35l5.64,0.63l-0.84,1.64l-1.22,0.34l-0.77,1.51l0.07,0.47l1.37,1.37l0.67,-0.19l0.42,-1.39l1.21,3.84l-0.03,1.21l-0.33,-0.15l-0.4,0.28Z", "name": "Bangladesh"}, "BE": {"path": "M429.29,144.05l1.91,0.24l2.1,-0.63l2.63,1.99l-0.21,1.66l-0.69,0.4l-0.18,1.2l-1.66,-1.13l-1.39,0.15l-2.73,-2.7l-1.17,-0.18l-0.16,-0.52l1.54,-0.5Z", "name": "Belgium"}, "BF": {"path": "M421.42,247.64l-0.11,0.95l0.34,1.16l1.4,1.71l0.07,1.1l0.32,0.37l2.55,0.51l-0.04,1.28l-0.38,0.53l-1.07,0.21l-0.72,1.18l-0.63,0.21l-3.22,-0.25l-0.94,0.39l-5.4,-0.05l-0.39,0.38l0.16,2.73l-1.23,-0.43l-1.17,0.1l-0.89,0.57l-2.27,-1.72l-0.13,-1.11l0.61,-0.96l0.02,-0.93l1.87,-1.98l0.44,-1.81l0.43,-0.39l1.28,0.26l1.05,-0.52l0.47,-0.73l1.84,-1.09l0.55,-0.83l2.2,-1.0l1.15,-0.3l0.72,0.45l1.13,-0.01Z", "name": "Burkina Faso"}, "BG": {"path": "M491.65,168.18l-0.86,0.88l-0.91,2.17l0.48,1.34l-1.6,-0.24l-2.55,0.95l-0.28,1.51l-1.8,0.22l-2.0,-1.0l-1.92,0.79l-1.42,-0.07l-0.15,-1.63l-1.05,-0.97l0.0,-0.8l1.2,-1.57l0.01,-0.56l-1.14,-1.23l-0.05,-0.94l0.88,0.97l0.88,-0.2l1.91,0.47l3.68,0.16l1.42,-0.81l2.72,-0.66l2.55,1.24Z", "name": "Bulgaria"}, "BA": {"path": "M463.49,163.65l2.1,0.5l1.72,-0.03l1.52,0.68l-0.36,0.78l0.08,0.45l1.04,1.02l-0.25,0.98l-1.81,1.15l-0.38,1.38l-1.67,-0.87l-0.89,-1.2l-2.11,-1.83l-1.63,-2.22l0.23,-0.57l0.48,0.38l0.55,-0.06l0.43,-0.51l0.94,-0.06Z", "name": "Bosnia and Herz."}, "BN": {"path": "M707.48,273.58l0.68,-0.65l1.41,-0.91l-0.15,1.63l-0.81,-0.05l-0.61,0.58l-0.53,-0.6Z", "name": "Brunei"}, "BO": {"path": "M263.83,340.69l-3.09,-0.23l-0.38,0.23l-0.7,1.52l-1.31,-1.53l-3.28,-0.64l-2.37,2.4l-1.31,0.26l-0.88,-3.26l-1.3,-2.86l0.74,-2.37l-0.13,-0.43l-1.2,-1.01l-0.37,-1.89l-1.08,-1.55l1.45,-2.56l-0.96,-2.33l0.47,-1.06l-0.34,-0.73l0.91,-1.32l0.16,-3.84l0.5,-1.18l-1.81,-3.41l2.46,0.07l0.8,-0.85l3.4,-1.91l2.66,-0.35l-0.19,1.38l0.3,1.07l-0.05,1.97l2.72,2.27l2.88,0.49l0.89,0.86l1.79,0.58l0.98,0.7l1.71,0.05l1.17,0.61l0.6,2.7l-0.7,0.54l0.96,2.99l0.37,0.28l4.3,0.1l-0.25,1.2l0.27,1.02l1.43,0.9l0.5,1.35l-0.41,1.86l-0.65,1.08l0.12,1.35l-2.69,-1.65l-2.4,-0.03l-4.36,0.76l-1.49,2.5l-0.11,1.52l-0.75,2.37Z", "name": "Bolivia"}, "JP": {"path": "M781.12,166.87l1.81,0.68l1.62,-0.97l0.39,2.42l-3.35,0.75l-2.23,2.88l-3.63,-1.9l-0.56,0.2l-1.26,3.05l-2.16,0.03l-0.29,-2.51l1.08,-2.03l2.45,-0.16l0.37,-0.33l1.25,-5.94l2.47,2.71l2.03,1.12ZM773.56,187.34l-0.91,2.22l0.37,1.52l-1.14,1.75l-3.02,1.26l-4.58,0.27l-3.34,3.01l-1.25,-0.8l-0.09,-1.9l-0.46,-0.38l-4.35,0.62l-3.0,1.32l-2.85,0.05l-0.37,0.27l0.13,0.44l2.32,1.89l-1.54,4.34l-1.26,0.9l-0.79,-0.7l0.56,-2.27l-0.21,-0.45l-1.47,-0.75l-0.74,-1.4l2.12,-0.84l1.26,-1.7l2.45,-1.42l1.83,-1.91l4.78,-0.81l2.6,0.57l0.44,-0.21l2.39,-4.66l1.29,1.06l0.5,0.01l5.1,-4.02l1.69,-3.73l-0.38,-3.4l0.9,-1.61l2.14,-0.44l1.23,3.72l-0.07,2.18l-2.23,2.84l-0.04,3.16ZM757.78,196.26l0.19,0.56l-1.01,1.21l-1.16,-0.68l-1.28,0.65l-0.69,1.45l-1.02,-0.5l0.01,-0.93l1.14,-1.38l1.57,0.14l0.85,-0.98l1.4,0.46Z", "name": "Japan"}, "BI": {"path": "M495.45,295.49l-1.08,-2.99l1.14,-0.11l0.64,-1.19l0.76,0.09l0.65,1.83l-2.1,2.36Z", "name": "Burundi"}, "BJ": {"path": "M429.57,255.75l-0.05,0.8l0.5,1.34l-0.42,0.86l0.17,0.79l-1.81,2.12l-0.57,1.76l-0.08,5.42l-1.41,0.2l-0.48,-1.36l0.11,-5.71l-0.52,-0.7l-0.2,-1.35l-1.48,-1.48l0.21,-0.9l0.89,-0.43l0.42,-0.92l1.27,-0.36l1.22,-1.34l0.61,-0.0l1.62,1.24Z", "name": "Benin"}, "BT": {"path": "M650.32,213.86l0.84,0.71l-0.12,1.1l-3.76,-0.11l-1.57,0.4l-1.93,-0.87l1.48,-1.96l1.13,-0.57l1.63,0.57l1.33,0.08l0.99,0.65Z", "name": "Bhutan"}, "JM": {"path": "M228.38,239.28l-0.8,0.4l-2.26,-1.06l0.84,-0.23l2.14,0.3l1.17,0.56l-1.08,0.03Z", "name": "Jamaica"}, "BW": {"path": "M483.92,330.07l2.27,4.01l2.83,2.86l0.96,0.31l0.78,2.43l2.13,0.61l1.02,0.76l-3.0,1.64l-2.32,2.02l-1.54,2.69l-1.52,0.45l-0.64,1.94l-1.34,0.52l-1.85,-0.12l-1.21,-0.74l-1.35,-0.3l-1.22,0.62l-0.75,1.37l-2.31,1.9l-1.4,0.21l-0.35,-0.59l0.16,-1.75l-1.48,-2.54l-0.62,-0.43l-0.0,-7.1l2.08,-0.08l0.39,-0.4l0.07,-8.9l5.19,-0.93l0.8,0.89l0.51,0.07l1.5,-0.95l2.21,-0.49Z", "name": "Botswana"}, "BR": {"path": "M259.98,275.05l3.24,0.7l0.65,-0.53l4.55,-1.32l1.08,-1.06l-0.02,-0.63l0.55,-0.05l0.28,0.28l-0.26,0.87l0.22,0.48l0.73,0.32l0.4,0.81l-0.62,0.86l-0.4,2.13l0.82,2.56l1.69,1.43l1.43,0.2l3.17,-1.68l3.18,0.3l0.65,-0.75l-0.27,-0.92l1.9,-0.09l2.39,0.99l1.06,-0.61l0.84,0.78l1.2,-0.18l1.18,-1.06l0.84,-1.94l1.36,-2.11l0.37,-0.05l1.89,5.45l1.33,0.59l0.05,1.28l-1.77,1.94l0.02,0.56l1.02,0.87l4.07,0.36l0.08,2.16l0.66,0.29l1.74,-1.5l6.97,2.32l1.02,1.22l-0.35,1.18l0.49,0.5l2.81,-0.74l4.77,1.3l3.75,-0.08l3.57,2.0l3.29,2.86l1.93,0.72l2.12,0.12l0.71,0.62l1.21,4.51l-0.95,3.98l-4.72,5.06l-1.64,2.92l-1.72,2.05l-0.8,0.3l-0.72,2.03l0.18,4.75l-0.94,5.53l-0.81,1.13l-0.43,3.36l-2.55,3.5l-0.4,2.51l-1.86,1.04l-0.67,1.53l-2.54,0.01l-3.94,1.01l-1.83,1.2l-2.87,0.82l-3.03,2.19l-2.2,2.83l-0.36,2.0l0.4,1.58l-0.44,2.6l-0.51,1.2l-1.77,1.54l-2.75,4.78l-3.83,3.42l-1.24,2.74l-1.18,1.15l-0.36,-0.83l0.95,-1.14l0.01,-0.5l-1.52,-1.97l-4.56,-3.32l-1.03,-0.0l-2.38,-2.02l-0.81,-0.0l5.34,-5.45l3.77,-2.58l0.22,-2.46l-1.35,-1.81l-0.91,0.07l0.58,-2.33l0.01,-1.54l-1.11,-0.83l-1.75,0.3l-0.44,-3.11l-0.52,-0.95l-1.88,-0.88l-1.24,0.47l-2.17,-0.41l0.15,-3.21l-0.62,-1.34l0.66,-0.73l-0.22,-1.34l0.66,-1.13l0.44,-2.04l-0.61,-1.83l-1.4,-0.86l-0.2,-0.75l0.34,-1.39l-0.38,-0.5l-4.52,-0.1l-0.72,-2.22l0.59,-0.42l-0.03,-1.1l-0.5,-0.87l-0.32,-1.7l-1.45,-0.76l-1.63,-0.02l-1.05,-0.72l-1.6,-0.48l-1.13,-0.99l-2.69,-0.4l-2.47,-2.06l0.13,-4.35l-0.45,-0.45l-3.46,0.5l-3.44,1.94l-0.6,0.74l-2.9,-0.17l-1.47,0.42l-0.72,-0.18l0.15,-3.52l-0.63,-0.34l-1.94,1.41l-1.87,-0.06l-0.83,-1.18l-1.37,-0.26l0.21,-1.01l-1.35,-1.49l-0.88,-1.91l0.56,-0.6l-0.0,-0.81l1.29,-0.62l0.22,-0.43l-0.22,-1.19l0.61,-0.91l0.15,-0.99l2.65,-1.58l1.99,-0.47l0.42,-0.36l2.06,0.11l0.42,-0.33l1.19,-8.0l-0.41,-1.56l-1.1,-1.0l0.01,-1.33l1.91,-0.42l0.08,-0.96l-0.33,-0.43l-1.14,-0.2l-0.02,-0.83l4.47,0.05l0.82,-0.67l0.82,1.81l0.8,0.07l1.15,1.1l2.26,-0.05l0.71,-0.83l2.78,-0.96l0.48,-1.13l1.6,-0.64l0.24,-0.47l-0.48,-0.82l-1.83,-0.19l-0.36,-3.22Z", "name": "Brazil"}, "BS": {"path": "M226.4,223.87l-0.48,-1.15l-0.84,-0.75l0.36,-1.11l0.95,1.95l0.01,1.06ZM225.56,216.43l-1.87,0.29l-0.04,-0.22l0.74,-0.14l1.17,0.06Z", "name": "Bahamas"}, "BY": {"path": "M493.84,128.32l0.29,0.7l0.49,0.23l1.19,-0.38l2.09,0.72l0.19,1.26l-0.45,1.24l1.57,2.26l0.89,0.59l0.17,0.81l1.58,0.56l0.4,0.5l-0.53,0.41l-1.87,-0.11l-0.73,0.38l-0.13,0.52l1.04,2.74l-1.91,0.26l-0.89,0.99l-0.11,1.18l-2.73,-0.04l-0.53,-0.62l-0.52,-0.08l-0.75,0.46l-0.91,-0.42l-1.92,-0.07l-2.75,-0.79l-2.6,-0.28l-2.0,0.07l-1.5,0.92l-0.67,0.07l-0.08,-1.22l-0.59,-1.19l1.36,-0.88l0.01,-1.35l-0.7,-1.41l-0.07,-1.0l2.16,-0.02l2.72,-1.3l0.75,-2.04l1.91,-1.04l0.2,-0.41l-0.19,-1.25l3.8,-1.78l2.3,0.77Z", "name": "Belarus"}, "BZ": {"path": "M198.03,244.38l0.1,-4.49l0.69,-0.06l0.74,-1.3l0.34,0.28l-0.4,1.3l0.17,0.58l-0.34,2.25l-1.3,1.42Z", "name": "Belize"}, "RU": {"path": "M491.55,115.25l2.55,-1.85l-0.01,-0.65l-2.2,-1.5l7.32,-6.76l1.03,-2.11l-0.13,-0.49l-3.46,-2.52l0.86,-2.7l-2.11,-2.81l1.56,-3.67l-2.77,-4.52l2.15,-2.99l-0.08,-0.55l-3.65,-2.73l0.3,-2.54l1.81,-0.37l4.26,-1.77l2.42,-1.45l4.06,2.61l6.79,1.04l9.34,4.85l1.78,1.88l0.14,2.46l-2.55,2.02l-3.9,1.06l-11.07,-3.14l-2.06,0.53l-0.13,0.7l3.94,2.94l0.31,5.86l0.26,0.36l5.14,2.24l0.58,-0.29l0.32,-1.94l-1.35,-1.78l1.13,-1.09l6.13,2.42l2.11,-0.98l0.18,-0.56l-1.51,-2.67l5.41,-3.76l2.07,0.22l2.26,1.41l0.57,-0.16l1.46,-2.87l-0.05,-0.44l-1.92,-2.32l1.12,-2.32l-1.32,-2.27l5.87,1.16l1.04,1.75l-2.59,0.43l-0.33,0.4l0.02,2.36l2.46,1.83l3.87,-0.91l0.86,-2.8l13.69,-5.65l0.99,0.11l-1.92,2.06l0.23,0.67l3.11,0.45l2.0,-1.48l4.56,-0.12l3.64,-1.73l2.65,2.44l0.56,-0.01l2.85,-2.88l-0.01,-0.57l-2.35,-2.29l0.9,-1.01l7.14,1.3l3.41,1.36l9.05,4.97l0.51,-0.11l1.67,-2.27l-0.05,-0.53l-2.43,-2.21l-0.06,-0.78l-0.34,-0.36l-2.52,-0.36l0.64,-1.93l-1.32,-3.46l-0.06,-1.21l4.48,-4.06l1.69,-4.29l1.6,-0.81l6.23,1.18l0.44,2.21l-2.29,3.64l0.06,0.5l1.47,1.39l0.76,3.0l-0.56,6.03l2.69,2.82l-0.96,2.57l-4.86,5.95l0.23,0.64l2.86,0.61l0.42,-0.17l0.93,-1.4l2.64,-1.03l0.87,-2.24l2.09,-1.96l0.07,-0.5l-1.36,-2.28l1.09,-2.69l-0.32,-0.55l-2.47,-0.33l-0.5,-2.06l1.94,-4.38l-0.06,-0.42l-2.96,-3.4l4.12,-2.88l0.16,-0.4l-0.51,-2.93l0.54,-0.05l1.13,2.25l-0.96,4.35l0.27,0.47l2.68,0.84l0.5,-0.51l-1.02,-2.99l3.79,-1.66l5.01,-0.24l4.53,2.61l0.48,-0.06l0.07,-0.48l-2.18,-3.82l-0.23,-4.67l3.98,-0.9l5.97,0.21l5.49,-0.64l0.27,-0.65l-1.83,-2.31l2.56,-2.9l2.87,-0.17l4.8,-2.47l6.54,-0.67l1.03,-1.42l6.25,-0.45l2.32,1.11l5.53,-2.7l4.5,0.08l0.39,-0.28l0.66,-2.15l2.26,-2.12l5.69,-2.11l3.21,1.29l-2.46,0.94l-0.25,0.42l0.34,0.35l5.41,0.77l0.61,2.33l0.58,0.25l2.2,-1.22l7.13,0.07l5.51,2.47l1.79,1.72l-0.53,2.24l-9.16,4.15l-1.97,1.52l0.16,0.71l6.77,1.91l2.16,-0.78l1.13,2.74l0.67,0.11l1.01,-1.15l3.81,-0.73l7.7,0.77l0.54,1.99l0.36,0.29l10.47,0.71l0.43,-0.38l0.13,-3.23l4.87,0.78l3.95,-0.02l3.83,2.4l1.03,2.71l-1.35,1.79l0.02,0.5l3.15,3.64l4.07,1.96l0.53,-0.18l2.23,-4.47l3.95,1.93l4.16,-1.21l4.73,1.39l2.05,-1.26l3.94,0.62l0.43,-0.55l-1.68,-4.02l2.89,-1.8l22.31,3.03l2.16,2.75l6.55,3.51l10.29,-0.81l4.82,0.73l1.85,1.66l-0.29,3.08l0.25,0.41l3.08,1.26l3.56,-0.88l4.35,-0.11l4.8,0.87l4.57,-0.47l4.23,3.79l0.43,0.07l3.1,-1.4l0.16,-0.6l-1.88,-2.62l0.85,-1.52l7.71,1.21l5.22,-0.26l7.09,2.09l9.59,5.22l6.35,4.11l-0.2,2.38l1.88,1.41l0.6,-0.42l-0.48,-2.53l6.15,0.57l4.4,3.51l-1.97,1.43l-4.0,0.41l-0.36,0.39l-0.06,3.79l-0.74,0.62l-2.07,-0.11l-1.91,-1.39l-3.14,-1.11l-0.78,-1.85l-2.72,-0.68l-2.63,0.49l-1.04,-1.1l0.46,-1.31l-0.5,-0.51l-3.0,0.98l-0.22,0.58l0.99,1.7l-1.21,1.48l-3.04,1.68l-3.12,-0.28l-0.4,0.23l0.09,0.46l2.2,2.09l1.46,3.2l1.15,1.1l0.24,1.33l-0.42,0.67l-4.63,-0.77l-6.96,2.9l-2.19,0.44l-7.6,5.06l-0.84,1.45l-3.61,-2.37l-6.24,2.82l-0.94,-1.15l-0.53,-0.08l-2.28,1.52l-3.2,-0.49l-0.44,0.27l-0.78,2.37l-3.05,3.78l0.09,1.47l0.29,0.36l2.54,0.72l-0.29,4.53l-1.97,0.11l-0.35,0.26l-1.07,2.94l0.8,1.45l-3.91,1.58l-1.05,3.95l-3.48,0.77l-0.3,0.3l-0.72,3.29l-3.09,2.65l-0.7,-1.74l-2.44,-12.44l1.16,-4.71l2.04,-2.06l0.22,-1.64l3.8,-0.86l4.46,-4.61l4.28,-3.81l4.48,-3.01l2.17,-5.63l-0.42,-0.54l-3.04,0.33l-1.77,3.31l-5.86,3.86l-1.86,-4.25l-0.45,-0.23l-6.46,1.3l-6.47,6.44l-0.01,0.55l1.58,1.74l-8.24,1.17l0.15,-2.2l-0.34,-0.42l-3.89,-0.56l-3.25,1.81l-7.62,-0.62l-8.45,1.19l-17.71,15.41l0.22,0.7l3.74,0.41l1.36,2.17l2.43,0.76l1.88,-1.68l2.4,0.2l3.4,3.54l0.08,2.6l-1.95,3.42l-0.21,3.9l-1.1,5.06l-3.71,4.54l-0.87,2.21l-8.29,8.89l-3.19,1.7l-1.32,0.03l-1.45,-1.36l-0.49,-0.04l-2.27,1.5l0.41,-3.65l-0.59,-2.47l1.75,-0.89l2.91,0.53l0.42,-0.2l1.68,-3.03l0.87,-3.46l0.97,-1.18l1.32,-2.88l-0.45,-0.56l-4.14,0.95l-2.19,1.25l-3.41,-0.0l-1.06,-2.93l-2.97,-2.3l-4.28,-1.06l-1.75,-5.07l-2.66,-5.01l-2.29,-1.29l-3.75,-1.01l-3.44,0.08l-3.18,0.62l-2.24,1.77l0.05,0.66l1.18,0.69l0.02,1.43l-1.33,1.05l-2.26,3.51l-0.04,1.43l-3.16,1.84l-2.82,-1.16l-3.01,0.23l-1.35,-1.07l-1.5,-0.35l-3.9,2.31l-3.22,0.52l-2.27,0.79l-3.05,-0.51l-2.21,0.03l-1.48,-1.6l-2.6,-1.63l-2.63,-0.43l-5.46,1.01l-3.23,-1.25l-0.72,-2.57l-5.2,-1.24l-2.75,-1.36l-0.5,0.12l-2.59,3.45l0.84,2.1l-2.06,1.93l-3.41,-0.77l-2.42,-0.12l-1.83,-1.54l-2.53,-0.05l-2.42,-0.98l-3.86,1.57l-4.72,2.78l-3.3,0.75l-1.55,-1.92l-3.0,0.41l-1.11,-1.33l-1.62,-0.59l-1.31,-1.94l-1.38,-0.6l-3.7,0.79l-3.31,-1.83l-0.51,0.11l-0.99,1.29l-5.29,-8.05l-2.96,-2.48l0.65,-0.77l0.01,-0.51l-0.5,-0.11l-6.2,3.21l-1.84,0.15l0.15,-1.39l-0.26,-0.42l-3.22,-1.17l-2.46,0.7l-0.69,-3.16l-0.32,-0.31l-4.5,-0.75l-2.47,1.47l-6.19,1.27l-1.29,0.86l-9.51,1.3l-1.15,1.17l-0.03,0.53l1.47,1.9l-1.89,0.69l-0.22,0.56l0.31,0.6l-2.11,1.44l0.03,0.68l3.75,2.12l-0.39,0.98l-3.23,-0.13l-0.86,0.86l-3.09,-1.59l-3.97,0.07l-2.66,1.35l-8.32,-3.56l-4.07,0.06l-5.39,3.68l-0.39,2.0l-2.03,-1.5l-0.59,0.13l-2.0,3.59l0.57,0.93l-1.28,2.16l0.06,0.48l2.13,2.17l1.95,0.04l1.37,1.82l-0.23,1.46l0.25,0.43l0.83,0.33l-0.8,1.31l-2.49,0.62l-2.49,3.2l0.0,0.49l2.17,2.78l-0.15,2.18l2.5,3.24l-1.58,1.59l-0.7,-0.13l-1.63,-1.72l-2.29,-0.84l-0.94,-1.31l-2.34,-0.63l-1.48,0.4l-0.43,-0.47l-3.51,-1.48l-5.76,-1.01l-0.45,0.19l-2.89,-2.34l-2.9,-1.2l-1.53,-1.29l1.29,-0.43l2.08,-2.61l-0.05,-0.55l-0.89,-0.79l3.05,-1.06l0.27,-0.42l-0.07,-0.69l-0.49,-0.35l-1.73,0.39l0.04,-0.68l1.04,-0.72l2.66,-0.48l0.4,-1.32l-0.5,-1.6l0.92,-1.54l0.03,-1.17l-0.29,-0.37l-3.69,-1.06l-1.41,0.02l-1.42,-1.41l-2.19,0.38l-2.77,-1.01l-0.03,-0.59l-0.89,-1.43l-2.0,-0.32l-0.11,-0.54l0.49,-0.53l0.01,-0.53l-1.6,-1.9l-3.58,0.02l-0.88,0.73l-0.46,-0.07l-1.0,-2.79l2.22,-0.02l0.97,-0.74l0.07,-0.57l-0.9,-1.04l-1.35,-0.48l-0.11,-0.7l-0.95,-0.58l-1.38,-1.99l0.46,-0.98l-0.51,-1.96l-2.45,-0.84l-1.21,0.3l-0.46,-0.76l-2.46,-0.83l-0.72,-1.87l-0.21,-1.69l-0.99,-0.85l0.85,-1.17l-0.7,-3.21l1.66,-1.97l-0.16,-0.79ZM749.2,170.72l-0.6,0.4l-0.13,0.16l-0.01,-0.51l0.74,-0.05ZM874.85,67.94l-5.63,0.48l-0.26,-0.84l3.15,-1.89l1.94,0.01l3.19,1.16l-2.39,1.09ZM797.39,48.49l-2.0,1.36l-3.8,-0.42l-4.25,-1.8l0.35,-0.97l9.69,1.83ZM783.67,46.12l-1.63,3.09l-8.98,-0.13l-4.09,1.14l-4.54,-2.97l1.16,-3.01l3.05,-0.89l6.5,0.22l8.54,2.56ZM778.2,134.98l-0.56,-0.9l0.27,-0.12l0.29,1.01ZM778.34,135.48l0.94,3.53l-0.05,3.38l1.05,3.39l2.18,5.0l-2.89,-0.83l-0.49,0.26l-1.54,4.65l2.42,3.5l-0.04,1.13l-1.24,-1.24l-0.61,0.06l-1.09,1.61l-0.28,-1.61l0.27,-3.1l-0.28,-3.4l0.58,-2.47l0.11,-4.39l-1.46,-3.36l0.21,-4.32l2.15,-1.46l0.07,-0.34ZM771.95,56.61l1.76,-1.42l2.89,-0.42l3.28,1.71l0.14,0.6l-3.27,0.03l-4.81,-0.5ZM683.76,31.09l-13.01,1.93l4.03,-6.35l1.82,-0.56l1.73,0.34l5.99,2.98l-0.56,1.66ZM670.85,27.93l-5.08,0.64l-6.86,-1.57l-3.99,-2.05l-2.1,-4.16l-2.6,-0.87l5.72,-3.5l5.2,-1.28l4.69,2.85l5.59,5.4l-0.56,4.53ZM564.15,68.94l-0.64,0.17l-7.85,-0.57l-0.86,-2.04l-4.28,-1.17l-0.28,-1.94l2.27,-0.89l0.25,-0.39l-0.08,-2.38l4.81,-3.97l-0.15,-0.7l-1.47,-0.38l5.3,-3.81l0.15,-0.44l-0.58,-1.94l5.28,-2.51l8.21,-3.27l8.28,-0.96l4.35,-1.94l4.6,-0.64l1.36,1.61l-1.34,1.28l-16.43,4.94l-7.97,4.88l-7.74,9.63l0.66,4.14l4.16,3.27ZM548.81,18.48l-5.5,1.18l-0.58,1.02l-2.59,0.84l-2.13,-1.07l1.12,-1.42l-0.3,-0.65l-2.33,-0.07l1.68,-0.36l3.47,-0.06l0.42,1.29l0.66,0.16l1.38,-1.34l2.15,-0.88l2.94,1.01l-0.39,0.36ZM477.37,133.15l-4.08,0.05l-2.56,-0.32l0.33,-0.87l3.17,-1.03l3.24,0.96l-0.09,1.23Z", "name": "Russia"}, "RW": {"path": "M497.0,288.25l0.71,1.01l-0.11,1.09l-1.63,0.03l-1.04,1.39l-0.83,-0.11l0.51,-1.2l0.08,-1.34l0.42,-0.41l0.7,0.14l1.19,-0.61Z", "name": "Rwanda"}, "RS": {"path": "M469.4,163.99l0.42,-0.5l-0.01,-0.52l-1.15,-1.63l1.43,-0.62l1.33,0.12l1.17,1.06l0.46,1.13l1.34,0.64l0.35,1.35l1.46,0.9l0.76,-0.29l0.2,0.69l-0.48,0.78l0.22,1.12l1.05,1.22l-0.77,0.8l-0.37,1.52l-1.21,0.08l0.24,-0.64l-0.39,-0.54l-2.08,-1.64l-0.9,0.05l-0.48,0.94l-2.12,-1.37l0.53,-1.6l-1.11,-1.37l0.51,-1.1l-0.41,-0.57Z", "name": "Serbia"}, "LT": {"path": "M486.93,129.3l0.17,1.12l-1.81,0.98l-0.72,2.02l-2.47,1.18l-2.1,-0.02l-0.73,-1.05l-1.06,-0.3l-0.09,-1.87l-3.56,-1.13l-0.43,-2.36l2.48,-0.94l4.12,0.22l2.25,-0.31l0.52,0.69l1.24,0.21l2.19,1.56Z", "name": "Lithuania"}, "LU": {"path": "M436.08,149.45l-0.48,-0.07l0.3,-1.28l0.27,0.4l-0.09,0.96Z", "name": "Luxembourg"}, "LR": {"path": "M399.36,265.97l0.18,1.54l-0.48,0.99l0.08,0.47l2.47,1.8l-0.33,2.8l-2.65,-1.13l-5.78,-4.61l0.58,-1.32l2.1,-2.33l0.86,-0.22l0.77,1.14l-0.14,0.85l0.59,0.87l1.0,0.14l0.76,-0.99Z", "name": "Liberia"}, "RO": {"path": "M487.53,154.23l0.6,0.24l2.87,3.98l-0.17,2.69l0.45,1.42l1.32,0.81l1.35,-0.42l0.76,0.36l0.02,0.31l-0.83,0.45l-0.59,-0.22l-0.54,0.3l-0.62,3.3l-1.0,-0.22l-2.07,-1.13l-2.95,0.71l-1.25,0.76l-3.51,-0.15l-1.89,-0.47l-0.87,0.16l-0.82,-1.3l0.29,-0.26l-0.06,-0.64l-1.09,-0.34l-0.56,0.5l-1.05,-0.64l-0.39,-1.39l-1.36,-0.65l-0.35,-1.0l-0.83,-0.75l1.54,-0.54l2.66,-4.21l2.4,-1.24l2.96,0.34l1.48,0.73l0.79,-0.45l1.78,-0.3l0.75,-0.74l0.79,0.0Z", "name": "Romania"}, "GW": {"path": "M386.23,253.6l-0.29,0.84l0.15,0.6l-2.21,0.59l-0.86,0.96l-1.04,-0.83l-1.09,-0.23l-0.54,-1.06l-0.66,-0.49l2.41,-0.48l4.13,0.1Z", "name": "Guinea-Bissau"}, "GT": {"path": "M195.08,249.77l-2.48,-0.37l-1.03,-0.45l-1.14,-0.89l0.3,-0.99l-0.24,-0.68l0.96,-1.66l2.98,-0.01l0.4,-0.37l-0.19,-1.28l-1.67,-1.4l0.51,-0.4l0.0,-1.05l3.85,0.02l-0.21,4.53l0.4,0.43l1.46,0.38l-1.48,0.98l-0.35,0.7l0.12,0.57l-2.2,1.96Z", "name": "Guatemala"}, "GR": {"path": "M487.07,174.59l-0.59,1.43l-0.37,0.21l-2.84,-0.35l-3.03,0.77l-0.18,0.68l1.28,1.23l-0.61,0.23l-1.14,0.0l-1.2,-1.39l-0.63,0.03l-0.53,1.01l0.56,1.76l1.03,1.19l-0.56,0.38l-0.05,0.62l2.52,2.12l0.02,0.87l-1.78,-0.59l-0.48,0.56l0.5,1.0l-1.07,0.2l-0.3,0.53l0.75,2.01l-0.98,0.02l-1.84,-1.12l-1.37,-4.2l-2.21,-2.95l-0.11,-0.56l1.04,-1.28l0.2,-0.95l0.85,-0.66l0.03,-0.46l1.32,-0.21l1.01,-0.64l1.22,0.05l0.65,-0.56l2.26,-0.0l1.82,-0.75l1.85,1.0l2.28,-0.28l0.35,-0.39l0.01,-0.77l0.34,0.22ZM480.49,192.16l0.58,0.4l-0.68,-0.12l0.11,-0.28ZM482.52,192.82l2.51,0.06l0.24,0.32l-1.99,0.13l-0.77,-0.51Z", "name": "Greece"}, "GQ": {"path": "M448.79,279.62l0.02,2.22l-4.09,0.0l0.69,-2.27l3.38,0.05Z", "name": "Eq. Guinea"}, "GY": {"path": "M277.42,270.07l-0.32,1.83l-1.32,0.57l-0.23,0.46l-0.28,2.0l1.11,1.82l0.83,0.19l0.32,1.25l1.13,1.62l-1.21,-0.19l-1.08,0.71l-1.77,0.5l-0.44,0.46l-0.86,-0.09l-1.32,-1.01l-0.77,-2.27l0.36,-1.9l0.68,-1.23l-0.57,-1.17l-0.74,-0.43l0.12,-1.16l-0.9,-0.69l-1.1,0.09l-1.31,-1.48l0.53,-0.72l-0.04,-0.84l1.99,-0.86l0.05,-0.59l-0.71,-0.78l0.14,-0.57l1.66,-1.24l1.36,0.77l1.41,1.49l0.06,1.15l0.37,0.38l0.8,0.05l2.06,1.86Z", "name": "Guyana"}, "GE": {"path": "M521.71,168.93l5.29,0.89l4.07,2.01l1.41,-0.44l2.07,0.56l0.68,1.1l1.07,0.55l-0.12,0.59l0.98,1.29l-1.01,-0.13l-1.81,-0.83l-0.94,0.47l-3.23,0.43l-2.29,-1.39l-2.33,0.05l0.21,-0.97l-0.76,-2.26l-1.45,-1.12l-1.43,-0.39l-0.41,-0.42Z", "name": "Georgia"}, "GB": {"path": "M412.61,118.72l-2.19,3.22l-0.0,0.45l5.13,-0.3l-0.53,2.37l-2.2,3.12l0.29,0.63l2.37,0.21l2.33,4.3l1.76,0.69l2.2,5.12l2.94,0.77l-0.23,1.62l-1.15,0.88l-0.1,0.52l0.82,1.42l-1.86,1.43l-3.3,-0.02l-4.12,0.87l-1.04,-0.58l-0.47,0.06l-1.51,1.41l-2.12,-0.34l-1.86,1.18l-0.6,-0.29l3.19,-3.0l2.16,-0.69l0.28,-0.41l-0.34,-0.36l-3.73,-0.53l-0.4,-0.76l2.2,-0.87l0.17,-0.61l-1.26,-1.67l0.36,-1.7l3.38,0.28l0.43,-0.33l0.37,-1.99l-1.79,-2.49l-3.11,-0.72l-0.38,-0.59l0.79,-1.35l-0.04,-0.46l-0.82,-0.97l-0.61,0.01l-0.68,0.84l-0.1,-2.34l-1.23,-1.88l0.85,-3.47l1.77,-2.68l1.85,0.26l2.17,-0.22ZM406.26,132.86l-1.01,1.77l-1.57,-0.59l-1.16,0.01l0.37,-1.54l-0.39,-1.39l1.45,-0.1l2.3,1.84Z", "name": "United Kingdom"}, "GA": {"path": "M453.24,279.52l-0.08,0.98l0.7,1.29l2.36,0.24l-0.98,2.63l1.18,1.79l0.25,1.78l-0.29,1.52l-0.6,0.93l-1.84,-0.09l-1.23,-1.11l-0.66,0.23l-0.15,0.84l-1.42,0.26l-1.02,0.7l-0.11,0.52l0.77,1.35l-1.34,0.97l-3.94,-4.3l-1.44,-2.45l0.06,-0.6l0.54,-0.81l1.05,-3.46l4.17,-0.07l0.4,-0.4l-0.02,-2.66l2.39,0.21l1.25,-0.27Z", "name": "Gabon"}, "GN": {"path": "M391.8,254.11l0.47,0.8l1.11,-0.32l0.98,0.7l1.07,0.2l2.26,-1.22l0.64,0.44l1.13,1.56l-0.48,1.4l0.8,0.3l-0.08,0.48l0.46,0.68l-0.35,1.36l1.05,2.61l-1.0,0.69l0.03,1.41l-0.72,-0.06l-1.08,1.0l-0.24,-0.27l0.07,-1.11l-1.05,-1.54l-1.79,0.21l-0.35,-2.01l-1.6,-2.18l-2.0,-0.0l-1.31,0.54l-1.95,2.18l-1.86,-2.19l-1.2,-0.78l-0.3,-1.11l-0.8,-0.85l0.65,-0.72l0.81,-0.03l1.64,-0.8l0.23,-1.87l2.67,0.64l0.89,-0.3l1.21,0.15Z", "name": "Guinea"}, "GM": {"path": "M379.31,251.39l0.1,-0.35l2.43,-0.07l0.74,-0.61l0.51,-0.03l0.77,0.49l-1.03,-0.3l-1.87,0.9l-1.65,-0.04ZM384.03,250.91l0.91,0.05l0.75,-0.24l-0.59,0.31l-1.08,-0.13Z", "name": "Gambia"}, "GL": {"path": "M353.02,1.2l14.69,4.67l-3.68,1.89l-22.97,0.86l-0.36,0.27l0.12,0.43l1.55,1.18l8.79,-0.66l7.48,2.07l4.86,-1.77l1.66,1.73l-2.53,3.19l-0.01,0.48l0.46,0.15l6.35,-2.2l12.06,-2.31l7.24,1.13l1.09,1.99l-9.79,4.01l-1.44,1.32l-7.87,0.98l-0.35,0.41l0.38,0.38l5.07,0.24l-2.53,3.58l-2.07,3.81l0.08,6.05l2.57,3.11l-3.22,0.2l-4.12,1.66l-0.05,0.72l4.45,2.65l0.51,3.75l-2.3,0.4l-0.25,0.64l2.79,3.69l-4.82,0.31l-0.36,0.29l0.16,0.44l2.62,1.8l-0.59,1.22l-3.3,0.7l-3.45,0.01l-0.29,0.68l3.03,3.12l0.02,1.34l-4.4,-1.73l-1.72,1.35l0.15,0.66l3.31,1.15l3.13,2.71l0.81,3.16l-3.85,0.75l-4.89,-4.26l-0.47,-0.03l-0.17,0.44l0.79,2.86l-2.71,2.21l-0.13,0.44l0.37,0.27l8.73,0.34l-12.32,6.64l-7.24,1.48l-2.94,0.08l-2.69,1.75l-3.43,4.41l-5.24,2.84l-1.73,0.18l-7.12,2.1l-2.15,2.52l-0.13,2.99l-1.19,2.45l-4.01,3.09l-0.14,0.44l0.97,2.9l-2.28,6.48l-3.1,0.2l-3.83,-3.07l-4.86,-0.02l-2.25,-1.93l-1.7,-3.79l-4.3,-4.84l-1.21,-2.49l-0.44,-3.8l-3.32,-3.63l0.84,-2.86l-1.56,-1.7l2.28,-4.6l3.83,-1.74l1.03,-1.96l0.52,-3.47l-0.59,-0.41l-4.17,2.21l-2.07,0.58l-2.72,-1.28l-0.15,-2.71l0.85,-2.09l2.01,-0.06l5.06,1.2l0.46,-0.23l-0.14,-0.49l-6.54,-4.47l-2.67,0.55l-1.58,-0.86l2.56,-4.01l-0.03,-0.48l-1.5,-1.74l-4.98,-8.5l-3.13,-1.96l0.03,-1.88l-0.24,-0.37l-6.85,-3.02l-5.36,-0.38l-12.7,0.58l-2.78,-1.57l-3.66,-2.77l5.73,-1.45l5.0,-0.28l0.38,-0.38l-0.35,-0.41l-10.67,-1.38l-5.3,-2.06l0.25,-1.54l18.41,-5.26l1.22,-2.27l-0.25,-0.55l-6.14,-1.86l1.68,-1.77l8.55,-4.03l3.59,-0.63l0.3,-0.54l-0.88,-2.27l5.47,-1.47l7.65,-0.95l7.55,-0.05l3.04,1.85l6.48,-3.27l5.81,2.22l3.56,0.5l5.16,1.94l0.5,-0.21l-0.17,-0.52l-5.71,-3.13l0.28,-2.13l8.12,-3.6l8.7,0.28l3.35,-2.34l8.71,-0.6l19.93,0.8Z", "name": "Greenland"}, "KW": {"path": "M540.81,207.91l0.37,0.86l-0.17,0.76l0.6,1.53l-0.95,0.04l-0.82,-1.28l-1.57,-0.18l1.31,-1.88l1.22,0.17Z", "name": "Kuwait"}, "GH": {"path": "M420.53,257.51l-0.01,0.72l0.96,1.2l0.24,3.73l0.59,0.95l-0.51,2.1l0.19,1.41l1.02,2.21l-6.97,2.84l-1.8,-0.57l0.04,-0.89l-1.02,-2.04l0.61,-2.65l1.07,-2.32l-0.96,-6.47l5.01,0.07l0.94,-0.39l0.61,0.11Z", "name": "Ghana"}, "OM": {"path": "M568.09,230.93l-0.91,1.67l-1.22,0.04l-0.6,0.76l-0.41,1.51l0.27,1.58l-1.16,0.05l-1.56,0.97l-0.76,1.74l-1.62,0.05l-0.98,0.65l-0.17,1.15l-0.89,0.52l-1.49,-0.18l-2.4,0.94l-2.47,-5.4l7.35,-2.71l1.67,-5.23l-1.12,-2.09l0.05,-0.83l0.67,-1.0l0.07,-1.05l0.9,-0.42l-0.05,-2.07l0.7,-0.01l1.0,1.62l1.51,1.08l3.3,0.84l1.73,2.29l0.81,0.37l-1.23,2.35l-0.99,0.79Z", "name": "Oman"}, "_2": {"path": "M531.15,258.94l1.51,0.12l5.13,-0.95l5.3,-1.48l-0.01,4.4l-2.67,3.39l-1.85,0.01l-8.04,-2.94l-2.55,-3.17l1.12,-1.71l2.04,2.34Z", "name": "Somaliland"}, "_1": {"path": "M472.77,172.64l-1.08,-1.29l0.96,-0.77l0.29,-0.83l1.98,1.64l-0.36,0.67l-1.79,0.58Z", "name": "Kosovo"}, "_0": {"path": "M504.91,192.87l0.34,0.01l0.27,-0.07l-0.29,0.26l-0.31,-0.2Z", "name": "N. Cyprus"}, "JO": {"path": "M518.64,201.38l-5.14,1.56l-0.19,0.65l2.16,2.39l-0.89,1.14l-1.71,0.34l-1.71,1.8l-2.34,-0.37l1.21,-4.32l0.56,-4.07l2.8,0.94l4.46,-2.71l0.79,2.66Z", "name": "Jordan"}, "HR": {"path": "M455.59,162.84l1.09,0.07l-0.82,0.94l-0.27,-1.01ZM456.96,162.92l0.62,-0.41l1.73,0.45l0.42,-0.4l-0.01,-0.59l0.86,-0.52l0.2,-1.05l1.63,-0.68l2.57,1.68l2.07,0.6l0.87,-0.31l1.05,1.57l-0.52,0.63l-1.05,-0.56l-1.68,0.04l-2.1,-0.5l-1.29,0.06l-0.57,0.49l-0.59,-0.47l-0.62,0.16l-0.46,1.7l1.79,2.42l2.79,2.75l-1.18,-0.87l-2.21,-0.87l-1.67,-1.78l0.13,-0.63l-1.05,-1.19l-0.32,-1.27l-1.42,-0.43Z", "name": "Croatia"}, "HT": {"path": "M237.05,238.38l-1.16,0.43l-0.91,-0.55l0.05,-0.2l2.02,0.31ZM237.53,238.43l1.06,0.12l-0.05,0.01l-1.01,-0.12ZM239.25,238.45l0.79,-0.51l0.06,-0.62l-1.02,-1.0l0.02,-0.82l-0.3,-0.4l-0.93,-0.32l3.16,0.45l0.02,1.84l-0.48,0.34l-0.08,0.58l0.54,0.72l-1.78,-0.26Z", "name": "Haiti"}, "HU": {"path": "M462.08,157.89l0.65,-1.59l-0.09,-0.44l0.64,-0.0l0.39,-0.34l0.1,-0.69l1.75,0.87l2.32,-0.37l0.43,-0.66l3.49,-0.78l0.69,-0.78l0.57,-0.14l2.57,0.93l0.67,-0.23l1.03,0.65l0.08,0.37l-1.42,0.71l-2.59,4.14l-1.8,0.53l-1.68,-0.1l-2.74,1.23l-1.85,-0.54l-2.54,-1.66l-0.66,-1.1Z", "name": "Hungary"}, "HN": {"path": "M199.6,249.52l-1.7,-1.21l0.06,-0.94l3.04,-2.14l2.37,0.28l1.27,-0.09l1.1,-0.52l1.3,0.28l1.14,-0.25l1.38,0.37l2.23,1.37l-2.36,0.93l-1.23,-0.39l-0.88,1.3l-1.28,0.99l-0.98,-0.22l-0.42,0.52l-0.96,0.05l-0.36,0.41l0.04,0.88l-0.52,0.6l-0.3,0.04l-0.3,-0.55l-0.66,-0.31l0.11,-0.67l-0.48,-0.65l-0.87,-0.26l-0.73,0.2Z", "name": "Honduras"}, "PR": {"path": "M256.17,238.73l-0.26,0.27l-2.83,0.05l-0.07,-0.55l1.95,-0.1l1.22,0.33Z", "name": "Puerto Rico"}, "PS": {"path": "M509.21,203.07l0.1,-0.06l-0.02,0.03l-0.09,0.03ZM509.36,202.91l-0.02,-0.63l-0.33,-0.16l0.31,-1.09l0.24,0.1l-0.2,1.78Z", "name": "Palestine"}, "PT": {"path": "M401.84,187.38l-0.64,0.47l-1.13,-0.35l-0.91,0.17l0.28,-1.78l-0.24,-1.78l-1.25,-0.56l-0.45,-0.84l0.17,-1.66l1.01,-1.18l0.69,-2.92l-0.04,-1.39l-0.59,-1.9l1.3,-0.85l0.84,1.35l3.1,-0.3l0.46,0.99l-1.05,0.94l-0.03,2.16l-0.41,0.57l-0.08,1.1l-0.79,0.18l-0.26,0.59l0.91,1.6l-0.63,1.75l0.76,1.09l-1.1,1.52l0.07,1.05Z", "name": "Portugal"}, "PY": {"path": "M274.9,336.12l0.74,1.52l-0.16,3.45l0.32,0.41l2.64,0.5l1.11,-0.47l1.4,0.59l0.36,0.6l0.53,3.42l1.27,0.4l0.98,-0.38l0.51,0.27l-0.0,1.18l-1.21,5.32l-2.09,1.9l-1.8,0.4l-4.71,-0.98l2.2,-3.63l-0.32,-1.5l-2.78,-1.28l-3.03,-1.94l-2.07,-0.44l-4.34,-4.06l0.91,-2.9l0.08,-1.42l1.07,-2.04l4.13,-0.72l2.18,0.03l2.05,1.17l0.03,0.59Z", "name": "Paraguay"}, "PA": {"path": "M213.8,263.68l0.26,-1.52l-0.36,-0.26l-0.01,-0.49l0.44,-0.1l0.93,1.4l1.26,0.03l0.77,0.49l1.38,-0.23l2.51,-1.11l0.86,-0.72l3.45,0.85l1.4,1.18l0.41,1.74l-0.21,0.34l-0.53,-0.12l-0.47,0.29l-0.16,0.6l-0.68,-1.28l0.45,-0.49l-0.19,-0.66l-0.47,-0.13l-0.54,-0.84l-1.5,-0.75l-1.1,0.16l-0.75,0.99l-1.62,0.84l-0.18,0.96l0.85,0.97l-0.58,0.45l-0.69,0.08l-0.34,-1.18l-1.27,0.03l-0.71,-1.05l-2.59,-0.46Z", "name": "Panama"}, "PG": {"path": "M808.58,298.86l2.54,2.56l-0.13,0.26l-0.33,0.12l-0.87,-0.78l-1.22,-2.16ZM801.41,293.04l0.5,0.29l0.26,0.27l-0.49,-0.35l-0.27,-0.21ZM803.17,294.58l0.59,0.5l0.08,1.06l-0.29,-0.91l-0.38,-0.65ZM796.68,298.41l0.52,0.75l1.43,-0.19l2.27,-1.81l-0.01,-1.43l1.12,0.16l-0.04,1.1l-0.7,1.28l-1.12,0.18l-0.62,0.79l-2.46,1.11l-1.17,-0.0l-3.08,-1.25l3.41,0.0l0.45,-0.68ZM789.15,303.55l2.31,1.8l1.59,2.61l1.34,0.13l-0.06,0.66l0.31,0.43l1.06,0.24l0.06,0.65l2.25,1.05l-1.22,0.13l-0.72,-0.63l-4.56,-0.65l-3.22,-2.87l-1.49,-2.34l-3.27,-1.1l-2.38,0.72l-1.59,0.86l-0.2,0.42l0.27,1.55l-1.55,0.68l-1.36,-0.4l-2.21,-0.09l-0.08,-15.41l8.39,2.93l2.95,2.4l0.6,1.64l4.02,1.49l0.31,0.68l-1.76,0.21l-0.33,0.52l0.55,1.68Z", "name": "Papua New Guinea"}, "PE": {"path": "M244.96,295.21l-1.26,-0.07l-0.57,0.42l-1.93,0.45l-2.98,1.75l-0.36,1.36l-0.58,0.8l0.12,1.37l-1.24,0.59l-0.22,1.22l-0.62,0.84l1.04,2.27l1.28,1.44l-0.41,0.84l0.32,0.57l1.48,0.13l1.16,1.37l2.21,0.07l1.63,-1.08l-0.13,3.02l0.3,0.4l1.14,0.29l1.31,-0.34l1.9,3.59l-0.48,0.85l-0.17,3.85l-0.94,1.59l0.35,0.75l-0.47,1.07l0.98,1.97l-2.1,3.82l-0.98,0.5l-2.17,-1.28l-0.39,-1.16l-4.95,-2.58l-4.46,-2.79l-1.84,-1.51l-0.91,-1.84l0.3,-0.96l-2.11,-3.33l-4.82,-9.68l-1.04,-1.2l-0.87,-1.94l-3.4,-2.48l0.58,-1.18l-1.13,-2.23l0.66,-1.49l1.45,-1.15l-0.6,0.98l0.07,0.92l0.47,0.36l1.74,0.03l0.97,1.17l0.54,0.07l1.42,-1.03l0.6,-1.84l1.42,-2.02l3.04,-1.04l2.73,-2.62l0.86,-1.74l-0.1,-1.87l1.44,1.02l0.9,1.25l1.06,0.59l1.7,2.73l1.86,0.31l1.45,-0.61l0.96,0.39l1.36,-0.19l1.45,0.89l-1.4,2.21l0.31,0.61l0.59,0.05l0.47,0.5Z", "name": "Peru"}, "PK": {"path": "M615.09,192.34l-1.83,1.81l-2.6,0.39l-3.73,-0.68l-1.58,1.33l-0.09,0.42l1.77,4.39l1.7,1.23l-1.69,1.27l-0.12,2.14l-2.33,2.64l-1.6,2.8l-2.46,2.67l-3.03,-0.07l-2.76,2.83l0.05,0.6l1.5,1.11l0.26,1.9l1.44,1.5l0.37,1.68l-5.01,-0.01l-1.78,1.7l-1.42,-0.52l-0.76,-1.87l-2.27,-2.15l-11.61,0.86l0.71,-2.34l3.43,-1.32l0.25,-0.44l-0.21,-1.24l-1.2,-0.65l-0.28,-2.46l-2.29,-1.14l-1.28,-1.94l2.82,0.94l2.62,-0.38l1.42,0.33l0.76,-0.56l1.71,0.19l3.25,-1.14l0.27,-0.36l0.08,-2.19l1.18,-1.32l1.68,0.0l0.58,-0.82l1.6,-0.3l1.19,0.16l0.98,-0.78l0.02,-1.88l0.93,-1.47l1.48,-0.66l0.19,-0.55l-0.66,-1.25l2.04,-0.11l0.69,-1.01l-0.02,-1.16l1.11,-1.06l-0.17,-1.78l-0.49,-1.03l1.15,-0.98l5.42,-0.91l2.6,-0.82l1.6,1.16l0.97,2.34l3.45,0.97Z", "name": "Pakistan"}, "PH": {"path": "M737.01,263.84l0.39,2.97l-0.44,1.18l-0.55,-1.53l-0.67,-0.14l-1.17,1.28l0.65,2.09l-0.42,0.69l-2.48,-1.23l-0.57,-1.49l0.65,-1.03l-0.1,-0.54l-1.59,-1.19l-0.56,0.08l-0.65,0.87l-1.23,0.0l-1.58,0.97l0.83,-1.8l2.56,-1.42l0.65,0.84l0.45,0.13l1.9,-0.69l0.56,-1.11l1.5,-0.06l0.38,-0.43l-0.09,-1.19l1.21,0.71l0.36,2.02ZM733.59,256.58l0.05,0.75l0.08,0.26l-0.8,-0.42l-0.18,-0.71l0.85,0.12ZM734.08,256.1l-0.12,-1.12l-1.0,-1.27l1.36,0.03l0.53,0.73l0.51,2.04l-1.27,-0.4ZM733.76,257.68l0.38,0.98l-0.32,0.15l-0.07,-1.13ZM724.65,238.43l1.46,0.7l0.72,-0.31l-0.32,1.17l0.79,1.71l-0.57,1.84l-1.53,1.04l-0.39,2.25l0.56,2.04l1.63,0.57l1.16,-0.27l2.71,1.23l-0.19,1.08l0.76,0.84l-0.08,0.36l-1.4,-0.9l-0.88,-1.27l-0.66,0.0l-0.38,0.55l-1.6,-1.31l-2.15,0.36l-0.87,-0.39l0.07,-0.61l0.66,-0.55l-0.01,-0.62l-0.75,-0.59l-0.72,0.44l-0.74,-0.87l-0.39,-2.49l0.32,0.27l0.66,-0.28l0.26,-3.97l0.7,-2.02l1.14,0.0ZM731.03,258.87l-0.88,0.85l-1.19,1.94l-1.05,-1.19l0.93,-1.1l0.32,-1.47l0.52,-0.06l-0.27,1.15l0.22,0.45l0.49,-0.12l1.0,-1.32l-0.08,0.85ZM726.83,255.78l0.83,0.38l1.17,-0.0l-0.02,0.48l-2.0,1.4l0.03,-2.26ZM724.81,252.09l-0.38,1.27l-1.42,-1.95l1.2,0.05l0.6,0.63ZM716.55,261.82l1.1,-0.95l0.03,-0.03l-0.28,0.36l-0.85,0.61ZM719.22,259.06l0.04,-0.06l0.8,-1.53l0.16,0.75l-1.0,0.84Z", "name": "Philippines"}, "PL": {"path": "M468.44,149.42l-1.11,-1.54l-1.86,-0.33l-0.48,-1.05l-1.72,-0.37l-0.65,0.69l-0.72,-0.36l0.11,-0.61l-0.33,-0.46l-1.75,-0.27l-1.04,-0.93l-0.94,-1.94l0.16,-1.22l-0.62,-1.8l-0.78,-1.07l0.57,-1.04l-0.48,-1.43l1.41,-0.83l6.91,-2.71l2.14,0.5l0.52,0.91l5.51,0.44l4.55,-0.05l1.07,0.31l0.48,0.84l0.15,1.58l0.65,1.2l-0.01,0.99l-1.27,0.58l-0.19,0.54l0.73,1.48l0.08,1.55l1.2,2.76l-0.17,0.58l-1.23,0.44l-2.27,2.72l0.18,0.95l-1.97,-1.03l-1.98,0.4l-1.36,-0.28l-1.24,0.58l-1.07,-0.97l-1.16,0.24Z", "name": "Poland"}, "ZM": {"path": "M481.47,313.3l0.39,0.31l2.52,0.14l0.99,1.17l2.01,0.35l1.4,-0.64l0.69,1.17l1.78,0.33l1.84,2.35l2.23,0.18l0.4,-0.43l-0.21,-2.74l-0.62,-0.3l-0.48,0.32l-1.98,-1.17l0.72,-5.29l-0.51,-1.18l0.57,-1.3l3.68,-0.62l0.26,0.63l1.21,0.63l0.9,-0.22l2.16,0.67l1.33,0.71l1.07,1.02l0.56,1.87l-0.88,2.7l0.43,2.09l-0.73,0.87l-0.76,2.37l0.59,0.68l-6.6,1.83l-0.29,0.44l0.19,1.45l-1.68,0.35l-1.43,1.02l-0.38,0.87l-0.87,0.26l-3.48,3.69l-4.16,-0.53l-1.52,-1.0l-1.77,-0.13l-1.83,0.52l-3.04,-3.4l0.11,-7.59l4.82,0.03l0.39,-0.49l-0.18,-0.76l0.33,-0.83l-0.4,-1.36l0.24,-1.05Z", "name": "Zambia"}, "EH": {"path": "M384.42,230.28l0.25,-0.79l1.06,-1.29l0.8,-3.51l3.38,-2.78l0.7,-1.81l0.06,4.84l-1.98,0.2l-0.94,1.59l0.39,3.56l-3.7,-0.01ZM392.01,218.1l0.7,-1.8l1.77,-0.24l2.09,0.34l0.95,-0.62l1.28,-0.07l-0.0,2.51l-6.79,-0.12Z", "name": "W. Sahara"}, "EE": {"path": "M485.71,115.04l2.64,0.6l2.56,0.11l-1.6,1.91l0.61,3.54l-0.81,0.87l-1.78,-0.01l-3.22,-1.76l-1.8,0.45l0.21,-1.53l-0.58,-0.41l-0.69,0.34l-1.26,-1.03l-0.17,-1.63l2.83,-0.92l3.05,-0.52Z", "name": "Estonia"}, "EG": {"path": "M492.06,205.03l1.46,0.42l2.95,-1.64l2.04,-0.21l1.53,0.3l0.59,1.19l0.69,0.04l0.41,-0.64l1.81,0.58l1.95,0.16l1.04,-0.51l1.42,4.08l-2.03,4.54l-1.66,-1.77l-1.76,-3.85l-0.64,-0.12l-0.36,0.67l1.04,2.88l3.44,6.95l1.78,3.04l2.03,2.65l-0.36,0.53l0.23,2.01l2.7,2.19l-28.41,0.0l0.0,-18.96l-0.73,-2.2l0.59,-1.56l-0.32,-1.26l0.68,-0.99l3.06,-0.04l4.82,1.52Z", "name": "Egypt"}, "ZA": {"path": "M467.14,373.21l-0.13,-1.96l-0.68,-1.56l0.7,-0.68l-0.13,-2.33l-4.56,-8.19l0.77,-0.86l0.6,0.45l0.69,1.31l2.83,0.72l1.5,-0.26l2.24,-1.39l0.19,-9.55l1.35,2.3l-0.21,1.5l0.61,1.2l0.4,0.19l1.79,-0.27l2.6,-2.07l0.69,-1.32l0.96,-0.48l2.19,1.04l2.04,0.13l1.77,-0.65l0.85,-2.12l1.38,-0.33l1.59,-2.76l2.15,-1.89l3.41,-1.87l2.0,0.45l1.02,-0.28l0.99,0.2l1.75,5.29l-0.38,3.25l-0.81,-0.23l-1.0,0.46l-0.87,1.68l-0.05,1.16l1.97,1.84l1.47,-0.29l0.69,-1.18l1.09,0.01l-0.76,3.69l-0.58,1.09l-2.2,1.79l-3.17,4.76l-2.8,2.83l-3.57,2.88l-2.53,1.05l-1.22,0.14l-0.51,0.7l-1.18,-0.32l-1.39,0.5l-2.59,-0.52l-1.61,0.33l-1.18,-0.11l-2.55,1.1l-2.1,0.44l-1.6,1.07l-0.85,0.05l-0.93,-0.89l-0.93,-0.15l-0.97,-1.13l-0.25,0.05ZM491.45,364.19l0.62,-0.93l1.48,-0.59l1.18,-2.19l-0.07,-0.49l-1.99,-1.69l-1.66,0.56l-1.43,1.14l-1.34,1.73l0.02,0.51l1.88,2.11l1.31,-0.16Z", "name": "South Africa"}, "EC": {"path": "M231.86,285.53l0.29,1.59l-0.69,1.45l-2.61,2.51l-3.13,1.11l-1.53,2.18l-0.49,1.68l-1.0,0.73l-1.02,-1.11l-1.78,-0.16l0.67,-1.15l-0.24,-0.86l1.25,-2.13l-0.54,-1.09l-0.67,-0.08l-0.72,0.87l-0.87,-0.64l0.35,-0.69l-0.36,-1.96l0.81,-0.51l0.45,-1.51l0.92,-1.57l-0.07,-0.97l2.65,-1.33l2.75,1.35l0.77,1.05l2.12,0.35l0.76,-0.32l1.96,1.21Z", "name": "Ecuador"}, "AL": {"path": "M470.32,171.8l0.74,0.03l0.92,0.89l-0.17,1.95l0.36,1.28l1.01,0.82l-1.82,2.83l-0.19,-0.61l-1.25,-0.89l-0.18,-1.2l0.53,-2.82l-0.54,-1.47l0.6,-0.83Z", "name": "Albania"}, "AO": {"path": "M461.55,300.03l1.26,3.15l1.94,2.36l2.47,-0.53l1.25,0.32l0.44,-0.18l0.93,-1.92l1.31,-0.08l0.41,-0.44l0.47,-0.0l-0.1,0.41l0.39,0.49l2.65,-0.02l0.03,1.19l0.48,1.01l-0.34,1.52l0.18,1.55l0.83,1.04l-0.13,2.85l0.54,0.39l3.96,-0.41l-0.1,1.79l0.39,1.05l-0.24,1.43l-4.7,-0.03l-0.4,0.39l-0.12,8.13l2.92,3.49l-3.83,0.88l-5.89,-0.36l-1.88,-1.24l-10.47,0.22l-1.3,-1.01l-1.85,-0.16l-2.4,0.77l-0.15,-1.06l0.33,-2.16l1.0,-3.45l1.35,-3.2l2.24,-2.8l0.33,-2.06l-0.13,-1.53l-0.8,-1.08l-1.21,-2.87l0.87,-1.62l-1.27,-4.12l-1.17,-1.53l2.47,-0.63l7.03,0.03ZM451.71,298.87l-0.47,-1.25l1.25,-1.11l0.32,0.3l-0.99,1.03l-0.12,1.03Z", "name": "Angola"}, "KZ": {"path": "M552.8,172.89l0.46,-1.27l-0.48,-1.05l-2.96,-1.19l-1.06,-2.58l-1.37,-0.87l-0.03,-0.3l1.95,0.23l0.45,-0.38l0.08,-1.96l1.75,-0.41l2.1,0.45l0.48,-0.33l0.45,-3.04l-0.45,-2.09l-0.41,-0.31l-2.42,0.15l-2.36,-0.73l-2.87,1.37l-2.17,0.61l-0.85,-0.34l0.13,-1.61l-1.6,-2.12l-2.02,-0.08l-1.78,-1.82l1.29,-2.18l-0.57,-0.95l1.62,-2.91l2.21,1.63l0.63,-0.27l0.29,-2.22l4.92,-3.43l3.71,-0.08l8.4,3.6l2.92,-1.36l3.77,-0.06l3.11,1.66l0.51,-0.11l0.6,-0.81l3.31,0.13l0.39,-0.25l0.63,-1.57l-0.17,-0.5l-3.5,-1.98l1.87,-1.27l-0.13,-1.03l1.98,-0.72l0.18,-0.62l-1.59,-2.06l0.81,-0.82l9.23,-1.18l1.33,-0.88l6.18,-1.26l2.26,-1.42l4.08,0.68l0.73,3.33l0.51,0.3l2.48,-0.8l2.79,1.02l-0.17,1.56l0.43,0.44l2.55,-0.24l4.89,-2.53l0.03,0.32l3.15,2.61l5.56,8.47l0.65,0.02l1.12,-1.46l3.15,1.74l3.76,-0.78l1.15,0.49l1.14,1.8l1.84,0.76l0.99,1.29l3.35,-0.25l1.02,1.52l-1.6,1.81l-1.93,0.28l-0.34,0.38l-0.11,3.05l-1.13,1.16l-4.75,-1.0l-0.46,0.27l-1.76,5.47l-1.1,0.59l-4.91,1.23l-0.27,0.54l2.1,4.97l-1.37,0.63l-0.23,0.41l0.13,1.13l-0.88,-0.25l-1.42,-1.13l-7.89,-0.4l-0.92,0.31l-3.73,-1.22l-1.42,0.63l-0.53,1.66l-3.72,-0.94l-1.85,0.43l-0.76,1.4l-4.65,2.62l-1.13,2.08l-0.44,0.01l-0.92,-1.4l-2.87,-0.09l-0.45,-2.14l-0.38,-0.32l-0.8,-0.01l0.0,-2.96l-3.0,-2.22l-7.31,0.58l-2.35,-2.68l-6.71,-3.69l-6.45,1.83l-0.29,0.39l0.1,10.85l-0.7,0.08l-1.62,-2.17l-1.83,-0.96l-3.11,0.59l-0.64,0.51Z", "name": "Kazakhstan"}, "ET": {"path": "M516.04,247.79l1.1,0.84l1.63,-0.45l0.68,0.47l1.63,0.03l2.01,0.94l1.73,1.66l1.64,2.07l-1.52,2.04l0.16,1.72l0.39,0.38l2.05,0.0l-0.36,1.03l2.86,3.58l8.32,3.08l1.31,0.02l-6.32,6.75l-3.1,0.11l-2.36,1.77l-1.47,0.04l-0.86,0.79l-1.38,-0.0l-1.32,-0.81l-2.29,1.05l-0.76,0.98l-3.29,-0.41l-3.07,-2.07l-1.8,-0.07l-0.62,-0.6l0.0,-1.24l-0.28,-0.38l-1.15,-0.37l-1.4,-2.59l-1.19,-0.68l-0.47,-1.0l-1.27,-1.23l-1.16,-0.22l0.43,-0.72l1.45,-0.28l0.41,-0.95l-0.03,-2.21l0.68,-2.44l1.05,-0.63l1.43,-3.06l1.57,-1.37l1.02,-2.51l0.35,-1.88l2.52,0.46l0.44,-0.24l0.58,-1.43Z", "name": "Ethiopia"}, "ZW": {"path": "M498.91,341.09l-1.11,-0.22l-0.92,0.28l-2.09,-0.44l-1.5,-1.11l-1.89,-0.43l-0.62,-1.4l-0.01,-0.84l-0.3,-0.38l-0.97,-0.25l-2.71,-2.74l-1.92,-3.32l3.83,0.45l3.73,-3.82l1.08,-0.44l0.26,-0.77l1.25,-0.9l1.41,-0.26l0.5,0.89l1.99,-0.05l1.72,1.17l1.11,0.17l1.05,0.66l0.01,2.99l-0.59,3.76l0.38,0.86l-0.23,1.23l-0.39,0.35l-0.63,1.81l-2.43,2.75Z", "name": "Zimbabwe"}, "ES": {"path": "M416.0,169.21l1.07,1.17l4.61,1.38l1.06,-0.57l2.6,1.26l2.71,-0.3l0.09,1.12l-2.14,1.8l-3.11,0.61l-0.31,0.31l-0.2,0.89l-1.54,1.69l-0.97,2.4l0.84,1.74l-1.32,1.27l-0.48,1.68l-1.88,0.65l-1.66,2.07l-5.36,-0.01l-1.79,1.08l-0.89,0.98l-0.88,-0.17l-0.79,-0.82l-0.68,-1.59l-2.37,-0.63l-0.11,-0.5l1.21,-1.82l-0.77,-1.13l0.61,-1.68l-0.76,-1.62l0.87,-0.49l0.09,-1.25l0.42,-0.6l0.03,-2.11l0.99,-0.69l0.13,-0.5l-1.03,-1.73l-1.46,-0.11l-0.61,0.38l-1.06,0.0l-0.52,-1.23l-0.53,-0.21l-1.32,0.67l-0.01,-1.49l-0.75,-0.96l3.03,-1.88l2.99,0.53l3.32,-0.02l2.63,0.51l6.01,-0.06Z", "name": "Spain"}, "ER": {"path": "M520.38,246.23l3.42,2.43l3.5,3.77l0.84,0.54l-0.95,-0.01l-3.51,-3.89l-2.33,-1.15l-1.73,-0.07l-0.91,-0.51l-1.26,0.51l-1.34,-1.02l-0.61,0.17l-0.66,1.61l-2.35,-0.43l-0.17,-0.67l1.29,-5.29l0.61,-0.61l1.95,-0.53l0.87,-1.01l1.17,2.41l0.68,2.33l1.49,1.43Z", "name": "Eritrea"}, "ME": {"path": "M468.91,172.53l-1.22,-1.02l0.47,-1.81l0.89,-0.72l2.26,1.51l-0.5,0.57l-0.75,-0.27l-1.14,1.73Z", "name": "Montenegro"}, "MD": {"path": "M488.41,153.73l1.4,-0.27l1.72,0.93l1.07,0.15l0.85,0.65l-0.14,0.84l0.96,0.85l1.12,2.47l-1.15,-0.07l-0.66,-0.41l-0.52,0.25l-0.09,0.86l-1.08,1.89l-0.27,-0.86l0.25,-1.34l-0.16,-1.6l-3.29,-4.34Z", "name": "Moldova"}, "MG": {"path": "M545.91,319.14l0.4,3.03l0.62,1.21l-0.21,1.02l-0.57,-0.8l-0.69,-0.01l-0.47,0.76l0.41,2.12l-0.18,0.87l-0.73,0.78l-0.15,2.14l-4.71,15.2l-1.06,2.88l-3.92,1.64l-3.12,-1.49l-0.6,-1.21l-0.19,-2.4l-0.86,-2.05l-0.21,-1.77l0.38,-1.62l1.21,-0.75l0.01,-0.76l1.19,-2.04l0.23,-1.66l-1.06,-2.99l-0.19,-2.21l0.81,-1.33l0.32,-1.46l4.63,-1.22l3.44,-3.0l0.85,-1.4l-0.08,-0.7l0.78,-0.04l1.38,-1.77l0.13,-1.64l0.45,-0.61l1.16,1.69l0.59,1.6Z", "name": "Madagascar"}, "MA": {"path": "M378.78,230.02l0.06,-0.59l0.92,-0.73l0.82,-1.37l-0.09,-1.04l0.79,-1.7l1.31,-1.58l0.96,-0.59l0.66,-1.55l0.09,-1.47l0.81,-1.48l1.72,-1.07l1.55,-2.69l1.16,-0.96l2.44,-0.39l1.94,-1.82l1.31,-0.78l2.09,-2.28l-0.51,-3.65l1.24,-3.7l1.5,-1.75l4.46,-2.57l2.37,-4.47l1.44,0.01l1.68,1.21l2.32,-0.19l3.47,0.65l0.8,1.54l0.16,1.71l0.86,2.96l0.56,0.59l-0.26,0.61l-3.05,0.44l-1.26,1.05l-1.33,0.22l-0.33,0.37l-0.09,1.78l-2.68,1.0l-1.07,1.42l-4.47,1.13l-4.04,2.01l-0.54,4.64l-1.15,0.06l-0.92,0.61l-1.96,-0.35l-2.42,0.54l-0.74,1.9l-0.86,0.4l-1.14,3.26l-3.53,3.01l-0.8,3.55l-0.96,1.1l-0.29,0.82l-4.95,0.18Z", "name": "Morocco"}, "UZ": {"path": "M598.64,172.75l-1.63,1.52l0.06,0.64l1.85,1.12l1.97,-0.64l2.21,1.17l-2.52,1.68l-2.59,-0.22l-0.18,-0.41l0.46,-1.23l-0.45,-0.53l-3.35,0.69l-2.1,3.51l-1.87,-0.12l-1.03,1.51l0.22,0.55l1.64,0.62l0.46,1.83l-1.19,2.49l-2.66,-0.53l0.05,-1.36l-0.26,-0.39l-3.3,-1.23l-2.56,-1.4l-4.4,-3.34l-1.34,-3.14l-1.08,-0.6l-2.58,0.13l-0.69,-0.44l-0.47,-2.52l-3.37,-1.6l-0.43,0.05l-2.07,1.72l-2.1,1.01l-0.21,0.47l0.28,1.01l-1.91,0.03l-0.09,-10.5l5.99,-1.7l6.19,3.54l2.71,2.84l7.05,-0.67l2.71,2.01l-0.17,2.81l0.39,0.42l0.9,0.02l0.44,2.14l0.38,0.32l2.94,0.09l0.95,1.42l1.28,-0.24l1.05,-2.04l4.43,-2.5Z", "name": "Uzbekistan"}, "MM": {"path": "M673.9,230.21l-1.97,1.57l-0.57,0.96l-1.4,0.6l-1.36,1.05l-1.99,0.36l-1.08,2.66l-0.91,0.4l-0.19,0.55l1.21,2.27l2.52,3.43l-0.79,1.91l-0.74,0.41l-0.17,0.52l0.65,1.37l1.61,1.95l0.25,2.58l0.9,2.13l-1.92,3.57l0.68,-2.25l-0.81,-1.74l0.19,-2.65l-1.05,-1.53l-1.24,-6.17l-1.12,-2.26l-0.6,-0.13l-4.34,3.02l-2.39,-0.65l0.77,-2.84l-0.52,-2.61l-1.91,-2.96l0.25,-0.75l-0.29,-0.51l-1.33,-0.3l-1.61,-1.93l-0.1,-1.3l0.82,-0.24l0.04,-1.64l1.02,-0.52l0.21,-0.45l-0.23,-0.95l0.54,-0.96l0.08,-2.22l1.46,0.45l0.47,-0.2l1.12,-2.19l0.16,-1.35l1.33,-2.16l-0.0,-1.52l2.89,-1.66l1.63,0.44l0.5,-0.44l-0.17,-1.4l0.64,-0.36l0.08,-1.04l0.77,-0.11l0.71,1.35l1.06,0.69l-0.03,3.86l-2.38,2.37l-0.3,3.15l0.46,0.43l2.28,-0.38l0.51,2.08l1.47,0.67l-0.6,1.8l0.19,0.48l2.97,1.48l1.64,-0.55l0.02,0.32Z", "name": "Myanmar"}, "ML": {"path": "M392.61,254.08l-0.19,-2.37l-0.99,-0.87l-0.44,-1.3l-0.09,-1.28l0.81,-0.58l0.35,-1.24l2.37,0.65l1.31,-0.47l0.86,0.15l0.66,-0.56l9.83,-0.04l0.38,-0.28l0.56,-1.8l-0.44,-0.65l-2.35,-21.95l3.27,-0.04l16.7,11.38l0.74,1.31l2.5,1.09l0.02,1.38l0.44,0.39l2.34,-0.21l0.01,5.38l-1.28,1.61l-0.26,1.49l-5.31,0.57l-1.07,0.92l-2.9,0.1l-0.86,-0.48l-1.38,0.36l-2.4,1.08l-0.6,0.87l-1.85,1.09l-0.43,0.7l-0.79,0.39l-1.44,-0.21l-0.81,0.84l-0.34,1.64l-1.91,2.02l-0.06,1.03l-0.67,1.22l0.13,1.16l-0.97,0.39l-0.23,-0.64l-0.52,-0.24l-1.35,0.4l-0.34,0.55l-2.69,-0.28l-0.37,-0.35l-0.02,-0.9l-0.65,-0.35l0.45,-0.64l-0.03,-0.53l-2.12,-2.44l-0.76,-0.01l-2.0,1.16l-0.78,-0.15l-0.8,-0.67l-1.21,0.23Z", "name": "Mali"}, "MN": {"path": "M676.61,146.48l3.81,1.68l5.67,-1.0l2.37,0.41l2.34,1.5l1.79,1.75l2.29,-0.03l3.12,0.52l2.47,-0.81l3.41,-0.59l3.53,-2.21l1.25,0.29l1.53,1.13l2.27,-0.21l-2.66,5.01l0.64,1.68l0.47,0.21l1.32,-0.38l2.38,0.48l2.02,-1.11l1.76,0.89l2.06,2.02l-0.13,0.53l-1.72,-0.29l-3.77,0.46l-1.88,0.99l-1.76,1.99l-3.71,1.17l-2.45,1.6l-3.83,-0.87l-0.41,0.17l-1.31,1.99l1.04,2.24l-1.52,0.9l-1.74,1.57l-2.79,1.02l-3.78,0.13l-4.05,1.05l-2.77,1.52l-1.16,-0.85l-2.94,0.0l-3.62,-1.79l-2.58,-0.49l-3.4,0.41l-5.12,-0.67l-2.63,0.06l-1.31,-1.6l-1.4,-3.0l-1.48,-0.33l-3.13,-1.94l-6.16,-0.93l-0.71,-1.06l0.86,-3.82l-1.93,-2.71l-3.5,-1.18l-1.95,-1.58l-0.5,-1.72l2.34,-0.52l4.75,-2.8l3.62,-1.47l2.18,0.97l2.46,0.05l1.81,1.53l2.46,0.12l3.95,0.71l2.43,-2.28l0.08,-0.48l-0.9,-1.72l2.24,-2.98l2.62,1.27l4.94,1.17l0.43,2.24Z", "name": "Mongolia"}, "MK": {"path": "M472.8,173.98l0.49,-0.71l3.57,-0.71l1.0,0.77l0.13,1.45l-0.65,0.53l-1.15,-0.05l-1.12,0.67l-1.39,0.22l-0.79,-0.55l-0.29,-1.03l0.19,-0.6Z", "name": "Macedonia"}, "MW": {"path": "M505.5,309.31l0.85,1.95l0.15,2.86l-0.69,1.65l0.71,1.8l0.06,1.28l0.49,0.64l0.07,1.06l0.4,0.55l0.8,-0.23l0.55,0.61l0.69,-0.21l0.34,0.6l0.19,2.94l-1.04,0.62l-0.54,1.25l-1.11,-1.08l-0.16,-1.56l0.51,-1.31l-0.32,-1.3l-0.99,-0.65l-0.82,0.12l-2.36,-1.64l0.63,-1.96l0.82,-1.18l-0.46,-2.01l0.9,-2.86l-0.94,-2.51l0.96,0.18l0.29,0.4Z", "name": "Malawi"}, "MR": {"path": "M407.36,220.66l-2.58,0.03l-0.39,0.44l2.42,22.56l0.36,0.43l-0.39,1.24l-9.75,0.04l-0.56,0.53l-0.91,-0.11l-1.27,0.45l-1.61,-0.66l-0.97,0.03l-0.36,0.29l-0.38,1.35l-0.42,0.23l-2.93,-3.4l-2.96,-1.52l-1.62,-0.03l-1.27,0.54l-1.12,-0.2l-0.65,0.4l-0.08,-0.49l0.68,-1.29l0.31,-2.43l-0.57,-3.91l0.23,-1.21l-0.69,-1.5l-1.15,-1.02l0.25,-0.39l9.58,0.02l0.4,-0.45l-0.46,-3.68l0.47,-1.04l2.12,-0.21l0.36,-0.4l-0.08,-6.4l7.81,0.13l0.41,-0.4l0.01,-3.31l7.76,5.35Z", "name": "Mauritania"}, "UG": {"path": "M498.55,276.32l0.7,-0.46l1.65,0.5l1.96,-0.57l1.7,0.01l1.45,-0.98l0.91,1.33l1.33,3.95l-2.57,4.03l-1.46,-0.4l-2.54,0.91l-1.37,1.61l-0.01,0.81l-2.42,-0.01l-2.26,1.01l-0.17,-1.59l0.58,-1.04l0.14,-1.94l1.37,-2.28l1.78,-1.58l-0.17,-0.65l-0.72,-0.24l0.13,-2.43Z", "name": "Uganda"}, "MY": {"path": "M717.47,273.46l-1.39,0.65l-2.12,-0.41l-2.88,-0.0l-0.38,0.28l-0.84,2.75l-0.99,0.96l-1.21,3.29l-1.73,0.45l-2.45,-0.68l-1.39,0.31l-1.33,1.15l-1.59,-0.14l-1.41,0.44l-1.44,-1.19l-0.18,-0.73l1.34,0.53l1.93,-0.47l0.75,-2.22l4.02,-1.03l2.75,-3.21l0.82,0.94l0.64,-0.05l0.4,-0.65l0.96,0.06l0.42,-0.36l0.24,-2.68l1.81,-1.64l1.21,-1.86l0.63,-0.01l1.07,1.05l0.34,1.28l3.44,1.35l-0.06,0.35l-1.37,0.1l-0.35,0.54l0.32,0.88ZM673.68,269.59l0.17,1.09l0.47,0.33l1.65,-0.3l0.87,-0.94l1.61,1.52l0.98,1.56l-0.12,2.81l0.41,2.29l0.95,0.9l0.88,2.44l-1.27,0.12l-5.1,-3.67l-0.34,-1.29l-1.37,-1.59l-0.33,-1.97l-0.88,-1.4l0.25,-1.68l-0.46,-1.05l1.63,0.84Z", "name": "Malaysia"}, "MX": {"path": "M133.12,200.41l0.2,0.47l9.63,3.33l6.96,-0.02l0.4,-0.4l0.0,-0.74l3.77,0.0l3.55,2.93l1.39,2.83l1.52,1.04l2.08,0.82l0.47,-0.14l1.46,-2.0l1.73,-0.04l1.59,0.98l2.05,3.35l1.47,1.56l1.26,3.14l2.18,1.02l2.26,0.58l-1.18,3.72l-0.42,5.04l1.79,4.89l1.62,1.89l0.61,1.52l1.2,1.42l2.55,0.66l1.37,1.1l7.54,-1.89l1.86,-1.3l1.14,-4.3l4.1,-1.21l3.57,-0.11l0.32,0.3l-0.06,0.94l-1.26,1.45l-0.67,1.71l0.38,0.7l-0.72,2.27l-0.49,-0.3l-1.0,0.08l-1.0,1.39l-0.47,-0.11l-0.53,0.47l-4.26,-0.02l-0.4,0.4l-0.0,1.06l-1.1,0.26l0.1,0.44l1.82,1.44l0.56,0.91l-3.19,0.21l-1.21,2.09l0.24,0.72l-0.2,0.44l-2.24,-2.18l-1.45,-0.93l-2.22,-0.69l-1.52,0.22l-3.07,1.16l-10.55,-3.85l-2.86,-1.96l-3.78,-0.92l-1.08,-1.19l-2.62,-1.43l-1.18,-1.54l-0.38,-0.81l0.66,-0.63l-0.18,-0.53l0.52,-0.76l0.01,-0.91l-2.0,-3.82l-2.21,-2.63l-2.53,-2.09l-1.19,-1.62l-2.2,-1.17l-0.3,-0.43l0.34,-1.48l-0.21,-0.45l-1.23,-0.6l-1.36,-1.2l-0.59,-1.78l-1.54,-0.47l-2.44,-2.55l-0.16,-0.9l-1.33,-2.03l-0.84,-1.99l-0.16,-1.33l-1.81,-1.1l-0.97,0.05l-1.31,-0.7l-0.57,0.22l-0.4,1.12l0.72,3.77l3.51,3.89l0.28,0.78l0.53,0.26l0.41,1.43l1.33,1.73l1.58,1.41l0.8,2.39l1.43,2.41l0.13,1.32l0.37,0.36l1.04,0.08l1.67,2.28l-0.85,0.76l-0.66,-1.51l-1.68,-1.54l-2.91,-1.87l0.06,-1.82l-0.54,-1.68l-2.91,-2.03l-0.55,0.09l-1.95,-1.1l-0.88,-0.94l0.68,-0.08l0.93,-1.01l0.08,-1.78l-1.93,-1.94l-1.46,-0.77l-3.75,-7.56l4.88,-0.42Z", "name": "Mexico"}, "VU": {"path": "M839.04,322.8l0.22,1.14l-0.44,0.03l-0.2,-1.45l0.42,0.27Z", "name": "Vanuatu"}, "FR": {"path": "M444.48,172.62l-0.64,1.78l-0.58,-0.31l-0.49,-1.72l0.4,-0.89l1.0,-0.72l0.3,1.85ZM429.64,147.1l1.78,1.58l1.46,-0.13l2.1,1.42l1.35,0.27l1.23,0.83l3.04,0.5l-1.03,1.85l-0.3,2.12l-0.41,0.32l-0.95,-0.24l-0.5,0.43l0.06,0.61l-1.81,1.92l-0.04,1.42l0.55,0.38l0.88,-0.36l0.61,0.97l-0.03,1.0l0.57,0.91l-0.75,1.09l0.65,2.39l1.27,0.57l-0.18,0.82l-2.01,1.53l-4.77,-0.8l-3.82,1.0l-0.53,1.85l-2.49,0.34l-2.71,-1.31l-1.16,0.57l-4.31,-1.29l-0.72,-0.86l1.19,-1.78l0.39,-6.45l-2.58,-3.3l-1.9,-1.66l-3.72,-1.23l-0.19,-1.72l2.81,-0.61l4.12,0.81l0.47,-0.48l-0.6,-2.77l1.94,0.95l5.83,-2.54l0.92,-2.74l1.6,-0.49l0.24,0.78l1.36,0.33l1.05,1.19ZM289.01,278.39l-0.81,0.8l-0.78,0.12l-0.5,-0.66l-0.56,-0.1l-0.91,0.6l-0.46,-0.22l1.09,-2.96l-0.96,-1.77l-0.17,-1.49l1.07,-1.77l2.32,0.75l2.51,2.01l0.3,0.74l-2.14,3.96Z", "name": "France"}, "FI": {"path": "M492.17,76.39l-0.23,3.5l3.52,2.63l-2.08,2.88l-0.02,0.44l2.8,4.56l-1.59,3.31l2.16,3.24l-0.94,2.39l0.14,0.47l3.44,2.51l-0.77,1.62l-7.52,6.95l-4.5,0.31l-4.38,1.37l-3.8,0.74l-1.44,-1.96l-2.17,-1.11l0.5,-3.66l-1.16,-3.33l1.09,-2.08l2.21,-2.42l5.67,-4.32l1.64,-0.83l0.21,-0.42l-0.46,-2.02l-3.38,-1.89l-0.75,-1.43l-0.22,-6.74l-6.79,-4.8l0.8,-0.62l2.54,2.12l3.46,-0.12l3.0,0.96l2.51,-2.11l1.17,-3.08l3.55,-1.38l2.76,1.53l-0.95,2.79Z", "name": "Finland"}, "FJ": {"path": "M871.53,326.34l-2.8,1.05l-0.08,-0.23l2.97,-1.21l-0.1,0.39ZM867.58,329.25l0.43,0.37l-0.27,0.88l-1.24,0.28l-1.04,-0.24l-0.14,-0.66l0.63,-0.58l0.92,0.26l0.7,-0.31Z", "name": "Fiji"}, "FK": {"path": "M274.36,425.85l1.44,1.08l-0.47,0.73l-3.0,0.89l-0.96,-1.0l-0.52,-0.05l-1.83,1.29l-0.73,-0.88l2.46,-1.64l1.93,0.76l1.67,-1.19Z", "name": "Falkland Is."}, "NI": {"path": "M202.33,252.67l0.81,-0.18l1.03,-1.02l-0.04,-0.88l0.68,-0.0l0.63,-0.54l0.97,0.22l1.53,-1.26l0.58,-0.99l1.17,0.34l2.41,-0.94l0.13,1.32l-0.81,1.94l0.1,2.74l-0.36,0.37l-0.11,1.75l-0.47,0.81l0.18,1.14l-1.73,-0.85l-0.71,0.27l-1.47,-0.6l-0.52,0.16l-4.01,-3.81Z", "name": "Nicaragua"}, "NL": {"path": "M430.31,143.39l0.6,-0.5l2.13,-4.8l3.2,-1.33l1.74,0.08l0.33,0.8l-0.59,2.92l-0.5,0.99l-1.26,0.0l-0.4,0.45l0.33,2.7l-2.2,-1.78l-2.62,0.58l-0.75,-0.11Z", "name": "Netherlands"}, "NO": {"path": "M491.44,67.41l6.8,2.89l-2.29,0.86l-0.15,0.65l2.33,2.38l-4.98,1.79l0.84,-2.45l-0.18,-0.48l-3.55,-1.8l-3.89,1.52l-1.42,3.38l-2.12,1.72l-2.64,-1.0l-3.11,0.21l-2.66,-2.22l-0.5,-0.01l-1.41,1.1l-1.44,0.17l-0.35,0.35l-0.32,2.47l-4.32,-0.64l-0.44,0.29l-0.58,2.11l-2.45,0.2l-4.15,7.68l-3.88,5.76l0.78,1.62l-0.64,1.16l-2.24,-0.06l-0.38,0.24l-1.66,3.89l0.15,5.17l1.57,2.04l-0.78,4.16l-2.02,2.48l-0.85,1.63l-1.3,-1.75l-0.58,-0.07l-4.87,4.19l-3.1,0.79l-3.16,-1.7l-0.85,-3.77l-0.77,-8.55l2.14,-2.31l6.55,-3.27l5.02,-4.17l10.63,-13.84l10.98,-8.7l5.35,-1.91l4.34,0.12l3.69,-3.64l4.49,0.19l4.37,-0.89ZM484.55,20.04l4.26,1.75l-3.1,2.55l-7.1,0.65l-7.08,-0.9l-0.37,-1.31l-0.37,-0.29l-3.44,-0.1l-2.08,-2.0l6.87,-1.44l3.9,1.31l2.39,-1.64l6.13,1.4ZM481.69,33.93l-4.45,1.74l-3.54,-0.99l1.12,-0.9l0.05,-0.58l-1.06,-1.22l4.22,-0.89l1.09,1.97l2.57,0.87ZM466.44,24.04l7.43,3.77l-5.41,1.86l-1.58,4.08l-2.26,1.2l-1.12,4.11l-2.61,0.18l-4.79,-2.86l1.84,-1.54l-0.1,-0.68l-3.69,-1.53l-4.77,-4.51l-1.73,-3.89l6.11,-1.82l1.54,1.92l3.57,-0.08l1.2,-1.96l3.32,-0.18l3.05,1.92Z", "name": "Norway"}, "NA": {"path": "M474.26,330.66l-0.97,0.04l-0.38,0.4l-0.07,8.9l-2.09,0.08l-0.39,0.4l-0.0,17.42l-1.98,1.23l-1.17,0.17l-2.44,-0.66l-0.48,-1.13l-0.99,-0.74l-0.54,0.05l-0.9,1.01l-1.53,-1.68l-0.93,-1.88l-1.99,-8.56l-0.06,-3.12l-0.33,-1.52l-2.3,-3.34l-1.91,-4.83l-1.96,-2.43l-0.12,-1.57l2.33,-0.79l1.43,0.07l1.81,1.13l10.23,-0.25l1.84,1.23l5.87,0.35ZM474.66,330.64l6.51,-1.6l1.9,0.39l-1.69,0.4l-1.31,0.83l-1.12,-0.94l-4.29,0.92Z", "name": "Namibia"}, "NC": {"path": "M838.78,341.24l-0.33,0.22l-2.9,-1.75l-3.26,-3.37l1.65,0.83l4.85,4.07Z", "name": "New Caledonia"}, "NE": {"path": "M454.75,226.53l1.33,1.37l0.48,0.07l1.27,-0.7l0.53,3.52l0.94,0.83l0.17,0.92l0.81,0.69l-0.44,0.95l-0.96,5.26l-0.13,3.22l-3.04,2.31l-1.22,3.57l1.02,1.24l-0.0,1.46l0.39,0.4l1.13,0.04l-0.9,1.25l-1.47,-2.42l-0.86,-0.29l-2.09,1.37l-1.74,-0.67l-1.45,-0.17l-0.85,0.35l-1.36,-0.07l-1.64,1.09l-1.06,0.05l-2.94,-1.28l-1.44,0.59l-1.01,-0.03l-0.97,-0.94l-2.7,-0.98l-2.69,0.3l-0.87,0.64l-0.47,1.6l-0.75,1.16l-0.12,1.53l-1.57,-1.1l-1.31,0.24l0.03,-0.81l-0.32,-0.41l-2.59,-0.52l-0.15,-1.16l-1.35,-1.6l-0.29,-1.0l0.13,-0.84l1.29,-0.08l1.08,-0.92l3.31,-0.22l2.22,-0.41l0.32,-0.34l0.2,-1.47l1.39,-1.88l-0.01,-5.66l3.36,-1.12l7.24,-5.12l8.42,-4.92l3.69,1.06Z", "name": "Niger"}, "NG": {"path": "M456.32,253.89l0.64,0.65l-0.28,1.04l-2.11,2.01l-2.03,5.18l-1.37,1.16l-1.15,3.18l-1.33,0.66l-1.46,-0.97l-1.21,0.16l-1.38,1.36l-0.91,0.24l-1.79,4.06l-2.33,0.81l-1.11,-0.07l-0.86,0.5l-1.71,-0.05l-1.19,-1.39l-0.89,-1.89l-1.77,-1.66l-3.95,-0.08l0.07,-5.21l0.42,-1.43l1.95,-2.3l-0.14,-0.91l0.43,-1.18l-0.53,-1.41l0.25,-2.92l0.72,-1.07l0.32,-1.34l0.46,-0.39l2.47,-0.28l2.34,0.89l1.15,1.02l1.28,0.04l1.22,-0.58l3.03,1.27l1.49,-0.14l1.36,-1.0l1.33,0.07l0.82,-0.35l3.45,0.8l1.82,-1.32l1.84,2.67l0.66,0.16Z", "name": "Nigeria"}, "NZ": {"path": "M857.8,379.65l1.86,3.12l0.44,0.18l0.3,-0.38l0.03,-1.23l0.38,0.27l0.57,2.31l2.02,0.94l1.81,0.27l1.57,-1.06l0.7,0.18l-1.15,3.59l-1.98,0.11l-0.74,1.2l0.2,1.11l-2.42,3.98l-1.49,0.92l-1.04,-0.85l1.21,-2.05l-0.81,-2.01l-2.63,-1.25l0.04,-0.57l1.82,-1.19l0.43,-2.34l-0.16,-2.03l-0.95,-1.82l-0.06,-0.72l-3.11,-3.64l-0.79,-1.52l1.56,1.45l1.76,0.66l0.65,2.34ZM853.83,393.59l0.57,1.24l0.59,0.16l1.42,-0.97l0.46,0.79l0.0,1.03l-2.47,3.48l-1.26,1.2l-0.06,0.5l0.55,0.87l-1.41,0.07l-2.33,1.38l-2.03,5.02l-3.02,2.16l-2.06,-0.06l-1.71,-1.04l-2.47,-0.2l-0.27,-0.73l1.22,-2.1l3.05,-2.94l1.62,-0.59l4.02,-2.82l1.57,-1.67l1.07,-2.16l0.88,-0.7l0.48,-1.75l1.24,-0.97l0.35,0.79Z", "name": "New Zealand"}, "NP": {"path": "M641.14,213.62l0.01,3.19l-1.74,0.04l-4.8,-0.86l-1.58,-1.39l-3.37,-0.34l-7.65,-3.7l0.8,-2.09l2.33,-1.7l1.77,0.75l2.49,1.76l1.38,0.41l0.99,1.35l1.9,0.52l1.99,1.17l5.49,0.9Z", "name": "Nepal"}, "CI": {"path": "M407.4,259.27l0.86,0.42l0.56,0.9l1.13,0.53l1.19,-0.61l0.97,-0.08l1.42,0.54l0.6,3.24l-1.03,2.08l-0.65,2.84l1.06,2.33l-0.06,0.53l-2.54,-0.47l-1.66,0.03l-3.06,0.46l-4.11,1.6l0.32,-3.06l-1.18,-1.31l-1.32,-0.66l0.42,-0.85l-0.2,-1.4l0.5,-0.67l0.01,-1.59l0.84,-0.32l0.26,-0.5l-1.15,-3.01l0.12,-0.5l0.51,-0.25l0.66,0.31l1.93,0.02l0.67,-0.71l0.71,-0.14l0.25,0.69l0.57,0.22l1.4,-0.61Z", "name": "C\u00c3\u00b4te d'Ivoire"}, "CH": {"path": "M444.62,156.35l-0.29,0.87l0.18,0.53l1.13,0.58l1.0,0.1l-0.1,0.65l-0.79,0.38l-1.72,-0.37l-0.45,0.23l-0.45,1.04l-0.75,0.06l-0.84,-0.4l-1.32,1.0l-0.96,0.12l-0.88,-0.55l-0.81,-1.3l-0.49,-0.16l-0.63,0.26l0.02,-0.65l1.71,-1.66l0.1,-0.56l0.93,0.08l0.58,-0.46l1.99,0.02l0.66,-0.61l2.19,0.79Z", "name": "Switzerland"}, "CO": {"path": "M242.07,254.93l-1.7,0.59l-0.59,1.18l-1.7,1.69l-0.38,1.93l-0.67,1.43l0.31,0.57l1.03,0.13l0.25,0.9l0.57,0.64l-0.04,2.34l1.64,1.42l3.16,-0.24l1.26,0.28l1.67,2.06l0.41,0.13l4.09,-0.39l0.45,0.22l-0.92,1.95l-0.2,1.8l0.52,1.83l0.75,1.05l-1.12,1.1l0.07,0.63l0.84,0.51l0.74,1.29l-0.39,-0.45l-0.59,-0.01l-0.71,0.74l-4.71,-0.05l-0.4,0.41l0.03,1.57l0.33,0.39l1.11,0.2l-1.68,0.4l-0.29,0.38l-0.01,1.82l1.16,1.14l0.34,1.25l-1.05,7.05l-1.04,-0.87l1.26,-1.99l-0.13,-0.56l-2.18,-1.23l-1.38,0.2l-1.14,-0.38l-1.27,0.61l-1.55,-0.26l-1.38,-2.46l-1.23,-0.75l-0.85,-1.2l-1.67,-1.19l-0.86,0.13l-2.11,-1.32l-1.01,0.31l-1.8,-0.29l-0.52,-0.91l-3.09,-1.68l0.77,-0.52l-0.1,-1.12l0.41,-0.64l1.34,-0.32l2.0,-2.88l-0.11,-0.57l-0.66,-0.43l0.39,-1.38l-0.52,-2.1l0.49,-0.83l-0.4,-2.13l-0.97,-1.35l0.17,-0.66l0.86,-0.08l0.47,-0.75l-0.46,-1.63l1.41,-0.07l1.8,-1.69l0.93,-0.24l0.3,-0.38l0.45,-2.76l1.22,-1.0l1.44,-0.04l0.45,-0.5l1.91,0.12l2.93,-1.84l1.15,-1.14l0.91,0.46l-0.25,0.45Z", "name": "Colombia"}, "CN": {"path": "M740.23,148.97l4.57,1.3l2.8,2.17l0.98,2.9l0.38,0.27l3.8,0.0l2.32,-1.28l3.29,-0.75l-0.96,2.09l-1.02,1.28l-0.85,3.4l-1.52,2.73l-2.76,-0.5l-2.4,1.13l-0.21,0.45l0.64,2.57l-0.32,3.2l-0.94,0.06l-0.37,0.89l-0.91,-1.01l-0.64,0.07l-0.92,1.57l-3.73,1.25l-0.26,0.48l0.26,1.06l-1.5,-0.08l-1.09,-0.86l-0.56,0.06l-1.67,2.06l-2.7,1.56l-2.03,1.88l-3.4,0.83l-1.93,1.4l-1.15,0.34l0.33,-0.7l-0.41,-0.89l1.79,-1.79l0.02,-0.54l-1.32,-1.56l-0.48,-0.1l-2.24,1.09l-2.83,2.06l-1.51,1.83l-2.28,0.13l-1.55,1.49l-0.04,0.5l1.32,1.97l2.0,0.58l0.31,1.35l1.98,0.84l3.0,-1.96l2.0,1.02l1.49,0.11l0.22,0.83l-3.37,0.86l-1.12,1.48l-2.5,1.52l-1.29,1.99l0.14,0.56l2.57,1.48l0.97,2.7l3.17,4.63l-0.03,1.66l-1.35,0.65l-0.2,0.51l0.6,1.47l1.4,0.91l-0.89,3.82l-1.43,0.38l-3.85,6.44l-2.27,3.11l-6.78,4.57l-2.73,0.29l-1.45,1.04l-0.62,-0.61l-0.55,-0.01l-1.36,1.25l-3.39,1.27l-2.61,0.4l-1.1,2.79l-0.81,0.09l-0.49,-1.42l0.5,-0.85l-0.25,-0.59l-3.36,-0.84l-1.3,0.4l-2.31,-0.62l-0.94,-0.84l0.33,-1.28l-0.3,-0.49l-2.19,-0.46l-1.13,-0.93l-0.47,-0.02l-2.06,1.36l-4.29,0.28l-2.76,1.05l-0.28,0.43l0.32,2.53l-0.59,-0.03l-0.19,-1.34l-0.55,-0.34l-1.68,0.7l-2.46,-1.23l0.62,-1.87l-0.26,-0.51l-1.37,-0.44l-0.54,-2.22l-0.45,-0.3l-2.13,0.35l0.24,-2.48l2.39,-2.4l0.03,-4.31l-1.19,-0.92l-0.78,-1.49l-0.41,-0.21l-1.41,0.19l-1.98,-0.3l0.46,-1.07l-1.17,-1.7l-0.55,-0.11l-1.63,1.05l-2.25,-0.57l-2.89,1.73l-2.25,1.98l-1.75,0.29l-1.17,-0.71l-3.31,-0.65l-1.48,0.79l-1.04,1.27l-0.12,-1.17l-0.54,-0.34l-1.44,0.54l-5.55,-0.86l-1.98,-1.16l-1.89,-0.54l-0.99,-1.35l-1.34,-0.37l-2.55,-1.79l-2.01,-0.84l-1.21,0.56l-5.57,-3.45l-0.53,-2.31l1.19,0.25l0.48,-0.37l0.08,-1.42l-0.98,-1.56l0.15,-2.44l-2.69,-3.32l-4.12,-1.23l-0.67,-2.0l-1.92,-1.48l-0.38,-0.7l-0.51,-3.01l-1.52,-0.66l-0.7,0.13l-0.48,-2.05l0.55,-0.51l-0.09,-0.82l2.03,-1.19l1.6,-0.54l2.56,0.38l0.42,-0.22l0.85,-1.7l3.0,-0.33l1.1,-1.26l4.05,-1.77l0.39,-0.91l-0.17,-1.44l1.45,-0.67l0.2,-0.52l-2.07,-4.9l4.51,-1.12l1.37,-0.73l1.89,-5.51l4.98,0.86l1.51,-1.7l0.11,-2.87l1.99,-0.38l1.83,-2.06l0.49,-0.13l0.68,2.08l2.23,1.77l3.44,1.16l1.55,2.29l-0.92,3.49l0.96,1.67l6.54,1.13l2.95,1.87l1.47,0.35l1.06,2.62l1.53,1.91l3.05,0.08l5.14,0.67l3.37,-0.41l2.36,0.43l3.65,1.8l3.06,0.04l1.45,0.88l2.87,-1.59l3.95,-1.02l3.83,-0.14l3.06,-1.14l1.77,-1.6l1.72,-1.01l0.17,-0.49l-1.1,-2.05l1.02,-1.54l4.02,0.8l2.45,-1.61l3.76,-1.19l1.96,-2.13l1.63,-0.83l3.51,-0.4l1.92,0.34l0.46,-0.3l0.17,-1.5l-2.27,-2.22l-2.11,-1.09l-2.18,1.11l-2.32,-0.47l-1.29,0.32l-0.4,-0.82l2.73,-5.16l3.02,1.06l3.53,-2.06l0.18,-1.68l2.16,-3.35l1.49,-1.35l-0.03,-1.85l-1.07,-0.85l1.54,-1.26l2.98,-0.59l3.23,-0.09l3.64,0.99l2.04,1.16l3.29,6.71l0.92,3.19ZM696.92,237.31l-1.87,1.08l-1.63,-0.64l-0.06,-1.79l1.03,-0.98l2.58,-0.69l1.16,0.05l0.3,0.54l-0.98,1.06l-0.53,1.37Z", "name": "China"}, "CM": {"path": "M457.92,257.49l1.05,1.91l-1.4,0.16l-1.05,-0.23l-0.45,0.22l-0.54,1.19l0.08,0.45l1.48,1.47l1.05,0.45l1.01,2.46l-1.52,2.99l-0.68,0.68l-0.13,3.69l2.38,3.84l1.09,0.8l0.24,2.48l-3.67,-1.14l-11.27,-0.13l0.23,-1.79l-0.98,-1.66l-1.19,-0.54l-0.44,-0.97l-0.6,-0.42l1.71,-4.27l0.75,-0.13l1.38,-1.36l0.65,-0.03l1.71,0.99l1.93,-1.12l1.14,-3.18l1.38,-1.17l2.0,-5.14l2.17,-2.13l0.3,-1.64l-0.86,-0.88l0.03,-0.33l0.94,1.28l0.07,3.22Z", "name": "Cameroon"}, "CL": {"path": "M246.5,429.18l-3.14,1.83l-0.57,3.16l-0.64,0.05l-2.68,-1.06l-2.82,-2.33l-3.04,-1.89l-0.69,-1.85l0.63,-2.14l-1.21,-2.11l-0.31,-5.37l1.01,-2.91l2.57,-2.38l-0.18,-0.68l-3.16,-0.77l2.05,-2.47l0.77,-4.65l2.32,0.9l0.54,-0.29l1.31,-6.31l-0.22,-0.44l-1.68,-0.8l-0.56,0.28l-0.7,3.36l-0.81,-0.22l1.56,-9.41l1.15,-2.24l-0.71,-2.82l-0.18,-2.84l1.01,-0.33l3.26,-9.14l1.07,-4.22l-0.56,-4.21l0.74,-2.34l-0.29,-3.27l1.46,-3.34l2.04,-16.59l-0.66,-7.76l1.03,-0.53l0.54,-0.9l0.79,1.14l0.32,1.78l1.25,1.16l-0.69,2.55l1.33,2.9l0.97,3.59l0.46,0.29l1.5,-0.3l0.11,0.23l-0.76,2.44l-2.57,1.23l-0.23,0.37l0.08,4.33l-0.46,0.77l0.56,1.21l-1.58,1.51l-1.68,2.62l-0.89,2.47l0.2,2.7l-1.48,2.73l1.12,5.09l0.64,0.61l-0.01,2.29l-1.38,2.68l0.01,2.4l-1.89,2.04l0.02,2.75l0.69,2.57l-1.43,1.13l-1.26,5.68l0.39,3.51l-0.97,0.89l0.58,3.5l1.02,1.14l-0.65,1.02l0.15,0.57l1.0,0.53l0.16,0.69l-1.03,0.85l0.26,1.75l-0.89,4.03l-1.31,2.66l0.24,1.75l-0.71,1.83l-1.99,1.7l0.3,3.67l0.88,1.19l1.58,0.01l0.01,2.21l1.04,1.95l5.98,0.63ZM248.69,430.79l0.0,7.33l0.4,0.4l3.52,0.05l-0.44,0.75l-1.94,0.98l-2.49,-0.37l-1.88,-1.06l-2.55,-0.49l-5.59,-3.71l-2.38,-2.63l4.1,2.48l3.32,1.23l0.45,-0.12l1.29,-1.57l0.83,-2.32l2.05,-1.24l1.31,0.29Z", "name": "Chile"}, "CA": {"path": "M280.06,145.6l-1.67,2.88l0.07,0.49l0.5,0.04l1.46,-0.98l1.0,0.42l-0.56,0.72l0.17,0.62l2.22,0.89l1.35,-0.71l1.95,0.78l-0.66,2.01l0.5,0.51l1.32,-0.42l0.98,3.17l-0.91,2.41l-0.8,0.08l-1.23,-0.45l0.47,-2.25l-0.89,-0.83l-0.48,0.06l-2.78,2.63l-0.34,-0.02l1.02,-0.85l-0.14,-0.69l-2.4,-0.77l-7.4,0.08l-0.17,-0.41l1.3,-0.94l0.02,-0.64l-0.73,-0.58l1.85,-1.74l2.57,-5.16l1.47,-1.79l1.99,-1.05l0.46,0.06l-1.53,2.45ZM68.32,74.16l4.13,0.95l4.02,2.14l2.61,0.4l2.47,-1.89l2.88,-1.31l3.85,0.48l3.71,-1.94l3.82,-1.04l1.56,1.68l0.49,0.08l1.87,-1.04l0.65,-1.98l1.24,0.35l4.16,3.94l0.54,0.01l2.75,-2.49l0.26,2.59l0.49,0.35l3.08,-0.73l1.04,-1.27l2.73,0.23l3.83,1.86l5.86,1.61l3.47,0.75l2.44,-0.26l2.73,1.78l-2.98,1.81l-0.19,0.41l0.31,0.32l4.53,0.92l6.87,-0.5l2.0,-0.69l2.49,2.39l0.53,0.02l2.72,-2.16l-0.02,-0.64l-2.16,-1.54l1.15,-1.06l4.83,-0.61l1.84,0.95l2.48,2.31l3.01,-0.23l4.55,1.92l3.85,-0.67l3.61,0.1l0.41,-0.44l-0.25,-2.36l1.79,-0.61l3.49,1.32l-0.01,3.77l0.31,0.39l0.45,-0.22l1.48,-3.16l1.74,0.1l0.41,-0.3l1.13,-4.37l-2.78,-3.11l-2.8,-1.74l0.19,-4.64l2.71,-3.07l2.98,0.67l2.41,1.95l3.19,4.8l-1.99,1.97l0.21,0.68l4.33,0.84l-0.01,4.15l0.25,0.37l0.44,-0.09l3.07,-3.15l2.54,2.39l-0.61,3.33l2.42,2.88l0.61,0.0l2.61,-3.08l1.88,-3.82l0.17,-4.58l6.72,0.94l3.13,2.04l0.13,1.82l-1.76,2.19l-0.01,0.49l1.66,2.16l-0.26,1.71l-4.68,2.8l-3.28,0.61l-2.47,-1.2l-0.55,0.23l-0.73,2.04l-2.38,3.43l-0.74,1.77l-2.74,2.57l-3.44,0.25l-2.21,1.78l-0.28,2.53l-2.82,0.55l-3.12,3.22l-2.72,4.31l-1.03,3.17l-0.14,4.31l0.33,0.41l3.44,0.57l2.24,5.95l0.45,0.23l3.4,-0.69l4.52,1.51l2.43,1.31l1.91,1.73l3.1,0.96l2.62,1.46l6.6,0.54l-0.35,2.74l0.81,3.53l1.81,3.78l3.83,3.3l0.45,0.04l2.1,-1.28l1.37,-3.69l-1.31,-5.38l-1.45,-1.58l3.57,-1.47l2.84,-2.46l1.52,-2.8l-0.25,-2.55l-1.7,-3.07l-2.85,-2.61l2.8,-3.95l-1.08,-3.37l-0.79,-5.67l1.36,-0.7l6.76,1.41l2.12,-0.96l5.12,3.36l1.05,1.61l4.08,0.26l-0.06,2.87l0.83,4.7l0.3,0.32l2.16,0.54l1.73,2.06l0.5,0.09l3.63,-2.03l2.52,-4.19l1.26,-1.32l7.6,11.72l-0.92,2.04l0.16,0.51l3.3,1.97l2.22,1.98l4.1,0.98l1.43,0.99l0.95,2.79l2.1,0.68l0.84,1.08l0.17,3.45l-3.37,2.26l-4.22,1.24l-3.06,2.63l-4.06,0.51l-5.35,-0.69l-6.39,0.2l-2.3,2.41l-3.26,1.51l-6.47,7.15l-0.06,0.48l0.44,0.19l2.13,-0.52l4.17,-4.24l5.12,-2.62l3.52,-0.3l1.69,1.21l-2.12,2.21l0.81,3.47l1.02,2.61l3.47,1.6l4.14,-0.45l2.15,-2.8l0.26,1.48l1.14,0.8l-2.56,1.69l-5.5,1.82l-2.54,1.27l-2.74,2.15l-1.4,-0.16l-0.07,-2.01l4.14,-2.44l0.18,-0.45l-0.39,-0.29l-6.63,0.45l-1.39,-1.49l-0.14,-4.43l-1.11,-0.91l-1.82,0.39l-0.66,-0.66l-0.6,0.03l-1.91,2.39l-0.82,2.52l-0.8,1.27l-1.67,0.56l-0.46,0.76l-8.31,0.07l-1.21,0.62l-2.35,1.97l-0.71,-0.14l-1.37,0.96l-1.12,-0.48l-4.74,1.26l-0.9,1.17l0.21,0.62l1.73,0.3l-1.81,0.31l-1.85,0.81l-2.11,-0.13l-2.95,1.78l-0.69,-0.09l1.39,-2.1l1.73,-1.21l0.1,-2.29l1.16,-1.99l0.49,0.53l2.03,0.42l1.2,-1.16l0.02,-0.47l-2.66,-3.51l-2.28,-0.61l-5.64,-0.71l-0.4,-0.57l-0.79,0.13l0.2,-0.41l-0.22,-0.55l-0.68,-0.26l0.19,-1.26l-0.78,-0.73l0.31,-0.64l-0.29,-0.57l-2.6,-0.44l-0.75,-1.63l-0.94,-0.66l-4.31,-0.65l-1.13,1.19l-1.48,0.59l-0.85,1.06l-2.83,-0.76l-2.09,0.39l-2.39,-0.97l-4.24,-0.7l-0.57,-0.4l-0.41,-1.63l-0.4,-0.3l-0.85,0.02l-0.39,0.4l-0.01,0.85l-69.13,-0.01l-6.51,-4.52l-4.5,-1.38l-1.26,-2.66l0.33,-1.93l-0.23,-0.43l-3.01,-1.35l-0.55,-2.77l-2.89,-2.38l-0.04,-1.45l1.39,-1.83l-0.28,-2.55l-4.16,-2.2l-4.07,-6.6l-4.02,-3.22l-1.3,-1.88l-0.5,-0.13l-2.51,1.21l-2.23,1.87l-3.85,-3.88l-2.44,-1.04l-2.22,-0.13l0.03,-37.49ZM260.37,148.65l3.04,0.76l2.26,1.2l-3.78,-0.95l-1.53,-1.01ZM249.4,3.81l6.68,0.49l5.32,0.79l4.26,1.57l-0.07,1.1l-5.85,2.53l-6.02,1.21l-2.39,1.39l-0.18,0.45l0.39,0.29l4.01,-0.02l-4.65,2.82l-4.2,1.74l-4.19,4.59l-5.03,0.92l-1.67,1.15l-7.47,0.59l-0.37,0.37l0.32,0.42l2.41,0.49l-0.81,0.47l-0.12,0.59l1.83,2.41l-2.02,1.59l-3.81,1.51l-1.32,2.16l-3.38,1.53l-0.22,0.48l0.35,1.19l0.4,0.29l3.88,-0.18l0.03,0.61l-6.33,2.95l-6.41,-1.4l-7.43,0.79l-3.72,-0.62l-4.4,-0.25l-0.23,-1.83l4.29,-1.11l0.28,-0.51l-1.1,-3.45l1.0,-0.25l6.58,2.28l0.47,-0.16l-0.05,-0.49l-3.41,-3.45l-3.58,-0.98l1.48,-1.55l4.34,-1.29l0.97,-2.19l-0.16,-0.48l-3.42,-2.13l-0.81,-2.26l6.2,0.22l2.24,0.58l3.91,-2.1l0.2,-0.43l-0.35,-0.32l-5.64,-0.67l-8.73,0.36l-4.26,-1.9l-2.12,-2.4l-2.78,-1.66l-0.41,-1.52l3.31,-1.03l2.93,-0.2l4.91,-0.99l3.7,-2.27l2.87,0.3l2.62,1.67l0.56,-0.14l1.82,-3.2l3.13,-0.94l4.44,-0.69l7.53,-0.26l1.48,0.67l7.19,-1.06l10.8,0.79ZM203.85,57.54l0.01,0.42l1.97,2.97l0.68,-0.02l2.24,-3.72l5.95,-1.86l4.01,4.64l-0.35,2.91l0.5,0.43l4.95,-1.36l2.32,-1.8l5.31,2.28l3.27,2.11l0.3,1.84l0.48,0.33l4.42,-0.99l2.64,2.87l5.97,1.77l2.06,1.72l2.11,3.71l-4.19,1.86l-0.01,0.73l5.9,2.83l3.94,0.94l3.78,3.95l3.46,0.25l-0.63,2.37l-4.11,4.47l-2.76,-1.56l-3.9,-3.94l-3.59,0.41l-0.33,0.34l-0.19,2.72l2.63,2.38l3.42,1.89l0.94,0.97l1.55,3.75l-0.7,2.29l-2.74,-0.92l-6.25,-3.15l-0.51,0.13l0.05,0.52l6.07,5.69l0.18,0.59l-6.09,-1.39l-5.31,-2.24l-2.63,-1.66l0.6,-0.77l-0.12,-0.6l-7.39,-4.01l-0.59,0.37l0.03,0.79l-6.73,0.6l-1.69,-1.1l1.36,-2.46l4.51,-0.07l5.15,-0.52l0.31,-0.6l-0.74,-1.3l0.78,-1.84l3.21,-4.05l-0.67,-2.35l-1.11,-1.6l-3.84,-2.1l-4.35,-1.28l0.91,-0.63l0.06,-0.61l-2.65,-2.75l-2.34,-0.36l-1.89,-1.46l-0.53,0.03l-1.24,1.23l-4.36,0.55l-9.04,-0.99l-9.26,-1.98l-1.6,-1.22l2.22,-1.77l0.13,-0.44l-0.38,-0.27l-3.22,-0.02l-0.72,-4.25l1.83,-4.04l2.42,-1.85l5.5,-1.1l-1.39,2.35ZM261.19,159.33l2.07,0.61l1.44,-0.04l-1.15,0.63l-2.94,-1.23l-0.4,-0.68l0.36,-0.37l0.61,1.07ZM230.83,84.39l-2.37,0.18l-0.49,-1.63l0.93,-2.09l1.94,-0.51l1.62,0.99l0.02,1.52l-1.66,1.54ZM229.43,58.25l0.11,0.65l-4.87,-0.21l-2.72,0.62l-3.1,-2.57l0.08,-1.26l0.86,-0.23l5.57,0.51l4.08,2.5ZM222.0,105.02l-0.72,1.49l-0.63,-0.19l-0.48,-0.84l0.81,-0.99l0.65,0.05l0.37,0.46ZM183.74,38.32l2.9,1.7l4.79,-0.01l1.84,1.46l-0.49,1.68l0.23,0.48l2.82,1.14l1.76,1.26l7.01,0.65l4.1,-1.1l5.03,-0.43l3.93,0.35l2.48,1.77l0.46,1.7l-1.3,1.1l-3.56,1.01l-3.23,-0.59l-7.17,0.76l-5.09,0.09l-3.99,-0.6l-6.42,-1.54l-0.79,-2.51l-0.3,-2.49l-2.64,-2.5l-5.32,-0.72l-2.52,-1.4l0.68,-1.57l4.78,0.31ZM207.38,91.35l0.4,1.56l0.56,0.26l1.06,-0.52l1.32,0.96l5.42,2.57l0.2,1.68l0.46,0.35l1.68,-0.28l1.15,0.85l-1.55,0.87l-3.61,-0.88l-1.32,-1.69l-0.57,-0.06l-2.45,2.1l-3.12,1.79l-0.7,-1.87l-0.42,-0.26l-2.16,0.24l1.39,-1.39l0.32,-3.14l0.76,-3.35l1.18,0.22ZM215.49,102.6l-2.67,1.95l-1.4,-0.07l-0.3,-0.58l1.53,-1.48l2.84,0.18ZM202.7,24.12l2.53,1.59l-2.87,1.4l-4.53,4.05l-4.25,0.38l-5.03,-0.68l-2.45,-2.04l0.03,-1.62l1.82,-1.37l0.14,-0.45l-0.38,-0.27l-4.45,0.04l-2.59,-1.76l-1.41,-2.29l1.57,-2.32l1.62,-1.66l2.44,-0.39l0.25,-0.65l-0.6,-0.74l4.86,-0.25l3.24,3.11l8.16,2.3l1.9,3.61ZM187.47,59.2l-2.76,3.49l-2.38,-0.15l-1.44,-3.84l0.04,-2.2l1.19,-1.88l2.3,-1.23l5.07,0.17l4.11,1.02l-3.24,3.72l-2.88,0.89ZM186.07,48.79l-1.08,1.53l-3.34,-0.34l-2.56,-1.1l1.03,-1.75l3.25,-1.23l1.95,1.58l0.75,1.3ZM185.71,35.32l-5.3,-0.2l-0.32,-0.71l4.31,0.07l1.3,0.84ZM180.68,32.48l-3.34,1.0l-1.79,-1.1l-0.98,-1.87l-0.15,-1.73l4.1,0.53l2.67,1.7l-0.51,1.47ZM180.9,76.31l-1.1,1.08l-3.13,-1.23l-2.12,0.43l-2.71,-1.57l1.72,-1.09l1.55,-1.72l3.81,1.9l1.98,2.2ZM169.74,54.87l2.96,0.97l4.17,-0.57l0.41,0.88l-2.14,2.11l0.09,0.64l3.55,1.92l-0.4,3.72l-3.79,1.65l-2.17,-0.35l-1.72,-1.74l-6.02,-3.5l0.03,-0.85l4.68,0.54l0.4,-0.21l-0.05,-0.45l-2.48,-2.81l2.46,-1.95ZM174.45,40.74l1.37,1.73l0.07,2.44l-1.05,3.45l-3.79,0.47l-2.32,-0.69l0.05,-2.64l-0.44,-0.41l-3.68,0.35l-0.12,-3.1l2.45,0.1l3.67,-1.73l3.41,0.29l0.37,-0.26ZM170.05,31.55l0.67,1.56l-3.33,-0.49l-4.22,-1.77l-4.35,-0.16l1.4,-0.94l-0.06,-0.7l-2.81,-1.23l-0.12,-1.39l4.39,0.68l6.62,1.98l1.81,2.47ZM134.5,58.13l-1.02,1.82l0.45,0.58l5.4,-1.39l3.33,2.29l0.49,-0.03l2.6,-2.23l1.94,1.32l2.0,4.5l0.7,0.06l1.3,-2.29l-1.63,-4.46l1.69,-0.54l2.31,0.71l2.65,1.81l2.49,7.92l8.48,4.27l-0.19,1.35l-3.79,0.33l-0.26,0.67l1.4,1.49l-0.58,1.1l-4.23,-0.64l-4.43,-1.19l-3.0,0.28l-4.66,1.47l-10.52,1.04l-1.43,-2.02l-3.42,-1.2l-2.21,0.43l-2.51,-2.86l4.84,-1.05l3.6,0.19l3.27,-0.78l0.31,-0.39l-0.31,-0.39l-4.84,-1.06l-8.79,0.27l-0.85,-1.07l5.26,-1.66l0.27,-0.45l-0.4,-0.34l-3.8,0.06l-3.81,-1.06l1.81,-3.01l1.66,-1.79l6.48,-2.81l1.97,0.71ZM158.7,56.61l-1.7,2.44l-3.2,-2.75l0.37,-0.3l3.11,-0.18l1.42,0.79ZM149.61,42.73l1.01,1.89l0.5,0.18l2.14,-0.82l2.23,0.19l0.36,2.04l-1.33,2.09l-8.28,0.76l-6.35,2.15l-3.41,0.1l-0.19,-0.96l4.9,-2.08l0.23,-0.46l-0.41,-0.31l-11.25,0.59l-2.89,-0.74l3.04,-4.44l2.14,-1.32l6.81,1.69l4.58,3.06l4.37,0.39l0.36,-0.63l-3.36,-4.6l1.85,-1.53l2.18,0.51l0.77,2.26ZM144.76,34.41l-4.36,1.44l-3.0,-1.4l1.46,-1.24l3.47,-0.52l2.96,0.71l-0.52,1.01ZM145.13,29.83l-1.9,0.66l-3.67,-0.0l2.27,-1.61l3.3,0.95ZM118.92,65.79l-6.03,2.02l-1.33,-1.9l-5.38,-2.28l2.59,-5.05l2.16,-3.14l-0.02,-0.48l-1.97,-2.41l7.64,-0.7l3.6,1.02l6.3,0.27l4.42,2.95l-2.53,0.98l-6.24,3.43l-3.1,3.28l-0.11,2.01ZM129.54,35.53l-0.28,3.37l-1.72,1.62l-2.33,0.28l-4.61,2.19l-3.86,0.76l-2.64,-0.87l3.72,-3.4l5.01,-3.34l3.72,0.07l3.0,-0.67ZM111.09,152.69l-0.67,0.24l-3.85,-1.37l-0.83,-1.17l-2.12,-1.07l-0.66,-1.02l-2.4,-0.55l-0.74,-1.71l6.02,1.45l2.0,2.55l2.52,1.39l0.73,1.27ZM87.8,134.64l0.89,0.29l1.86,-0.21l-0.65,3.34l1.69,2.33l-1.31,-1.33l-0.99,-1.62l-1.17,-0.98l-0.33,-1.82Z", "name": "Canada"}, "CG": {"path": "M466.72,276.48l-0.1,1.03l-1.25,2.97l-0.19,3.62l-0.46,1.78l-0.23,0.63l-1.61,1.19l-1.21,1.39l-1.09,2.43l0.04,2.09l-3.25,3.24l-0.5,-0.24l-0.5,-0.83l-1.36,-0.02l-0.98,0.89l-1.68,-0.99l-1.54,1.24l-1.52,-1.96l1.57,-1.14l0.11,-0.52l-0.77,-1.35l2.1,-0.66l0.39,-0.73l1.05,0.82l2.21,0.11l1.12,-1.37l0.37,-1.81l-0.27,-2.09l-1.13,-1.5l1.0,-2.69l-0.13,-0.45l-0.92,-0.58l-1.6,0.17l-0.51,-0.94l0.1,-0.61l2.75,0.09l3.97,1.24l0.51,-0.33l0.17,-1.28l1.24,-2.21l1.28,-1.14l2.76,0.49Z", "name": "Congo"}, "CF": {"path": "M461.16,278.2l-0.26,-1.19l-1.09,-0.77l-0.84,-1.17l-0.29,-1.0l-1.04,-1.15l0.08,-3.43l0.58,-0.49l1.16,-2.35l1.85,-0.17l0.61,-0.62l0.97,0.58l3.15,-0.96l2.48,-1.92l0.02,-0.96l2.81,0.02l2.36,-1.17l1.93,-2.85l1.16,-0.93l1.11,-0.3l0.27,0.86l1.34,1.47l-0.39,2.01l0.3,1.01l4.01,2.75l0.17,0.93l2.63,2.31l0.6,1.44l2.08,1.4l-3.84,-0.21l-1.94,0.88l-1.23,-0.49l-2.67,1.2l-1.29,-0.18l-0.51,0.36l-0.6,1.22l-3.35,-0.65l-1.57,-0.91l-2.42,-0.83l-1.45,0.91l-0.97,1.27l-0.26,1.56l-3.22,-0.43l-1.49,1.33l-0.94,1.62Z", "name": "Central African Rep."}, "CD": {"path": "M487.01,272.38l2.34,-0.14l1.35,1.84l1.34,0.45l0.86,-0.39l1.21,0.12l1.07,-0.41l0.54,0.89l2.04,1.54l-0.14,2.72l0.7,0.54l-1.38,1.13l-1.53,2.54l-0.17,2.05l-0.59,1.08l-0.02,1.72l-0.72,0.84l-0.66,3.01l0.63,1.32l-0.44,4.26l0.64,1.47l-0.37,1.22l0.86,1.8l1.53,1.41l0.3,1.26l0.44,0.5l-4.08,0.75l-0.92,1.81l0.51,1.34l-0.74,5.43l0.17,0.38l2.45,1.46l0.54,-0.1l0.12,1.62l-1.28,-0.01l-1.85,-2.35l-1.94,-0.45l-0.48,-1.13l-0.55,-0.2l-1.41,0.74l-1.71,-0.3l-1.01,-1.18l-2.49,-0.19l-0.44,-0.77l-1.98,-0.21l-2.88,0.36l0.11,-2.41l-0.85,-1.13l-0.16,-1.36l0.32,-1.73l-0.46,-0.89l-0.04,-1.49l-0.4,-0.39l-2.53,0.02l0.1,-0.41l-0.39,-0.49l-1.28,0.01l-0.43,0.45l-1.62,0.32l-0.83,1.79l-1.09,-0.28l-2.4,0.52l-1.37,-1.91l-1.3,-3.3l-0.38,-0.27l-7.39,-0.03l-2.46,0.42l0.5,-0.45l0.37,-1.47l0.66,-0.38l0.92,0.08l0.73,-0.82l0.87,0.02l0.31,0.68l1.4,0.36l3.59,-3.63l0.01,-2.23l1.02,-2.29l2.69,-2.39l0.43,-0.99l0.49,-1.96l0.17,-3.51l1.25,-2.95l0.36,-3.14l0.86,-1.13l1.1,-0.66l3.57,1.73l3.65,0.73l0.46,-0.21l0.8,-1.46l1.24,0.19l2.61,-1.17l0.81,0.44l1.04,-0.03l0.59,-0.66l0.7,-0.16l1.81,0.25Z", "name": "Dem. Rep. Congo"}, "CZ": {"path": "M458.46,144.88l1.22,1.01l1.47,0.23l0.13,0.93l1.36,0.68l0.54,-0.2l0.24,-0.55l1.15,0.25l0.53,1.09l1.68,0.18l0.6,0.84l-1.04,0.73l-0.96,1.28l-1.6,0.17l-0.55,0.56l-1.04,-0.46l-1.05,0.15l-2.12,-0.96l-1.05,0.34l-1.2,1.12l-1.56,-0.87l-2.57,-2.1l-0.53,-1.88l4.7,-2.52l0.71,0.26l0.9,-0.28Z", "name": "Czech Rep."}, "CY": {"path": "M504.36,193.47l0.43,0.28l-1.28,0.57l-0.92,-0.28l-0.24,-0.46l2.01,-0.13Z", "name": "Cyprus"}, "CR": {"path": "M211.34,258.05l0.48,0.99l1.6,1.6l-0.54,0.45l0.29,1.42l-0.25,1.19l-1.09,-0.59l-0.05,-1.25l-2.46,-1.42l-0.28,-0.77l-0.66,-0.45l-0.45,-0.0l-0.11,1.04l-1.32,-0.95l0.31,-1.3l-0.36,-0.6l0.31,-0.27l1.42,0.58l1.29,-0.14l0.56,0.56l0.74,0.17l0.55,-0.27Z", "name": "Costa Rica"}, "CU": {"path": "M221.21,227.25l1.27,1.02l2.19,-0.28l4.43,3.33l2.08,0.43l-0.1,0.38l0.36,0.5l1.75,0.1l1.48,0.84l-3.11,0.51l-4.15,-0.03l0.77,-0.67l-0.04,-0.64l-1.2,-0.74l-1.49,-0.16l-0.7,-0.61l-0.56,-1.4l-0.4,-0.25l-1.34,0.1l-2.2,-0.66l-0.88,-0.58l-3.18,-0.4l-0.27,-0.16l0.58,-0.74l-0.36,-0.29l-2.72,-0.05l-1.7,1.29l-0.91,0.03l-0.61,0.69l-1.01,0.22l1.11,-1.29l1.01,-0.52l3.69,-1.01l3.98,0.21l2.21,0.84Z", "name": "Cuba"}, "SZ": {"path": "M500.35,351.36l0.5,2.04l-0.38,0.89l-1.05,0.21l-1.23,-1.2l-0.02,-0.64l0.83,-1.57l1.34,0.27Z", "name": "Swaziland"}, "SY": {"path": "M511.0,199.79l0.05,-1.33l0.54,-1.36l1.28,-0.99l0.13,-0.45l-0.41,-1.11l-1.14,-0.36l-0.19,-1.74l0.52,-1.0l1.29,-1.21l0.2,-1.18l0.59,0.23l2.62,-0.76l1.36,0.52l2.06,-0.01l2.95,-1.08l3.25,-0.26l-0.67,0.94l-1.28,0.66l-0.21,0.4l0.23,2.01l-0.88,3.19l-10.15,5.73l-2.15,-0.85Z", "name": "Syria"}, "KG": {"path": "M621.35,172.32l-3.87,1.69l-0.96,1.18l-3.04,0.34l-1.13,1.86l-2.36,-0.35l-1.99,0.63l-2.39,1.4l0.06,0.95l-0.4,0.37l-4.52,0.43l-3.02,-0.93l-2.37,0.17l0.11,-0.79l2.32,0.42l1.13,-0.88l1.99,0.2l3.21,-2.14l-0.03,-0.69l-2.97,-1.57l-1.94,0.65l-1.22,-0.74l1.71,-1.58l-0.12,-0.67l-0.36,-0.15l0.32,-0.77l1.36,-0.35l4.02,1.02l0.49,-0.3l0.35,-1.59l1.09,-0.48l3.42,1.22l1.11,-0.31l7.64,0.39l1.16,1.0l1.23,0.39Z", "name": "Kyrgyzstan"}, "KE": {"path": "M506.26,284.69l1.87,-2.56l0.93,-2.15l-1.38,-4.08l-1.06,-1.6l2.82,-2.75l0.79,0.26l0.12,1.41l0.86,0.83l1.9,0.11l3.28,2.13l3.57,0.44l1.05,-1.12l1.96,-0.9l0.82,0.68l1.16,0.09l-1.78,2.45l0.03,9.12l1.3,1.94l-1.37,0.78l-0.67,1.03l-1.08,0.46l-0.34,1.67l-0.81,1.07l-0.45,1.55l-0.68,0.56l-3.2,-2.23l-0.35,-1.58l-8.86,-4.98l0.14,-1.6l-0.57,-1.04Z", "name": "Kenya"}, "SS": {"path": "M481.71,263.34l1.07,-0.72l1.2,-3.18l1.36,-0.26l1.61,1.99l0.87,0.34l1.1,-0.41l1.5,0.07l0.57,0.53l2.49,0.0l0.44,-0.63l1.07,-0.4l0.45,-0.84l0.59,-0.33l1.9,1.33l1.6,-0.2l2.83,-3.33l-0.32,-2.21l1.59,-0.52l-0.24,1.6l0.3,1.83l1.35,1.18l0.2,1.87l0.35,0.41l0.02,1.53l-0.23,0.47l-1.42,0.25l-0.85,1.44l0.3,0.6l1.4,0.16l1.11,1.08l0.59,1.13l1.03,0.53l1.28,2.36l-4.41,3.98l-1.74,0.01l-1.89,0.55l-1.47,-0.52l-1.15,0.57l-2.96,-2.62l-1.3,0.49l-1.06,-0.15l-0.79,0.39l-0.82,-0.22l-1.8,-2.7l-1.91,-1.1l-0.66,-1.5l-2.62,-2.32l-0.18,-0.94l-2.37,-1.6Z", "name": "S. Sudan"}, "SR": {"path": "M283.12,270.19l2.1,0.53l-1.08,1.95l0.2,1.72l0.93,1.49l-0.59,2.03l-0.43,0.71l-1.12,-0.42l-1.32,0.22l-0.93,-0.2l-0.46,0.26l-0.25,0.73l0.33,0.7l-0.89,-0.13l-1.39,-1.97l-0.31,-1.34l-0.97,-0.31l-0.89,-1.47l0.35,-1.61l1.45,-0.82l0.33,-1.87l2.61,0.44l0.57,-0.47l1.75,-0.16Z", "name": "Suriname"}, "KH": {"path": "M689.52,249.39l0.49,1.45l-0.28,2.74l-4.0,1.86l-0.16,0.6l0.68,0.95l-2.06,0.17l-2.05,0.97l-1.82,-0.32l-2.12,-3.7l-0.55,-2.85l1.4,-1.85l3.02,-0.45l2.23,0.35l2.01,0.98l0.51,-0.14l0.95,-1.48l1.74,0.74Z", "name": "Cambodia"}, "SV": {"path": "M195.8,250.13l1.4,-1.19l2.24,1.45l0.98,-0.27l0.44,0.2l-0.27,1.05l-1.14,-0.03l-3.64,-1.21Z", "name": "El Salvador"}, "SK": {"path": "M476.82,151.17l-1.14,1.9l-2.73,-0.92l-0.82,0.2l-0.74,0.8l-3.46,0.73l-0.47,0.69l-1.76,0.33l-1.88,-1.0l-0.18,-0.81l0.38,-0.75l1.87,-0.32l1.74,-1.89l0.83,0.16l0.79,-0.34l1.51,1.04l1.34,-0.63l1.25,0.3l1.65,-0.42l1.81,0.95Z", "name": "Slovakia"}, "KR": {"path": "M737.51,185.84l0.98,-0.1l0.87,-1.17l2.69,-0.32l0.33,-0.29l1.76,2.79l0.58,1.76l0.02,3.12l-0.8,1.32l-2.21,0.55l-1.93,1.13l-1.8,0.19l-0.2,-1.1l0.43,-2.28l-0.95,-2.56l1.43,-0.37l0.23,-0.62l-1.43,-2.06Z", "name": "Korea"}, "SI": {"path": "M456.18,162.07l-0.51,-1.32l0.18,-1.05l1.69,0.2l1.42,-0.71l2.09,-0.07l0.62,-0.51l0.21,0.47l-1.61,0.67l-0.44,1.34l-0.66,0.24l-0.26,0.82l-1.22,-0.49l-0.84,0.46l-0.69,-0.04Z", "name": "Slovenia"}, "KP": {"path": "M736.77,185.16l-0.92,-0.42l-0.88,0.62l-1.21,-0.88l0.96,-1.15l0.59,-2.59l-0.46,-0.74l-2.09,-0.77l1.64,-1.52l2.72,-1.58l1.58,-1.91l1.11,0.78l2.17,0.11l0.41,-0.5l-0.3,-1.22l3.52,-1.18l0.94,-1.4l0.98,1.08l-2.19,2.18l0.01,2.14l-1.06,0.54l-1.41,1.4l-1.7,0.52l-1.25,1.09l-0.14,1.98l0.94,0.45l1.15,1.04l-0.13,0.26l-2.6,0.29l-1.13,1.29l-1.22,0.08Z", "name": "Dem. Rep. Korea"}, "SO": {"path": "M525.13,288.48l-1.13,-1.57l-0.03,-8.86l2.66,-3.38l1.67,-0.13l2.13,-1.69l3.41,-0.23l7.08,-7.55l2.91,-3.69l0.08,-4.82l2.98,-0.67l1.24,-0.86l0.45,-0.0l-0.2,3.0l-1.21,3.62l-2.73,5.97l-2.13,3.65l-5.03,6.16l-8.56,6.4l-2.78,3.08l-0.8,1.56Z", "name": "Somalia"}, "SN": {"path": "M390.09,248.21l0.12,1.55l0.49,1.46l0.96,0.82l0.05,1.28l-1.26,-0.19l-0.75,0.33l-1.84,-0.61l-5.84,-0.13l-2.54,0.51l-0.22,-1.03l1.77,0.04l2.01,-0.91l1.03,0.48l1.09,0.04l1.29,-0.62l0.14,-0.58l-0.51,-0.74l-1.81,0.25l-1.13,-0.63l-0.79,0.04l-0.72,0.61l-2.31,0.06l-0.92,-1.77l-0.81,-0.64l0.64,-0.35l2.46,-3.74l1.04,0.19l1.38,-0.56l1.19,-0.02l2.72,1.37l3.03,3.48Z", "name": "Senegal"}, "SL": {"path": "M394.46,264.11l-1.73,1.98l-0.58,1.33l-2.07,-1.06l-1.22,-1.26l-0.65,-2.39l1.16,-0.96l0.67,-1.17l1.21,-0.52l1.66,0.0l1.03,1.64l0.52,2.41Z", "name": "Sierra Leone"}, "SB": {"path": "M826.69,311.6l-0.61,0.09l-0.2,-0.33l0.37,0.15l0.44,0.09ZM824.18,307.38l-0.26,-0.3l-0.31,-0.91l0.03,0.0l0.54,1.21ZM823.04,309.33l-1.66,-0.22l-0.2,-0.52l1.16,0.28l0.69,0.46ZM819.28,304.68l1.14,0.65l0.02,0.03l-0.81,-0.44l-0.35,-0.23Z", "name": "Solomon Is."}, "SA": {"path": "M537.53,210.34l2.0,0.24l0.9,1.32l1.49,-0.06l0.87,2.08l1.29,0.76l0.51,0.99l1.56,1.03l-0.1,1.9l0.32,0.9l1.58,2.47l0.76,0.53l0.7,-0.04l1.68,4.23l7.53,1.33l0.51,-0.29l0.77,1.25l-1.55,4.87l-7.29,2.52l-7.3,1.03l-2.34,1.17l-1.88,2.74l-0.76,0.28l-0.82,-0.78l-0.91,0.12l-2.88,-0.51l-3.51,0.25l-0.86,-0.56l-0.57,0.15l-0.66,1.27l0.16,1.11l-0.43,0.32l-0.93,-1.4l-0.33,-1.16l-1.23,-0.88l-1.27,-2.06l-0.78,-2.22l-1.73,-1.79l-1.14,-0.48l-1.54,-2.31l-0.21,-3.41l-1.44,-2.93l-1.27,-1.16l-1.33,-0.57l-1.31,-3.37l-0.77,-0.67l-0.97,-1.97l-2.8,-4.03l-1.06,-0.17l0.37,-1.96l0.2,-0.72l2.74,0.3l1.08,-0.84l0.6,-0.94l1.74,-0.35l0.65,-1.03l0.71,-0.4l0.1,-0.62l-2.06,-2.28l4.39,-1.22l0.48,-0.37l2.77,0.69l3.66,1.9l7.03,5.5l4.87,0.3Z", "name": "Saudi Arabia"}, "SE": {"path": "M480.22,89.3l-4.03,1.17l-2.43,2.86l0.26,2.57l-8.77,6.64l-1.78,5.79l1.78,2.68l2.22,1.96l-2.07,3.77l-2.72,1.13l-0.95,6.04l-1.29,3.01l-2.74,-0.31l-0.4,0.22l-1.31,2.59l-2.34,0.13l-0.75,-3.09l-2.08,-4.03l-1.83,-4.96l1.0,-1.93l2.14,-2.7l0.83,-4.45l-1.6,-2.17l-0.15,-4.94l1.48,-3.39l2.58,-0.15l0.87,-1.59l-0.78,-1.57l3.76,-5.59l4.04,-7.48l2.17,0.01l0.39,-0.29l0.57,-2.07l4.37,0.64l0.46,-0.34l0.33,-2.56l1.1,-0.13l6.94,4.87l0.06,6.32l0.66,1.36Z", "name": "Sweden"}, "SD": {"path": "M505.98,259.4l-0.34,-0.77l-1.17,-0.9l-0.26,-1.61l0.29,-1.81l-0.34,-0.46l-1.16,-0.17l-0.54,0.59l-1.23,0.11l-0.28,0.65l0.53,0.65l0.17,1.22l-2.44,3.0l-0.96,0.19l-2.39,-1.4l-0.95,0.52l-0.38,0.78l-1.11,0.41l-0.29,0.5l-1.94,0.0l-0.54,-0.52l-1.81,-0.09l-0.95,0.4l-2.45,-2.35l-2.07,0.54l-0.73,1.26l-0.6,2.1l-1.25,0.58l-0.75,-0.62l0.27,-2.65l-1.48,-1.78l-0.22,-1.48l-0.92,-0.96l-0.02,-1.29l-0.57,-1.16l-0.68,-0.16l0.69,-1.29l-0.18,-1.14l0.65,-0.62l0.03,-0.55l-0.36,-0.41l1.55,-2.97l1.91,0.16l0.43,-0.4l-0.1,-10.94l2.49,-0.01l0.4,-0.4l-0.0,-4.82l29.02,0.0l0.64,2.04l-0.49,0.66l0.36,2.69l0.93,3.16l2.12,1.55l-0.89,1.04l-1.72,0.39l-0.98,0.9l-1.43,5.65l0.24,1.15l-0.38,2.06l-0.96,2.38l-1.53,1.31l-1.32,2.91l-1.22,0.86l-0.37,1.34Z", "name": "Sudan"}, "DO": {"path": "M241.8,239.2l0.05,-0.65l-0.46,-0.73l0.42,-0.44l0.19,-1.0l-0.09,-1.53l1.66,0.01l1.99,0.63l0.33,0.67l1.28,0.19l0.33,0.76l1.0,0.08l0.8,0.62l-0.45,0.51l-1.13,-0.47l-1.88,-0.01l-1.27,0.59l-0.75,-0.55l-1.01,0.54l-0.79,1.4l-0.23,-0.61Z", "name": "Dominican Rep."}, "DJ": {"path": "M528.43,256.18l-0.45,0.66l-0.58,-0.25l-1.51,0.13l-0.18,-1.01l1.45,-1.95l0.83,0.17l0.77,-0.44l0.2,1.0l-1.2,0.51l-0.06,0.7l0.73,0.47Z", "name": "Djibouti"}, "DK": {"path": "M452.28,129.07l-1.19,2.24l-2.13,-1.6l-0.23,-0.95l2.98,-0.95l0.57,1.26ZM447.74,126.31l-0.26,0.57l-0.88,-0.07l-1.8,2.53l0.48,1.69l-1.09,0.36l-1.61,-0.39l-0.89,-1.69l-0.07,-3.43l0.96,-1.73l2.02,-0.2l1.09,-1.07l1.33,-0.67l-0.05,1.06l-0.73,1.41l0.3,1.0l1.2,0.64Z", "name": "Denmark"}, "DE": {"path": "M453.14,155.55l-0.55,-0.36l-1.2,-0.1l-1.87,0.57l-2.13,-0.13l-0.56,0.63l-0.86,-0.6l-0.96,0.09l-2.57,-0.93l-0.85,0.67l-1.47,-0.02l0.24,-1.75l1.23,-2.14l-0.28,-0.59l-3.52,-0.58l-0.92,-0.66l0.12,-1.2l-0.48,-0.88l0.27,-2.17l-0.37,-3.03l1.41,-0.22l0.63,-1.26l0.66,-3.19l-0.41,-1.18l0.26,-0.39l1.66,-0.15l0.33,0.54l0.62,0.07l1.7,-1.69l-0.54,-3.02l1.37,0.33l1.31,-0.37l0.31,1.18l2.25,0.71l-0.02,0.92l0.5,0.4l2.55,-0.65l1.34,-0.87l2.57,1.24l1.06,0.98l0.48,1.44l-0.57,0.74l-0.0,0.48l0.87,1.15l0.57,1.64l-0.14,1.29l0.82,1.7l-1.5,-0.07l-0.56,0.57l-4.47,2.15l-0.22,0.54l0.68,2.26l2.58,2.16l-0.66,1.11l-0.79,0.36l-0.23,0.43l0.32,1.87Z", "name": "Germany"}, "YE": {"path": "M528.27,246.72l0.26,-0.42l-0.22,-1.01l0.19,-1.5l0.92,-0.69l-0.07,-1.35l0.39,-0.75l1.01,0.47l3.34,-0.27l3.76,0.41l0.95,0.81l1.36,-0.58l1.74,-2.62l2.18,-1.09l6.86,-0.94l2.48,5.41l-1.64,0.76l-0.56,1.9l-6.23,2.16l-2.29,1.8l-1.93,0.05l-1.41,1.02l-4.24,0.74l-1.72,1.49l-3.28,0.19l-0.52,-1.18l0.02,-1.51l-1.34,-3.29Z", "name": "Yemen"}, "AT": {"path": "M462.89,152.8l0.04,2.25l-1.07,0.0l-0.33,0.63l0.36,0.51l-1.04,2.13l-2.02,0.07l-1.33,0.7l-5.29,-0.99l-0.47,-0.93l-0.44,-0.21l-2.47,0.55l-0.42,0.51l-3.18,-0.81l0.43,-0.91l1.12,0.78l0.6,-0.17l0.25,-0.58l1.93,0.12l1.86,-0.56l1.0,0.08l0.68,0.57l0.62,-0.15l0.26,-0.77l-0.3,-1.78l0.8,-0.44l0.68,-1.15l1.52,0.85l0.47,-0.06l1.34,-1.25l0.64,-0.17l1.81,0.92l1.28,-0.11l0.7,0.37Z", "name": "Austria"}, "DZ": {"path": "M441.46,188.44l-0.32,1.07l0.39,2.64l-0.54,2.16l-1.58,1.82l0.37,2.39l1.91,1.55l0.18,0.8l1.42,1.03l1.84,7.23l0.12,1.16l-0.57,5.0l0.2,1.51l-0.87,0.99l-0.02,0.51l1.41,1.86l0.14,1.2l0.89,1.48l0.5,0.16l0.98,-0.41l1.73,1.08l0.82,1.23l-8.22,4.81l-7.23,5.11l-3.43,1.13l-2.3,0.21l-0.28,-1.59l-2.56,-1.09l-0.67,-1.25l-26.12,-17.86l0.01,-3.47l3.77,-1.88l2.44,-0.41l2.12,-0.75l1.08,-1.42l2.81,-1.05l0.35,-2.08l1.33,-0.29l1.04,-0.94l3.47,-0.69l0.46,-1.08l-0.1,-0.45l-0.58,-0.52l-0.82,-2.81l-0.19,-1.83l-0.78,-1.49l2.03,-1.31l2.63,-0.48l1.7,-1.22l2.31,-0.84l8.24,-0.73l1.49,0.38l2.28,-1.1l2.46,-0.02l0.92,0.6l1.35,-0.05Z", "name": "Algeria"}, "US": {"path": "M892.72,99.2l1.31,0.53l1.41,-0.37l1.89,0.98l1.89,0.42l-1.32,0.58l-2.9,-1.53l-2.08,0.22l-0.26,-0.15l0.07,-0.67ZM183.22,150.47l0.37,1.47l1.12,0.85l4.23,0.7l2.39,0.98l2.17,-0.38l1.85,0.5l-1.55,0.65l-3.49,2.61l-0.16,0.77l0.5,0.39l2.33,-0.61l1.77,1.02l5.15,-2.4l-0.31,0.65l0.25,0.56l1.36,0.38l1.71,1.16l4.7,-0.88l0.67,0.85l1.31,0.21l0.58,0.58l-1.34,0.17l-2.18,-0.32l-3.6,0.89l-2.71,3.25l0.35,0.9l0.59,-0.0l0.55,-0.6l-1.36,4.65l0.29,3.09l0.67,1.58l0.61,0.45l1.77,-0.44l1.6,-1.96l0.14,-2.21l-0.82,-1.96l0.11,-1.13l1.19,-2.37l0.44,-0.33l0.48,0.75l0.4,-0.29l0.4,-1.37l0.6,-0.47l0.24,-0.8l1.69,0.49l1.65,1.08l-0.03,2.37l-1.27,1.13l-0.0,1.13l0.87,0.36l1.66,-1.29l0.5,0.17l0.5,2.6l-2.49,3.75l0.17,0.61l1.54,0.62l1.48,0.17l1.92,-0.44l4.72,-2.15l2.16,-1.8l-0.05,-1.24l0.75,-0.22l3.92,0.36l2.12,-1.05l0.21,-0.4l-0.28,-1.48l3.27,-2.4l8.32,-0.02l0.56,-0.82l1.9,-0.77l0.93,-1.51l0.74,-2.37l1.58,-1.98l0.92,0.62l1.47,-0.47l0.8,0.66l-0.0,4.09l1.96,2.6l-2.34,1.31l-5.37,2.09l-1.83,2.72l0.02,1.79l0.83,1.59l0.54,0.23l-6.19,0.94l-2.2,0.89l-0.23,0.48l0.45,0.29l2.99,-0.46l-2.19,0.56l-1.13,0.0l-0.15,-0.32l-0.48,0.08l-0.76,0.82l0.22,0.67l0.32,0.06l-0.41,1.62l-1.27,1.58l-1.48,-1.07l-0.49,-0.04l-0.16,0.46l0.52,1.58l0.61,0.59l0.03,0.79l-0.95,1.38l-1.21,-1.22l-0.27,-2.27l-0.35,-0.35l-0.42,0.25l-0.48,1.27l0.33,1.41l-0.97,-0.27l-0.48,0.24l0.18,0.5l1.52,0.83l0.1,2.52l0.79,0.51l0.52,3.42l-1.42,1.88l-2.47,0.8l-1.71,1.66l-1.31,0.25l-1.27,1.03l-0.43,0.99l-2.69,1.78l-2.64,3.03l-0.45,2.12l0.45,2.08l0.85,2.38l1.09,1.9l0.04,1.2l1.16,3.06l-0.18,2.69l-0.55,1.43l-0.47,0.21l-0.89,-0.23l-0.49,-1.18l-0.87,-0.56l-2.75,-5.16l0.48,-1.68l-0.72,-1.78l-2.01,-2.38l-1.12,-0.53l-2.72,1.18l-1.47,-1.35l-1.57,-0.68l-2.99,0.31l-2.17,-0.3l-2.0,0.19l-1.15,0.46l-0.19,0.58l0.39,0.63l0.14,1.34l-0.84,-0.2l-0.84,0.46l-1.58,-0.07l-2.08,-1.44l-2.09,0.33l-1.91,-0.62l-3.73,0.84l-2.39,2.07l-2.54,1.22l-1.45,1.41l-0.61,1.38l0.34,3.71l-0.29,0.02l-3.5,-1.33l-1.25,-3.11l-1.44,-1.5l-2.24,-3.56l-1.76,-1.09l-2.27,-0.01l-1.71,2.07l-1.76,-0.69l-1.16,-0.74l-1.52,-2.98l-3.93,-3.16l-4.34,-0.0l-0.4,0.4l-0.0,0.74l-6.5,0.02l-9.02,-3.14l-0.34,-0.71l-5.7,0.49l-0.43,-1.29l-1.62,-1.61l-1.14,-0.38l-0.55,-0.88l-1.28,-0.13l-1.01,-0.77l-2.22,-0.27l-0.43,-0.3l-0.36,-1.58l-2.4,-2.83l-2.01,-3.85l-0.06,-0.9l-2.92,-3.26l-0.33,-2.29l-1.3,-1.66l0.52,-2.37l-0.09,-2.57l-0.78,-2.3l0.95,-2.82l0.61,-5.68l-0.47,-4.27l-1.46,-4.08l3.19,0.79l1.26,2.83l0.69,0.08l0.69,-1.14l-1.1,-4.79l68.76,-0.0l0.4,-0.4l0.14,-0.86ZM32.44,67.52l1.73,1.97l0.55,0.05l0.99,-0.79l3.65,0.24l-0.09,0.62l0.32,0.45l3.83,0.77l2.61,-0.43l5.19,1.4l4.84,0.43l1.89,0.57l3.42,-0.7l6.14,1.87l-0.03,38.06l0.38,0.4l2.39,0.11l2.31,0.98l3.9,3.99l0.55,0.04l2.4,-2.03l2.16,-1.04l1.2,1.71l3.95,3.14l4.09,6.63l4.2,2.29l0.06,1.83l-1.02,1.23l-1.16,-1.08l-2.04,-1.03l-0.67,-2.89l-3.28,-3.03l-1.65,-3.57l-6.35,-0.32l-2.82,-1.01l-5.26,-3.85l-6.77,-2.04l-3.53,0.3l-4.81,-1.69l-3.25,-1.63l-2.78,0.8l-0.28,0.46l0.44,2.21l-3.91,0.96l-2.26,1.27l-2.3,0.65l-0.27,-1.65l1.05,-3.42l2.49,-1.09l0.16,-0.6l-0.69,-0.96l-0.55,-0.1l-3.19,2.12l-1.78,2.56l-3.55,2.61l-0.04,0.61l1.56,1.52l-2.07,2.29l-5.11,2.57l-0.77,1.66l-3.76,1.77l-0.92,1.73l-2.69,1.38l-1.81,-0.22l-6.95,3.32l-3.97,0.91l4.85,-2.5l2.59,-1.86l3.26,-0.52l1.19,-1.4l3.42,-2.1l2.59,-2.27l0.42,-2.68l1.23,-2.1l-0.04,-0.46l-0.45,-0.11l-2.68,1.03l-0.63,-0.49l-0.53,0.03l-1.05,1.04l-1.36,-1.54l-0.66,0.08l-0.32,0.62l-0.58,-1.14l-0.56,-0.16l-2.41,1.42l-1.07,-0.0l-0.17,-1.75l0.3,-1.71l-1.61,-1.33l-3.41,0.59l-1.96,-1.63l-1.57,-0.84l-0.15,-2.21l-1.7,-1.43l0.82,-1.88l1.99,-2.12l0.88,-1.92l1.71,-0.24l2.04,0.51l1.87,-1.77l1.91,0.25l1.91,-1.23l0.17,-0.43l-0.47,-1.82l-1.07,-0.7l1.39,-1.17l0.12,-0.45l-0.39,-0.26l-1.65,0.07l-2.66,0.88l-0.75,0.78l-1.92,-0.8l-3.46,0.44l-3.44,-0.91l-1.06,-1.61l-2.65,-1.99l2.91,-1.43l5.5,-2.0l1.52,0.0l-0.26,1.62l0.41,0.46l5.29,-0.16l0.3,-0.65l-2.03,-2.59l-3.14,-1.68l-1.79,-2.12l-2.4,-1.83l-3.09,-1.24l1.04,-1.69l4.23,-0.14l3.36,-2.07l0.73,-2.27l2.39,-1.99l2.42,-0.52l4.65,-1.97l2.46,0.23l3.71,-2.35l3.5,0.89ZM37.6,123.41l-2.25,1.23l-0.95,-0.69l-0.29,-1.24l3.21,-1.63l1.42,0.21l0.67,0.7l-1.8,1.42ZM31.06,234.03l0.98,0.47l0.74,0.87l-1.77,1.07l-0.44,-1.53l0.49,-0.89ZM29.34,232.07l0.18,0.05l0.08,0.05l-0.16,0.03l-0.11,-0.14ZM25.16,230.17l0.05,-0.03l0.18,0.22l-0.13,-0.01l-0.1,-0.18ZM5.89,113.26l-1.08,0.41l-2.21,-1.12l1.53,-0.4l1.62,0.28l0.14,0.83Z", "name": "United States"}, "LV": {"path": "M489.16,122.85l0.96,0.66l0.22,1.65l0.68,1.76l-3.65,1.7l-2.23,-1.58l-1.29,-0.26l-0.68,-0.77l-2.42,0.34l-4.16,-0.23l-2.47,0.9l0.06,-1.98l1.13,-2.06l1.95,-1.02l2.12,2.58l2.01,-0.07l0.38,-0.33l0.44,-2.52l1.76,-0.53l3.06,1.7l2.15,0.07Z", "name": "Latvia"}, "UY": {"path": "M286.85,372.74l-0.92,1.5l-2.59,1.44l-1.69,-0.52l-1.42,0.26l-2.39,-1.19l-1.52,0.08l-1.27,-1.3l0.16,-1.5l0.56,-0.79l-0.02,-2.73l1.21,-4.74l1.19,-0.21l2.37,2.0l1.08,0.03l4.36,3.17l1.22,1.6l-0.96,1.5l0.61,1.4Z", "name": "Uruguay"}, "LB": {"path": "M510.37,198.01l-0.88,0.51l1.82,-3.54l0.62,0.08l0.22,0.61l-1.13,0.88l-0.65,1.47Z", "name": "Lebanon"}, "LA": {"path": "M689.54,248.53l-1.76,-0.74l-0.49,0.15l-0.94,1.46l-1.32,-0.64l0.62,-0.98l0.11,-2.17l-2.04,-2.42l-0.25,-2.65l-1.9,-2.1l-2.15,-0.31l-0.78,0.91l-1.12,0.06l-1.05,-0.4l-2.06,1.2l-0.04,-1.59l0.61,-2.68l-0.36,-0.49l-1.35,-0.1l-0.11,-1.23l-0.96,-0.88l1.96,-1.89l0.39,0.36l1.33,0.07l0.42,-0.45l-0.34,-2.66l0.7,-0.21l1.28,1.81l1.11,2.35l0.36,0.23l2.82,0.02l0.71,1.67l-1.39,0.65l-0.72,0.93l0.13,0.6l2.91,1.51l3.6,5.25l1.88,1.78l0.56,1.62l-0.35,1.96Z", "name": "Lao PDR"}, "TW": {"path": "M724.01,226.68l-0.74,1.48l-0.9,-1.52l-0.25,-1.74l1.38,-2.44l1.73,-1.74l0.64,0.44l-1.85,5.52Z", "name": "Taiwan"}, "TT": {"path": "M266.64,259.32l0.28,-1.16l1.13,-0.22l-0.06,1.2l-1.35,0.18Z", "name": "Trinidad and Tobago"}, "TR": {"path": "M513.21,175.47l3.64,1.17l3.05,-0.44l2.1,0.26l3.11,-1.56l2.46,-0.13l2.19,1.33l0.33,0.82l-0.22,1.33l0.25,0.44l2.28,1.13l-1.17,0.57l-0.21,0.45l0.75,3.2l-0.41,1.16l1.13,1.92l-0.55,0.22l-0.9,-0.67l-2.91,-0.37l-1.24,0.46l-4.23,0.41l-2.81,1.05l-1.91,0.01l-1.52,-0.53l-2.58,0.75l-0.66,-0.45l-0.62,0.3l-0.12,1.45l-0.89,0.84l-0.47,-0.67l0.79,-1.3l-0.41,-0.2l-1.43,0.23l-2.0,-0.63l-2.02,1.65l-3.51,0.3l-2.13,-1.53l-2.7,-0.1l-0.86,1.24l-1.38,0.27l-2.29,-1.44l-2.71,-0.01l-1.37,-2.65l-1.68,-1.52l1.07,-1.99l-0.09,-0.49l-1.27,-1.12l2.37,-2.41l3.7,-0.11l1.28,-2.24l4.49,0.37l3.21,-1.97l2.81,-0.82l3.99,-0.06l4.29,2.07ZM488.79,176.72l-1.72,1.31l-0.5,-0.88l1.37,-2.57l-0.7,-0.85l1.7,-0.63l1.8,0.34l0.46,1.17l1.76,0.78l-2.87,0.32l-1.3,1.01Z", "name": "Turkey"}, "LK": {"path": "M624.16,268.99l-1.82,0.48l-0.99,-1.67l-0.42,-3.46l0.95,-3.43l1.21,0.98l2.26,4.19l-0.34,2.33l-0.85,0.58Z", "name": "Sri Lanka"}, "TN": {"path": "M448.1,188.24l-1.0,1.27l-0.02,1.32l0.84,0.88l-0.28,2.09l-1.53,1.32l-0.12,0.42l0.48,1.54l1.42,0.32l0.53,1.11l0.9,0.52l-0.11,1.67l-3.54,2.64l-0.1,2.38l-0.58,0.3l-0.96,-4.45l-1.54,-1.25l-0.16,-0.78l-1.92,-1.56l-0.18,-1.76l1.51,-1.62l0.59,-2.34l-0.38,-2.78l0.42,-1.21l2.45,-1.05l1.29,0.26l-0.06,1.11l0.58,0.38l1.47,-0.73Z", "name": "Tunisia"}, "TL": {"path": "M734.55,307.93l-0.1,-0.97l4.5,-0.86l-2.82,1.28l-1.59,0.55Z", "name": "Timor-Leste"}, "TM": {"path": "M553.03,173.76l-0.04,0.34l-0.09,-0.22l0.13,-0.12ZM555.87,172.66l0.45,-0.1l1.48,0.74l2.06,2.43l4.07,-0.18l0.38,-0.51l-0.32,-1.19l1.92,-0.94l1.91,-1.59l2.94,1.39l0.43,2.47l1.19,0.67l2.58,-0.13l0.62,0.4l1.32,3.12l4.54,3.44l2.67,1.45l3.06,1.14l-0.04,1.05l-1.33,-0.75l-0.59,0.19l-0.32,0.84l-2.2,0.81l-0.46,2.13l-1.21,0.74l-1.91,0.42l-0.73,1.33l-1.56,0.31l-2.22,-0.94l-0.2,-2.17l-0.38,-0.36l-1.73,-0.09l-2.76,-2.46l-2.14,-0.4l-2.84,-1.48l-1.78,-0.27l-1.24,0.53l-1.57,-0.08l-2.0,1.69l-1.7,0.43l-0.36,-1.58l0.36,-2.98l-0.22,-0.4l-1.65,-0.84l0.54,-1.69l-0.34,-0.52l-1.22,-0.13l0.36,-1.64l2.22,0.59l2.2,-0.95l0.12,-0.65l-1.77,-1.74l-0.66,-1.57Z", "name": "Turkmenistan"}, "TJ": {"path": "M597.75,178.82l-2.54,-0.44l-0.47,0.34l-0.24,1.7l0.43,0.45l2.64,-0.22l3.18,0.95l4.39,-0.41l0.56,2.37l0.52,0.29l0.67,-0.24l1.11,0.49l0.21,2.13l-3.76,-0.21l-1.8,1.32l-1.76,0.74l-0.61,-0.58l0.21,-2.23l-0.64,-0.49l-0.07,-0.93l-1.36,-0.66l-0.45,0.07l-1.08,1.01l-0.55,1.48l-1.31,-0.05l-0.95,1.16l-0.9,-0.35l-1.86,0.74l1.26,-2.83l-0.54,-2.17l-1.67,-0.82l0.33,-0.66l2.18,-0.04l1.19,-1.63l0.76,-1.79l2.43,-0.5l-0.26,1.0l0.73,1.05Z", "name": "Tajikistan"}, "LS": {"path": "M491.06,363.48l-0.49,0.15l-1.49,-1.67l1.1,-1.43l2.19,-1.44l1.51,1.27l-0.98,1.82l-1.23,0.38l-0.62,0.93Z", "name": "Lesotho"}, "TH": {"path": "M670.27,255.86l-1.41,3.87l0.15,2.0l0.38,0.36l1.38,0.07l0.9,2.04l0.55,2.34l1.4,1.44l1.61,0.38l0.96,0.97l-0.5,0.64l-1.1,0.2l-0.34,-1.18l-2.04,-1.1l-0.63,0.23l-0.63,-0.62l-0.48,-1.3l-2.56,-2.63l-0.73,0.41l0.95,-3.89l2.16,-4.22ZM670.67,254.77l-0.92,-2.18l-0.26,-2.61l-2.14,-3.06l0.71,-0.49l0.89,-2.59l-3.61,-5.45l0.87,-0.51l1.05,-2.58l1.74,-0.18l2.6,-1.59l0.76,0.56l0.13,1.39l0.37,0.36l1.23,0.09l-0.51,2.28l0.05,2.42l0.6,0.34l2.43,-1.42l0.77,0.39l1.47,-0.07l0.71,-0.88l1.48,0.14l1.71,1.88l0.25,2.65l1.92,2.11l-0.1,1.89l-0.61,0.86l-2.22,-0.33l-3.5,0.64l-1.6,2.12l0.36,2.58l-1.51,-0.79l-1.84,-0.01l0.28,-1.52l-0.4,-0.47l-2.21,0.01l-0.4,0.37l-0.19,2.74l-0.34,0.93Z", "name": "Thailand"}, "TF": {"path": "M596.68,420.38l-3.2,0.18l-0.05,-1.26l0.39,-1.41l1.3,0.78l2.08,0.35l-0.52,1.36Z", "name": "Fr. S. Antarctic Lands"}, "TG": {"path": "M422.7,257.63l-0.09,1.23l1.53,1.52l0.08,1.09l0.5,0.65l-0.11,5.62l0.49,1.47l-1.31,0.35l-1.02,-2.13l-0.18,-1.12l0.53,-2.19l-0.63,-1.16l-0.22,-3.68l-1.01,-1.4l0.07,-0.28l1.37,0.03Z", "name": "Togo"}, "TD": {"path": "M480.25,235.49l0.12,9.57l-2.1,0.05l-1.14,1.89l-0.69,1.63l0.34,0.73l-0.66,0.91l0.24,0.89l-0.86,1.95l0.45,0.5l0.6,-0.1l0.34,0.64l0.03,1.38l0.9,1.04l-1.45,0.43l-1.27,1.03l-1.83,2.76l-2.16,1.07l-2.31,-0.15l-0.86,0.25l-0.26,0.49l0.17,0.61l-2.11,1.68l-2.85,0.87l-1.09,-0.57l-0.73,0.66l-1.12,0.1l-1.1,-3.12l-1.25,-0.64l-1.22,-1.22l0.29,-0.64l3.01,0.04l0.35,-0.6l-1.3,-2.2l-0.08,-3.31l-0.97,-1.66l0.22,-1.04l-0.38,-0.48l-1.22,-0.04l0.0,-1.25l-0.98,-1.07l0.96,-3.01l3.25,-2.65l0.13,-3.33l0.95,-5.18l0.52,-1.07l-0.1,-0.48l-0.91,-0.78l-0.2,-0.96l-0.8,-0.58l-0.55,-3.65l2.1,-1.2l19.57,9.83Z", "name": "Chad"}, "LY": {"path": "M483.48,203.15l-0.75,1.1l0.29,1.39l-0.6,1.83l0.73,2.14l0.0,24.12l-2.48,0.01l-0.41,0.85l-19.41,-9.76l-4.41,2.28l-1.37,-1.33l-3.82,-1.1l-1.14,-1.65l-1.98,-1.23l-1.22,0.32l-0.66,-1.11l-0.17,-1.26l-1.28,-1.69l0.87,-1.19l-0.07,-4.34l0.43,-2.27l-0.86,-3.45l1.13,-0.76l0.22,-1.16l-0.2,-1.03l3.48,-2.61l0.29,-1.94l2.45,0.8l1.18,-0.21l1.98,0.44l3.15,1.18l1.37,2.54l5.72,1.67l2.64,1.35l1.61,-0.72l1.29,-1.34l-0.44,-2.34l0.66,-1.13l1.67,-1.21l1.57,-0.35l3.14,0.53l1.08,1.28l3.99,0.78l0.36,0.54Z", "name": "Libya"}, "AE": {"path": "M550.76,223.97l1.88,-0.4l3.84,0.02l4.78,-4.75l0.19,0.36l0.26,1.58l-0.81,0.01l-0.39,0.35l-0.08,2.04l-0.81,0.63l-0.01,0.96l-0.66,0.99l-0.39,1.41l-7.08,-1.25l-0.7,-1.96Z", "name": "United Arab Emirates"}, "VE": {"path": "M240.68,256.69l0.53,0.75l-0.02,1.06l-1.07,1.78l0.95,2.0l0.42,0.22l1.4,-0.44l0.56,-1.83l-0.77,-1.17l-0.1,-1.47l2.82,-0.93l0.26,-0.49l-0.28,-0.96l0.3,-0.28l0.66,1.31l1.96,0.26l1.4,1.22l0.08,0.68l0.39,0.35l4.81,-0.22l1.49,1.11l1.92,0.31l1.67,-0.84l0.22,-0.6l3.44,-0.14l-0.17,0.55l0.86,1.19l2.19,0.35l1.67,1.1l0.37,1.86l0.41,0.32l1.55,0.17l-1.66,1.35l-0.22,0.92l0.65,0.97l-1.67,0.54l-0.3,0.4l0.04,0.99l-0.56,0.57l-0.01,0.55l1.85,2.27l-0.66,0.69l-4.47,1.29l-0.72,0.54l-3.69,-0.9l-0.71,0.27l-0.02,0.7l0.91,0.53l-0.08,1.54l0.35,1.58l0.35,0.31l1.66,0.17l-1.3,0.52l-0.48,1.13l-2.68,0.91l-0.6,0.77l-1.57,0.13l-1.17,-1.13l-0.8,-2.52l-1.25,-1.26l1.02,-1.23l-1.29,-2.95l0.18,-1.62l1.0,-2.21l-0.2,-0.49l-1.14,-0.46l-4.02,0.36l-1.82,-2.1l-1.57,-0.33l-2.99,0.22l-1.06,-0.97l0.25,-1.23l-0.2,-1.01l-0.59,-0.69l-0.29,-1.06l-1.08,-0.39l0.78,-2.79l1.9,-2.11Z", "name": "Venezuela"}, "AF": {"path": "M600.7,188.88l-1.57,1.3l-0.1,0.48l0.8,2.31l-1.09,1.04l-0.03,1.27l-0.48,0.71l-2.16,-0.08l-0.37,0.59l0.78,1.48l-1.38,0.69l-1.06,1.69l0.06,1.7l-0.65,0.52l-0.91,-0.21l-1.91,0.36l-0.48,0.77l-1.88,0.13l-1.4,1.56l-0.18,2.32l-2.91,1.02l-1.65,-0.23l-0.71,0.55l-1.41,-0.3l-2.41,0.39l-3.52,-1.17l1.96,-2.35l-0.21,-1.78l-0.3,-0.34l-1.63,-0.4l-0.19,-1.58l-0.75,-2.03l0.95,-1.36l-0.19,-0.6l-0.73,-0.28l1.47,-4.8l2.14,0.9l2.12,-0.36l0.74,-1.34l1.77,-0.39l1.54,-0.92l0.63,-2.31l1.87,-0.5l0.49,-0.81l0.94,0.56l2.13,0.11l2.55,0.92l1.95,-0.83l0.65,0.43l0.56,-0.13l0.69,-1.12l1.57,-0.08l0.72,-1.66l0.79,-0.74l0.8,0.39l-0.17,0.56l0.71,0.58l-0.08,2.39l1.11,0.95ZM601.37,188.71l1.73,-0.71l1.43,-1.18l4.03,0.35l-2.23,0.74l-4.95,0.8Z", "name": "Afghanistan"}, "IQ": {"path": "M530.82,187.47l0.79,0.66l1.26,-0.28l1.46,3.08l1.63,0.94l0.14,1.23l-1.22,1.05l-0.53,2.52l1.73,2.67l3.12,1.62l1.15,1.88l-0.38,1.85l0.39,0.48l0.41,-0.0l0.02,1.07l0.76,0.94l-2.47,-0.1l-1.71,2.44l-4.31,-0.2l-7.02,-5.48l-3.73,-1.94l-2.88,-0.73l-0.85,-2.87l5.45,-3.02l0.95,-3.43l-0.19,-1.96l1.27,-0.7l1.22,-1.7l0.87,-0.36l2.69,0.34Z", "name": "Iraq"}, "IS": {"path": "M384.14,88.06l-0.37,2.61l2.54,2.51l-2.9,2.75l-9.19,3.4l-9.25,-1.66l1.7,-1.22l-0.1,-0.7l-4.05,-1.47l2.96,-0.53l0.33,-0.43l-0.11,-1.2l-0.33,-0.36l-4.67,-0.85l1.28,-2.04l3.45,-0.56l3.77,2.72l0.44,0.02l3.64,-2.16l3.3,1.08l3.98,-2.16l3.58,0.26Z", "name": "Iceland"}, "IR": {"path": "M533.43,187.16l-1.27,-2.15l0.42,-0.98l-0.71,-3.04l1.03,-0.5l0.33,0.83l1.26,1.35l2.05,0.51l1.11,-0.16l2.89,-2.11l0.62,-0.14l0.39,0.46l-0.72,1.2l0.06,0.49l1.56,1.53l0.65,0.04l0.67,1.81l2.56,0.83l1.87,1.48l3.69,0.49l3.91,-0.76l0.47,-0.73l2.17,-0.6l1.66,-1.54l1.51,0.08l1.18,-0.53l1.59,0.24l2.83,1.48l1.88,0.3l2.77,2.47l1.77,0.18l0.18,1.99l-1.68,5.49l0.24,0.5l0.61,0.23l-0.82,1.48l0.8,2.18l0.19,1.71l0.3,0.34l1.63,0.4l0.15,1.32l-2.15,2.35l-0.01,0.53l2.21,3.03l2.34,1.24l0.06,2.14l1.24,0.72l0.11,0.69l-3.31,1.27l-1.08,3.03l-9.68,-1.68l-0.99,-3.05l-1.43,-0.73l-2.17,0.46l-2.47,1.26l-2.83,-0.82l-2.46,-2.02l-2.41,-0.8l-3.42,-6.06l-0.48,-0.2l-1.18,0.39l-1.44,-0.82l-0.5,0.08l-0.65,0.74l-0.97,-1.01l-0.02,-1.31l-0.71,-0.39l0.26,-1.81l-1.29,-2.11l-3.13,-1.63l-1.58,-2.43l0.5,-1.9l1.31,-1.26l-0.19,-1.66l-1.74,-1.1l-1.57,-3.3Z", "name": "Iran"}, "AM": {"path": "M536.99,182.33l-0.28,0.03l-1.23,-2.13l-0.93,0.01l-0.62,-0.66l-0.69,-0.07l-0.96,-0.81l-1.56,-0.62l0.19,-1.12l-0.26,-0.79l2.72,-0.36l1.09,1.01l-0.17,0.92l1.02,0.78l-0.47,0.62l0.08,0.56l2.04,1.23l0.04,1.4Z", "name": "Armenia"}, "IT": {"path": "M451.59,158.63l3.48,0.94l-0.21,1.17l0.3,0.83l-1.49,-0.24l-2.04,1.1l-0.21,0.39l0.13,1.45l-0.25,1.12l0.82,1.57l2.39,1.63l1.31,2.54l2.79,2.43l2.05,0.08l0.21,0.23l-0.39,0.33l0.09,0.67l4.05,1.97l2.17,1.76l-0.16,0.36l-1.17,-1.08l-2.18,-0.49l-0.44,0.2l-1.05,1.91l0.14,0.54l1.57,0.95l-0.19,0.98l-1.06,0.33l-1.25,2.34l-0.37,0.08l0.0,-0.33l1.0,-2.45l-1.73,-3.17l-1.12,-0.51l-0.88,-1.33l-1.51,-0.51l-1.27,-1.25l-1.75,-0.18l-4.12,-3.21l-1.62,-1.65l-1.03,-3.19l-3.53,-1.36l-1.3,0.51l-1.69,1.41l0.16,-0.72l-0.28,-0.47l-1.14,-0.33l-0.53,-1.96l0.72,-0.78l0.04,-0.48l-0.65,-1.17l0.8,0.39l1.4,-0.23l1.11,-0.84l0.52,0.35l1.19,-0.1l0.75,-1.2l1.53,0.33l1.36,-0.56l0.35,-1.14l1.08,0.32l0.68,-0.64l1.98,-0.44l0.42,0.82ZM459.19,184.75l-0.65,1.65l0.32,1.05l-0.31,0.89l-1.5,-0.85l-4.5,-1.67l0.19,-0.82l2.67,0.23l3.78,-0.48ZM443.93,176.05l1.18,1.66l-0.3,3.32l-1.06,-0.01l-0.77,0.73l-0.53,-0.44l-0.1,-3.37l-0.39,-1.22l1.04,0.01l0.92,-0.68Z", "name": "Italy"}, "VN": {"path": "M690.56,230.25l-2.7,1.82l-2.09,2.46l-0.63,1.95l4.31,6.45l2.32,1.65l1.43,1.94l1.11,4.59l-0.32,4.24l-1.93,1.54l-2.84,1.61l-2.11,2.15l-2.73,2.06l-0.59,-1.05l0.63,-1.53l-0.13,-0.47l-1.34,-1.04l1.51,-0.71l2.55,-0.18l0.3,-0.63l-0.82,-1.14l4.0,-2.07l0.31,-3.05l-0.57,-1.77l0.42,-2.66l-0.73,-1.97l-1.86,-1.76l-3.63,-5.29l-2.72,-1.46l0.36,-0.47l1.5,-0.64l0.21,-0.52l-0.97,-2.27l-0.37,-0.24l-2.83,-0.02l-2.24,-3.9l0.83,-0.4l4.39,-0.29l2.06,-1.31l1.15,0.89l1.88,0.4l-0.17,1.51l1.35,1.16l1.67,0.45Z", "name": "Vietnam"}, "AR": {"path": "M249.29,428.93l-2.33,-0.52l-5.83,-0.43l-0.89,-1.66l0.05,-2.37l-0.45,-0.4l-1.43,0.18l-0.67,-0.91l-0.2,-3.13l1.88,-1.47l0.79,-2.04l-0.25,-1.7l1.3,-2.68l0.91,-4.15l-0.22,-1.69l0.85,-0.45l0.2,-0.44l-0.27,-1.16l-0.98,-0.68l0.59,-0.92l-0.05,-0.5l-1.04,-1.07l-0.52,-3.1l0.97,-0.86l-0.42,-3.58l1.2,-5.43l1.38,-0.98l0.16,-0.43l-0.75,-2.79l-0.01,-2.43l1.78,-1.75l0.06,-2.57l1.43,-2.85l0.01,-2.58l-0.69,-0.74l-1.09,-4.52l1.47,-2.7l-0.18,-2.79l0.85,-2.35l1.59,-2.46l1.73,-1.64l0.05,-0.52l-0.6,-0.84l0.44,-0.85l-0.07,-4.19l2.7,-1.44l0.86,-2.75l-0.21,-0.71l1.76,-2.01l2.9,0.57l1.38,1.78l0.68,-0.08l0.87,-1.87l2.39,0.09l4.95,4.77l2.17,0.49l3.0,1.92l2.47,1.0l0.25,0.82l-2.37,3.93l0.23,0.59l5.39,1.16l2.12,-0.44l2.45,-2.16l0.5,-2.38l0.76,-0.31l0.98,1.2l-0.04,1.8l-3.67,2.51l-2.85,2.66l-3.43,3.88l-1.3,5.07l0.01,2.72l-0.54,0.73l-0.36,3.28l3.14,2.64l-0.16,2.11l1.4,1.11l-0.1,1.09l-2.29,3.52l-3.55,1.49l-4.92,0.6l-2.71,-0.29l-0.43,0.51l0.5,1.65l-0.49,2.1l0.38,1.42l-1.19,0.83l-2.36,0.38l-2.3,-1.04l-1.38,0.83l0.41,3.64l1.69,0.91l1.4,-0.71l0.36,0.76l-2.04,0.86l-2.01,1.89l-0.97,4.63l-2.34,0.1l-2.09,1.78l-0.61,2.75l2.46,2.31l2.17,0.63l-0.7,2.32l-2.83,1.73l-1.73,3.86l-2.17,1.22l-1.16,1.67l0.75,3.76l1.04,1.28ZM256.71,438.88l-2.0,0.15l-1.4,-1.22l-3.82,-0.1l-0.0,-5.83l1.6,3.05l3.26,2.07l3.08,0.78l-0.71,1.1Z", "name": "Argentina"}, "AU": {"path": "M705.8,353.26l0.26,0.04l0.17,-0.47l-0.48,-1.42l0.92,1.11l0.45,0.15l0.27,-0.39l-0.1,-1.56l-1.98,-3.63l1.09,-3.31l-0.24,-1.57l0.34,-0.62l0.38,1.06l0.43,-0.19l0.99,-1.7l1.91,-0.83l1.29,-1.15l1.81,-0.91l0.96,-0.17l0.92,0.26l1.92,-0.95l1.47,-0.28l1.03,-0.8l1.43,0.04l2.78,-0.84l1.36,-1.15l0.71,-1.45l1.41,-1.26l0.3,-2.58l1.27,-1.59l0.78,1.65l0.54,0.19l1.07,-0.51l0.15,-0.6l-0.73,-1.0l0.45,-0.71l0.78,0.39l0.58,-0.3l0.28,-1.82l1.87,-2.14l1.12,-0.39l0.28,-0.58l0.62,0.17l0.53,-0.73l1.87,-0.57l1.65,1.05l1.35,1.48l3.39,0.38l0.43,-0.54l-0.46,-1.23l1.05,-1.79l1.04,-0.61l0.14,-0.55l-0.25,-0.41l0.88,-1.17l1.31,-0.77l1.3,0.27l2.1,-0.48l0.31,-0.4l-0.05,-1.3l-0.92,-0.77l1.48,0.56l1.41,1.07l2.11,0.65l0.81,-0.2l1.4,0.7l1.69,-0.66l0.8,0.19l0.64,-0.33l0.71,0.77l-1.33,1.94l-0.71,0.07l-0.35,0.51l0.24,0.86l-1.52,2.35l0.12,1.05l2.15,1.65l1.97,0.85l3.04,2.36l1.97,0.65l0.55,0.88l2.72,0.85l1.84,-1.1l2.07,-5.97l-0.42,-3.59l0.3,-1.73l0.47,-0.87l-0.31,-0.68l1.09,-3.28l0.46,-0.47l0.4,0.71l0.16,1.51l0.65,0.52l0.16,1.04l0.85,1.21l0.12,2.38l0.9,2.0l0.57,0.18l1.3,-0.78l1.69,1.7l-0.2,1.08l0.53,2.2l0.39,1.3l0.68,0.48l0.6,1.95l-0.19,1.48l0.81,1.76l6.01,3.69l-0.11,0.76l1.38,1.58l0.95,2.77l0.58,0.22l0.72,-0.41l0.8,0.9l0.61,0.01l0.46,2.41l4.81,4.71l0.66,2.02l-0.07,3.31l1.14,2.2l-0.13,2.24l-1.1,3.68l0.03,1.64l-0.47,1.89l-1.05,2.4l-1.9,1.47l-1.72,3.51l-2.38,6.09l-0.24,2.82l-1.14,0.8l-2.85,0.15l-2.31,1.19l-2.51,2.25l-3.09,-1.57l0.3,-1.15l-0.54,-0.47l-1.5,0.63l-2.01,1.94l-7.12,-2.18l-1.48,-1.63l-1.14,-3.74l-1.45,-1.26l-1.81,-0.26l0.56,-1.18l-0.61,-2.1l-0.72,-0.1l-1.14,1.82l-0.9,0.21l0.63,-0.82l0.36,-1.55l0.92,-1.31l-0.13,-2.34l-0.7,-0.22l-2.0,2.34l-1.51,0.93l-0.94,2.01l-1.35,-0.81l-0.02,-1.52l-1.57,-2.04l-1.09,-0.88l0.24,-0.33l-0.14,-0.59l-3.21,-1.69l-1.83,-0.12l-2.54,-1.35l-4.58,0.28l-6.02,1.9l-2.53,-0.13l-2.62,1.41l-2.13,0.63l-1.49,2.6l-3.49,0.31l-2.29,-0.5l-3.48,0.43l-1.6,1.47l-0.81,-0.04l-2.37,1.63l-3.26,-0.1l-3.72,-2.21l0.04,-1.05l1.19,-0.46l0.49,-0.89l0.21,-2.97l-0.28,-1.64l-1.34,-2.86l-0.38,-1.47l0.05,-1.72l-0.95,-1.7l-0.18,-0.97l-1.01,-0.99l-0.29,-1.98l-1.13,-1.75ZM784.92,393.44l2.65,1.02l3.23,-0.96l1.09,0.14l0.15,3.06l-0.85,1.13l-0.17,1.63l-0.87,-0.24l-1.57,1.91l-1.68,-0.18l-1.4,-2.36l-0.37,-2.04l-1.39,-2.51l0.04,-0.8l1.15,0.18Z", "name": "Australia"}, "IL": {"path": "M507.76,203.05l0.4,-0.78l0.18,0.4l-0.33,1.03l0.52,0.44l0.68,-0.22l-0.86,3.6l-1.16,-3.32l0.59,-0.74l-0.03,-0.41ZM508.73,200.34l0.37,-1.02l0.64,0.0l0.52,-0.51l-0.49,1.53l-0.56,-0.24l-0.48,0.23Z", "name": "Israel"}, "IN": {"path": "M623.34,207.03l-1.24,1.04l-0.97,2.55l0.22,0.51l8.04,3.87l3.42,0.37l1.57,1.38l4.92,0.88l2.18,-0.04l0.38,-0.3l0.29,-1.24l-0.32,-1.64l0.14,-0.87l0.82,-0.31l0.45,2.48l2.28,1.02l1.77,-0.38l4.14,0.1l0.38,-0.36l0.18,-1.66l-0.5,-0.65l1.37,-0.29l2.25,-1.99l2.7,-1.62l1.93,0.62l1.8,-0.98l0.79,1.14l-0.68,0.91l0.26,0.63l2.42,0.36l0.09,0.47l-0.83,0.75l0.13,1.07l-1.52,-0.29l-3.24,1.86l-0.13,1.78l-1.32,2.14l-0.18,1.39l-0.93,1.82l-1.64,-0.5l-0.52,0.37l-0.09,2.63l-0.56,1.11l0.19,0.81l-0.53,0.27l-1.18,-3.73l-1.08,-0.27l-0.38,0.31l-0.24,1.0l-0.66,-0.66l0.54,-1.06l1.22,-0.34l1.15,-2.25l-0.24,-0.56l-1.57,-0.47l-4.34,-0.28l-0.18,-1.56l-0.35,-0.35l-1.11,-0.12l-1.91,-1.12l-0.56,0.17l-0.88,1.82l0.11,0.49l1.36,1.07l-1.09,0.69l-0.69,1.11l0.18,0.56l1.24,0.57l-0.32,1.54l0.85,1.94l0.36,2.01l-0.22,0.59l-4.58,0.52l-0.33,0.42l0.13,1.8l-1.17,1.36l-3.65,1.81l-2.79,3.03l-4.32,3.28l-0.18,1.27l-4.65,1.79l-0.77,2.16l0.64,5.3l-1.06,2.49l-0.01,3.94l-1.24,0.28l-1.14,1.93l0.39,0.84l-1.68,0.53l-1.04,1.83l-0.65,0.47l-2.06,-2.05l-2.1,-6.02l-2.2,-3.64l-1.05,-4.75l-2.29,-3.57l-1.76,-8.2l0.01,-3.11l-0.49,-2.53l-0.55,-0.29l-3.53,1.52l-1.53,-0.27l-2.86,-2.77l0.85,-0.67l0.08,-0.55l-0.74,-1.03l-2.67,-2.06l1.24,-1.32l5.34,0.01l0.39,-0.49l-0.5,-2.29l-1.42,-1.46l-0.27,-1.93l-1.43,-1.2l2.31,-2.37l3.05,0.06l2.62,-2.85l1.6,-2.81l2.4,-2.73l0.07,-2.04l1.97,-1.48l-0.02,-0.65l-1.93,-1.31l-0.82,-1.78l-0.8,-2.21l0.9,-0.89l3.59,0.65l2.92,-0.42l2.33,-2.19l2.31,2.85l-0.24,2.13l0.99,1.59l-0.05,0.82l-1.34,-0.28l-0.47,0.48l0.7,3.06l2.62,1.99l2.99,1.65Z", "name": "India"}, "TZ": {"path": "M495.56,296.42l2.8,-3.12l-0.02,-0.81l-0.64,-1.3l0.68,-0.52l0.14,-1.47l-0.76,-1.25l0.31,-0.11l2.26,0.03l-0.51,2.76l0.76,1.3l0.5,0.12l1.05,-0.53l1.19,-0.12l0.61,0.24l1.43,-0.62l0.1,-0.67l-0.71,-0.62l1.57,-1.7l8.65,4.86l0.32,1.53l3.34,2.33l-1.05,2.8l0.13,1.61l1.63,1.12l-0.6,1.76l-0.01,2.33l1.89,4.03l0.57,0.43l-1.46,1.08l-2.61,0.94l-1.43,-0.04l-1.06,0.77l-2.29,0.36l-2.87,-0.68l-0.83,0.07l-0.63,-0.75l-0.31,-2.78l-1.32,-1.35l-3.25,-0.77l-3.96,-1.58l-1.18,-2.41l-0.32,-1.75l-1.76,-1.49l0.42,-1.05l-0.44,-0.89l0.08,-0.96l-0.46,-0.58l0.06,-0.56Z", "name": "Tanzania"}, "AZ": {"path": "M539.29,175.73l1.33,0.32l1.94,-1.8l2.3,3.34l1.43,0.43l-1.26,0.15l-0.35,0.32l-0.8,3.14l-0.99,0.96l0.05,1.11l-1.26,-1.13l0.7,-1.18l-0.04,-0.47l-0.74,-0.86l-1.48,0.15l-2.34,1.71l-0.03,-1.27l-2.03,-1.35l0.47,-0.62l-0.08,-0.56l-1.03,-0.79l0.29,-0.43l-0.14,-0.58l-1.13,-0.86l1.89,0.68l1.69,0.06l0.37,-0.87l-0.81,-1.37l0.42,0.06l1.63,1.72ZM533.78,180.57l0.61,0.46l0.69,-0.0l0.59,1.15l-0.68,-0.15l-1.21,-1.45Z", "name": "Azerbaijan"}, "IE": {"path": "M405.08,135.42l0.35,2.06l-1.75,2.78l-4.22,1.88l-2.84,-0.4l1.73,-3.0l-1.18,-3.53l4.6,-3.74l0.32,1.15l-0.49,1.74l0.4,0.51l1.47,-0.04l1.6,0.6Z", "name": "Ireland"}, "ID": {"path": "M756.47,287.89l0.69,4.01l2.79,1.78l0.51,-0.1l2.04,-2.59l2.71,-1.43l2.05,-0.0l3.9,1.73l2.46,0.45l0.08,15.12l-1.75,-1.54l-2.54,-0.51l-0.88,0.71l-2.32,0.06l0.69,-1.33l1.45,-0.64l0.23,-0.46l-0.65,-2.74l-1.24,-2.21l-5.04,-2.29l-2.09,-0.23l-3.68,-2.27l-0.55,0.13l-0.65,1.07l-0.52,0.12l-0.55,-1.89l-1.21,-0.78l1.84,-0.62l1.72,0.05l0.39,-0.52l-0.21,-0.66l-0.38,-0.28l-3.45,-0.0l-1.13,-1.48l-2.1,-0.43l-0.52,-0.6l2.69,-0.48l1.28,-0.78l3.66,0.94l0.3,0.71ZM757.91,300.34l-0.62,0.82l-0.1,-0.8l0.59,-1.12l0.13,1.1ZM747.38,292.98l0.34,0.72l-1.22,-0.57l-4.68,-0.1l0.27,-0.62l2.78,-0.09l2.52,0.67ZM741.05,285.25l-0.67,-2.88l0.64,-2.01l0.41,0.86l1.21,0.18l0.16,0.7l-0.1,1.68l-0.84,-0.16l-0.46,0.3l-0.34,1.34ZM739.05,293.5l-0.5,0.44l-1.34,-0.36l-0.17,-0.37l1.73,-0.08l0.27,0.36ZM721.45,284.51l-0.19,1.97l2.24,2.23l0.54,0.02l1.27,-1.07l2.75,-0.5l-0.9,1.21l-2.11,0.93l-0.16,0.6l2.22,3.01l-0.3,1.07l1.36,1.74l-2.26,0.85l-0.28,-0.31l0.12,-1.19l-1.64,-1.34l0.17,-2.23l-0.56,-0.39l-1.67,0.76l-0.23,0.39l0.3,6.17l-1.1,0.25l-0.69,-0.47l0.64,-2.21l-0.39,-2.42l-0.39,-0.34l-0.8,-0.01l-0.58,-1.29l0.98,-1.6l0.35,-1.96l1.32,-3.87ZM728.59,296.27l0.38,0.49l-0.02,1.28l-0.88,0.49l-0.53,-0.47l1.04,-1.79ZM729.04,286.98l0.27,-0.05l-0.02,0.13l-0.24,-0.08ZM721.68,284.05l0.16,-0.32l1.89,-1.65l1.83,0.68l3.16,0.35l2.94,-0.1l2.39,-1.66l-1.73,2.13l-1.66,0.43l-2.41,-0.48l-4.17,0.13l-2.39,0.51ZM730.55,310.47l1.11,-1.93l2.03,-0.82l0.08,0.62l-1.45,1.67l-1.77,0.46ZM728.12,305.88l-0.1,0.38l-3.46,0.66l-2.91,-0.27l-0.0,-0.25l1.54,-0.41l1.66,0.73l1.67,-0.19l1.61,-0.65ZM722.9,310.24l-0.64,0.03l-2.26,-1.2l1.11,-0.24l1.78,1.41ZM716.26,305.77l0.88,0.51l1.28,-0.17l0.2,0.35l-4.65,0.73l0.39,-0.67l1.15,-0.02l0.75,-0.73ZM711.66,293.84l-0.38,-0.16l-2.54,1.01l-1.12,-1.44l-1.69,-0.13l-1.16,-0.75l-3.04,0.77l-1.1,-1.15l-3.31,-0.11l-0.35,-3.05l-1.35,-0.95l-1.11,-1.98l-0.33,-2.06l0.27,-2.14l0.9,-1.01l0.37,1.15l2.09,1.49l1.53,-0.48l1.82,0.08l1.38,-1.19l1.0,-0.18l2.28,0.67l2.26,-0.53l1.52,-3.64l1.01,-0.99l0.78,-2.57l4.1,0.3l-1.11,1.77l0.02,0.46l1.7,2.2l-0.23,1.39l2.07,1.71l-2.33,0.42l-0.88,1.9l0.1,2.05l-2.4,1.9l-0.06,2.45l-0.7,2.79ZM692.58,302.03l0.35,0.26l4.8,0.25l0.78,-0.97l4.17,1.09l1.13,1.68l3.69,0.45l2.13,1.04l-1.8,0.6l-2.77,-0.99l-4.8,-0.12l-5.24,-1.41l-1.84,-0.25l-1.11,0.3l-4.26,-0.97l-0.7,-1.14l-1.59,-0.13l1.18,-1.65l2.74,0.13l2.87,1.13l0.26,0.68ZM685.53,299.17l-2.22,0.04l-2.06,-2.03l-3.15,-2.01l-2.93,-3.51l-3.11,-5.33l-2.2,-2.12l-1.64,-4.06l-2.32,-1.69l-1.27,-2.07l-1.96,-1.5l-2.51,-2.65l-0.11,-0.66l4.81,0.53l2.15,2.38l3.31,2.74l2.35,2.66l2.7,0.17l1.95,1.59l1.54,2.17l1.59,0.95l-0.84,1.71l0.15,0.52l1.44,0.87l0.79,0.1l0.4,1.58l0.87,1.4l1.96,0.39l1.0,1.31l-0.6,3.01l-0.09,3.5Z", "name": "Indonesia"}, "UA": {"path": "M492.5,162.44l1.28,-2.49l1.82,0.19l0.66,-0.23l0.09,-0.71l-0.25,-0.75l-0.79,-0.72l-0.33,-1.21l-0.86,-0.62l-0.02,-1.19l-1.13,-0.86l-1.15,-0.19l-2.04,-1.0l-1.66,0.32l-0.66,0.47l-0.92,-0.0l-0.84,0.78l-2.48,0.7l-1.18,-0.71l-3.07,-0.36l-0.89,0.43l-0.24,-0.55l-1.11,-0.7l0.35,-0.93l1.26,-1.02l-0.54,-1.23l2.04,-2.43l1.4,-0.62l0.25,-1.19l-1.04,-2.39l0.83,-0.13l1.28,-0.84l1.8,-0.07l2.47,0.26l2.86,0.81l1.88,0.06l0.86,0.44l1.04,-0.41l0.77,0.66l2.18,-0.15l0.92,0.3l0.52,-0.34l0.15,-1.53l0.56,-0.54l2.85,-0.05l0.84,-0.72l3.04,-0.18l1.23,1.46l-0.48,0.77l0.21,1.03l0.36,0.32l1.8,0.14l0.93,2.08l3.18,1.15l1.94,-0.45l1.67,1.49l1.4,-0.03l3.35,0.96l0.02,0.54l-0.96,1.59l0.47,1.97l-0.26,0.7l-2.36,0.28l-1.29,0.89l-0.23,1.38l-1.83,0.27l-1.58,0.97l-2.41,0.21l-2.16,1.17l-0.21,0.38l0.34,2.26l1.23,0.75l2.13,-0.08l-0.14,0.31l-2.65,0.53l-3.23,1.69l-0.87,-0.39l0.42,-1.1l-0.25,-0.52l-2.21,-0.73l2.35,-1.06l0.12,-0.65l-0.93,-0.82l-3.62,-0.74l-0.13,-0.89l-0.46,-0.34l-2.61,0.59l-0.91,1.69l-1.71,2.04l-0.86,-0.4l-1.62,0.27Z", "name": "Ukraine"}, "QA": {"path": "M549.33,221.64l-0.76,-0.23l-0.14,-1.64l0.84,-1.29l0.47,0.52l0.04,1.34l-0.45,1.3Z", "name": "Qatar"}, "MZ": {"path": "M508.58,318.75l-0.34,-2.57l0.51,-2.05l3.55,0.63l2.5,-0.38l1.02,-0.76l1.49,0.01l2.74,-0.98l1.66,-1.2l0.5,9.24l0.41,1.23l-0.68,1.67l-0.93,1.71l-1.5,1.5l-5.16,2.28l-2.78,2.73l-1.02,0.53l-1.71,1.8l-0.98,0.57l-0.35,2.41l1.16,1.94l0.49,2.17l0.43,0.31l-0.06,2.06l-0.39,1.17l0.5,0.72l-0.25,0.73l-0.92,0.83l-5.12,2.39l-1.22,1.36l0.21,1.13l0.58,0.39l-0.11,0.72l-1.22,-0.01l-0.73,-2.97l0.42,-3.09l-1.78,-5.37l2.49,-2.81l0.69,-1.89l0.44,-0.43l0.28,-1.53l-0.39,-0.93l0.59,-3.65l-0.01,-3.26l-1.49,-1.16l-1.2,-0.22l-1.74,-1.17l-1.92,0.01l-0.29,-2.08l7.06,-1.96l1.28,1.09l0.89,-0.1l0.67,0.44l0.1,0.73l-0.51,1.29l0.19,1.81l1.75,1.83l0.65,-0.13l0.71,-1.65l1.17,-0.86l-0.26,-3.47l-1.05,-1.85l-1.04,-0.94Z", "name": "Mozambique"}}, "height": 440.70631074413296, "projection": {"type": "mill", "centralMeridian": 11.5}, "width": 900.0}); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.css b/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.css deleted file mode 100755 index 1cac4ac3..00000000 --- a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.css +++ /dev/null @@ -1,135 +0,0 @@ -svg { - touch-action: none; -} - -.jvectormap-container { - width: 100%; - height: 100%; - position: relative; - overflow: hidden; - touch-action: none; -} - -.jvectormap-tip { - position: absolute; - display: none; - border: solid 1px #CDCDCD; - border-radius: 3px; - background: #292929; - color: white; - font-family: sans-serif, Verdana; - font-size: smaller; - padding: 3px; -} - -.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback { - position: absolute; - left: 10px; - border-radius: 3px; - background: #292929; - padding: 3px; - color: white; - cursor: pointer; - line-height: 10px; - text-align: center; - box-sizing: content-box; -} - -.jvectormap-zoomin, .jvectormap-zoomout { - width: 10px; - height: 10px; -} - -.jvectormap-zoomin { - top: 10px; -} - -.jvectormap-zoomout { - top: 30px; -} - -.jvectormap-goback { - bottom: 10px; - z-index: 1000; - padding: 6px; -} - -.jvectormap-spinner { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==); -} - -.jvectormap-legend-title { - font-weight: bold; - font-size: 14px; - text-align: center; -} - -.jvectormap-legend-cnt { - position: absolute; -} - -.jvectormap-legend-cnt-h { - bottom: 0; - right: 0; -} - -.jvectormap-legend-cnt-v { - top: 0; - right: 0; -} - -.jvectormap-legend { - background: black; - color: white; - border-radius: 3px; -} - -.jvectormap-legend-cnt-h .jvectormap-legend { - float: left; - margin: 0 10px 10px 0; - padding: 3px 3px 1px 3px; -} - -.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick { - float: left; -} - -.jvectormap-legend-cnt-v .jvectormap-legend { - margin: 10px 10px 0 0; - padding: 3px; -} - -.jvectormap-legend-cnt-h .jvectormap-legend-tick { - width: 40px; -} - -.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample { - height: 15px; -} - -.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample { - height: 20px; - width: 20px; - display: inline-block; - vertical-align: middle; -} - -.jvectormap-legend-tick-text { - font-size: 12px; -} - -.jvectormap-legend-cnt-h .jvectormap-legend-tick-text { - text-align: center; -} - -.jvectormap-legend-cnt-v .jvectormap-legend-tick-text { - display: inline-block; - vertical-align: middle; - line-height: 20px; - padding-left: 3px; -} \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.min.js b/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.min.js deleted file mode 100755 index bc3a688f..00000000 --- a/app/frontend/static/assets/vendors/jvectormap/jquery-jvectormap.min.js +++ /dev/null @@ -1,2 +0,0 @@ -!function($){var apiParams={set:{colors:1,values:1,backgroundColor:1,scaleColors:1,normalizeFunction:1,focus:1},get:{selectedRegions:1,selectedMarkers:1,mapObject:1,regionName:1}};$.fn.vectorMap=function(options){var map,methodName,map=this.children(".jvectormap-container").data("mapObject");if("addMap"===options)jvm.Map.maps[arguments[1]]=arguments[2];else{if(("set"===options||"get"===options)&&apiParams[options][arguments[1]])return methodName=arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1),map[options+methodName].apply(map,Array.prototype.slice.call(arguments,2));options=options||{},options.container=this,map=new jvm.Map(options)}return this}}(jQuery),function(factory){"function"==typeof define&&define.amd?define(["jquery"],factory):"object"==typeof exports?module.exports=factory:factory(jQuery)}(function($){function handler(event){var orgEvent=event||window.event,args=slice.call(arguments,1),delta=0,deltaX=0,deltaY=0,absDelta=0;if(event=$.event.fix(orgEvent),event.type="mousewheel","detail"in orgEvent&&(deltaY=-1*orgEvent.detail),"wheelDelta"in orgEvent&&(deltaY=orgEvent.wheelDelta),"wheelDeltaY"in orgEvent&&(deltaY=orgEvent.wheelDeltaY),"wheelDeltaX"in orgEvent&&(deltaX=-1*orgEvent.wheelDeltaX),"axis"in orgEvent&&orgEvent.axis===orgEvent.HORIZONTAL_AXIS&&(deltaX=-1*deltaY,deltaY=0),delta=0===deltaY?deltaX:deltaY,"deltaY"in orgEvent&&(deltaY=-1*orgEvent.deltaY,delta=deltaY),"deltaX"in orgEvent&&(deltaX=orgEvent.deltaX,0===deltaY&&(delta=-1*deltaX)),0!==deltaY||0!==deltaX){if(1===orgEvent.deltaMode){var lineHeight=$.data(this,"mousewheel-line-height");delta*=lineHeight,deltaY*=lineHeight,deltaX*=lineHeight}else if(2===orgEvent.deltaMode){var pageHeight=$.data(this,"mousewheel-page-height");delta*=pageHeight,deltaY*=pageHeight,deltaX*=pageHeight}return absDelta=Math.max(Math.abs(deltaY),Math.abs(deltaX)),(!lowestDelta||lowestDelta>absDelta)&&(lowestDelta=absDelta,shouldAdjustOldDeltas(orgEvent,absDelta)&&(lowestDelta/=40)),shouldAdjustOldDeltas(orgEvent,absDelta)&&(delta/=40,deltaX/=40,deltaY/=40),delta=Math[delta>=1?"floor":"ceil"](delta/lowestDelta),deltaX=Math[deltaX>=1?"floor":"ceil"](deltaX/lowestDelta),deltaY=Math[deltaY>=1?"floor":"ceil"](deltaY/lowestDelta),event.deltaX=deltaX,event.deltaY=deltaY,event.deltaFactor=lowestDelta,event.deltaMode=0,args.unshift(event,delta,deltaX,deltaY),nullLowestDeltaTimeout&&clearTimeout(nullLowestDeltaTimeout),nullLowestDeltaTimeout=setTimeout(nullLowestDelta,200),($.event.dispatch||$.event.handle).apply(this,args)}}function nullLowestDelta(){lowestDelta=null}function shouldAdjustOldDeltas(orgEvent,absDelta){return special.settings.adjustOldDeltas&&"mousewheel"===orgEvent.type&&absDelta%120===0}var nullLowestDeltaTimeout,lowestDelta,toFix=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],toBind="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],slice=Array.prototype.slice;if($.event.fixHooks)for(var i=toFix.length;i;)$.event.fixHooks[toFix[--i]]=$.event.mouseHooks;var special=$.event.special.mousewheel={version:"3.1.9",setup:function(){if(this.addEventListener)for(var i=toBind.length;i;)this.addEventListener(toBind[--i],handler,!1);else this.onmousewheel=handler;$.data(this,"mousewheel-line-height",special.getLineHeight(this)),$.data(this,"mousewheel-page-height",special.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var i=toBind.length;i;)this.removeEventListener(toBind[--i],handler,!1);else this.onmousewheel=null},getLineHeight:function(elem){return parseInt($(elem)["offsetParent"in $.fn?"offsetParent":"parent"]().css("fontSize"),10)},getPageHeight:function(elem){return $(elem).height()},settings:{adjustOldDeltas:!0}};$.fn.extend({mousewheel:function(fn){return fn?this.bind("mousewheel",fn):this.trigger("mousewheel")},unmousewheel:function(fn){return this.unbind("mousewheel",fn)}})});var jvm={inherits:function(child,parent){function temp(){}temp.prototype=parent.prototype,child.prototype=new temp,child.prototype.constructor=child,child.parentClass=parent},mixin:function(target,source){var prop;for(prop in source.prototype)source.prototype.hasOwnProperty(prop)&&(target.prototype[prop]=source.prototype[prop])},min:function(values){var i,min=Number.MAX_VALUE;if(values instanceof Array)for(i=0;imax&&(max=values[i]);else for(i in values)values[i]>max&&(max=values[i]);return max},keys:function(object){var key,keys=[];for(key in object)keys.push(key);return keys},values:function(object){var key,i,values=[];for(i=0;i");return img.error(function(){deferred.reject()}).load(function(){deferred.resolve(img)}),img.attr("src",url),deferred},isImageUrl:function(s){return/\.\w{3,4}$/.test(s)}};jvm.$=jQuery,Array.prototype.indexOf||(Array.prototype.indexOf=function(searchElement,fromIndex){var k;if(null==this)throw new TypeError('"this" is null or not defined');var O=Object(this),len=O.length>>>0;if(0===len)return-1;var n=+fromIndex||0;if(Math.abs(n)===1/0&&(n=0),n>=len)return-1;for(k=Math.max(n>=0?n:len-Math.abs(n),0);len>k;){if(k in O&&O[k]===searchElement)return k;k++}return-1}),jvm.AbstractElement=function(name,config){this.node=this.createElement(name),this.name=name,this.properties={},config&&this.set(config)},jvm.AbstractElement.prototype.set=function(property,value){var key;if("object"==typeof property)for(key in property)this.properties[key]=property[key],this.applyAttr(key,property[key]);else this.properties[property]=value,this.applyAttr(property,value)},jvm.AbstractElement.prototype.get=function(property){return this.properties[property]},jvm.AbstractElement.prototype.applyAttr=function(property,value){this.node.setAttribute(property,value)},jvm.AbstractElement.prototype.remove=function(){jvm.$(this.node).remove()},jvm.AbstractCanvasElement=function(container,width,height){this.container=container,this.setSize(width,height),this.rootElement=new jvm[this.classPrefix+"GroupElement"],this.node.appendChild(this.rootElement.node),this.container.appendChild(this.node)},jvm.AbstractCanvasElement.prototype.add=function(element,group){group=group||this.rootElement,group.add(element),element.canvas=this},jvm.AbstractCanvasElement.prototype.addPath=function(config,style,group){var el=new jvm[this.classPrefix+"PathElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addCircle=function(config,style,group){var el=new jvm[this.classPrefix+"CircleElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addImage=function(config,style,group){var el=new jvm[this.classPrefix+"ImageElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addText=function(config,style,group){var el=new jvm[this.classPrefix+"TextElement"](config,style);return this.add(el,group),el},jvm.AbstractCanvasElement.prototype.addGroup=function(parentGroup){var el=new jvm[this.classPrefix+"GroupElement"];return parentGroup?parentGroup.node.appendChild(el.node):this.node.appendChild(el.node),el.canvas=this,el},jvm.AbstractShapeElement=function(name,config,style){this.style=style||{},this.style.current=this.style.current||{},this.isHovered=!1,this.isSelected=!1,this.updateStyle()},jvm.AbstractShapeElement.prototype.setStyle=function(property,value){var styles={};"object"==typeof property?styles=property:styles[property]=value,jvm.$.extend(this.style.current,styles),this.updateStyle()},jvm.AbstractShapeElement.prototype.updateStyle=function(){var attrs={};jvm.AbstractShapeElement.mergeStyles(attrs,this.style.initial),jvm.AbstractShapeElement.mergeStyles(attrs,this.style.current),this.isHovered&&jvm.AbstractShapeElement.mergeStyles(attrs,this.style.hover),this.isSelected&&(jvm.AbstractShapeElement.mergeStyles(attrs,this.style.selected),this.isHovered&&jvm.AbstractShapeElement.mergeStyles(attrs,this.style.selectedHover)),this.set(attrs)},jvm.AbstractShapeElement.mergeStyles=function(styles,newStyles){var key;newStyles=newStyles||{};for(key in newStyles)null===newStyles[key]?delete styles[key]:styles[key]=newStyles[key]},jvm.SVGElement=function(){jvm.SVGElement.parentClass.apply(this,arguments)},jvm.inherits(jvm.SVGElement,jvm.AbstractElement),jvm.SVGElement.svgns="http://www.w3.org/2000/svg",jvm.SVGElement.prototype.createElement=function(tagName){return document.createElementNS(jvm.SVGElement.svgns,tagName)},jvm.SVGElement.prototype.addClass=function(className){this.node.setAttribute("class",className)},jvm.SVGElement.prototype.getElementCtr=function(ctr){return jvm["SVG"+ctr]},jvm.SVGElement.prototype.getBBox=function(){return this.node.getBBox()},jvm.SVGGroupElement=function(){jvm.SVGGroupElement.parentClass.call(this,"g")},jvm.inherits(jvm.SVGGroupElement,jvm.SVGElement),jvm.SVGGroupElement.prototype.add=function(element){this.node.appendChild(element.node)},jvm.SVGCanvasElement=function(){this.classPrefix="SVG",jvm.SVGCanvasElement.parentClass.call(this,"svg"),this.defsElement=new jvm.SVGElement("defs"),this.node.appendChild(this.defsElement.node),jvm.AbstractCanvasElement.apply(this,arguments)},jvm.inherits(jvm.SVGCanvasElement,jvm.SVGElement),jvm.mixin(jvm.SVGCanvasElement,jvm.AbstractCanvasElement),jvm.SVGCanvasElement.prototype.setSize=function(width,height){this.width=width,this.height=height,this.node.setAttribute("width",width),this.node.setAttribute("height",height)},jvm.SVGCanvasElement.prototype.applyTransformParams=function(scale,transX,transY){this.scale=scale,this.transX=transX,this.transY=transY,this.rootElement.node.setAttribute("transform","scale("+scale+") translate("+transX+", "+transY+")")},jvm.SVGShapeElement=function(name,config){jvm.SVGShapeElement.parentClass.call(this,name,config),jvm.AbstractShapeElement.apply(this,arguments)},jvm.inherits(jvm.SVGShapeElement,jvm.SVGElement),jvm.mixin(jvm.SVGShapeElement,jvm.AbstractShapeElement),jvm.SVGShapeElement.prototype.applyAttr=function(attr,value){var patternEl,imageEl,that=this;"fill"===attr&&jvm.isImageUrl(value)?jvm.SVGShapeElement.images[value]?this.applyAttr("fill","url(#image"+jvm.SVGShapeElement.images[value]+")"):jvm.whenImageLoaded(value).then(function(img){imageEl=new jvm.SVGElement("image"),imageEl.node.setAttributeNS("http://www.w3.org/1999/xlink","href",value),imageEl.applyAttr("x","0"),imageEl.applyAttr("y","0"),imageEl.applyAttr("width",img[0].width),imageEl.applyAttr("height",img[0].height),patternEl=new jvm.SVGElement("pattern"),patternEl.applyAttr("id","image"+jvm.SVGShapeElement.imageCounter),patternEl.applyAttr("x",0),patternEl.applyAttr("y",0),patternEl.applyAttr("width",img[0].width/2),patternEl.applyAttr("height",img[0].height/2),patternEl.applyAttr("viewBox","0 0 "+img[0].width+" "+img[0].height),patternEl.applyAttr("patternUnits","userSpaceOnUse"),patternEl.node.appendChild(imageEl.node),that.canvas.defsElement.node.appendChild(patternEl.node),jvm.SVGShapeElement.images[value]=jvm.SVGShapeElement.imageCounter++,that.applyAttr("fill","url(#image"+jvm.SVGShapeElement.images[value]+")")}):jvm.SVGShapeElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.SVGShapeElement.imageCounter=1,jvm.SVGShapeElement.images={},jvm.SVGPathElement=function(config,style){jvm.SVGPathElement.parentClass.call(this,"path",config,style),this.node.setAttribute("fill-rule","evenodd")},jvm.inherits(jvm.SVGPathElement,jvm.SVGShapeElement),jvm.SVGCircleElement=function(config,style){jvm.SVGCircleElement.parentClass.call(this,"circle",config,style)},jvm.inherits(jvm.SVGCircleElement,jvm.SVGShapeElement),jvm.SVGImageElement=function(config,style){jvm.SVGImageElement.parentClass.call(this,"image",config,style)},jvm.inherits(jvm.SVGImageElement,jvm.SVGShapeElement),jvm.SVGImageElement.prototype.applyAttr=function(attr,value){var that=this;"image"==attr?jvm.whenImageLoaded(value).then(function(img){that.node.setAttributeNS("http://www.w3.org/1999/xlink","href",value),that.width=img[0].width,that.height=img[0].height,that.applyAttr("width",that.width),that.applyAttr("height",that.height),that.applyAttr("x",that.cx-that.width/2),that.applyAttr("y",that.cy-that.height/2),jvm.$(that.node).trigger("imageloaded",[img])}):"cx"==attr?(this.cx=value,this.width&&this.applyAttr("x",value-this.width/2)):"cy"==attr?(this.cy=value,this.height&&this.applyAttr("y",value-this.height/2)):jvm.SVGImageElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.SVGTextElement=function(config,style){jvm.SVGTextElement.parentClass.call(this,"text",config,style)},jvm.inherits(jvm.SVGTextElement,jvm.SVGShapeElement),jvm.SVGTextElement.prototype.applyAttr=function(attr,value){"text"===attr?this.node.textContent=value:jvm.SVGTextElement.parentClass.prototype.applyAttr.apply(this,arguments)},jvm.VMLElement=function(){jvm.VMLElement.VMLInitialized||jvm.VMLElement.initializeVML(),jvm.VMLElement.parentClass.apply(this,arguments)},jvm.inherits(jvm.VMLElement,jvm.AbstractElement),jvm.VMLElement.VMLInitialized=!1,jvm.VMLElement.initializeVML=function(){try{document.namespaces.rvml||document.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),jvm.VMLElement.prototype.createElement=function(tagName){return document.createElement("')}}catch(e){jvm.VMLElement.prototype.createElement=function(tagName){return document.createElement("<"+tagName+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}document.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)"),jvm.VMLElement.VMLInitialized=!0},jvm.VMLElement.prototype.getElementCtr=function(ctr){return jvm["VML"+ctr]},jvm.VMLElement.prototype.addClass=function(className){jvm.$(this.node).addClass(className)},jvm.VMLElement.prototype.applyAttr=function(attr,value){this.node[attr]=value},jvm.VMLElement.prototype.getBBox=function(){var node=jvm.$(this.node);return{x:node.position().left/this.canvas.scale,y:node.position().top/this.canvas.scale,width:node.width()/this.canvas.scale,height:node.height()/this.canvas.scale}},jvm.VMLGroupElement=function(){jvm.VMLGroupElement.parentClass.call(this,"group"),this.node.style.left="0px",this.node.style.top="0px",this.node.coordorigin="0 0"},jvm.inherits(jvm.VMLGroupElement,jvm.VMLElement),jvm.VMLGroupElement.prototype.add=function(element){this.node.appendChild(element.node)},jvm.VMLCanvasElement=function(){this.classPrefix="VML",jvm.VMLCanvasElement.parentClass.call(this,"group"),jvm.AbstractCanvasElement.apply(this,arguments),this.node.style.position="absolute"},jvm.inherits(jvm.VMLCanvasElement,jvm.VMLElement),jvm.mixin(jvm.VMLCanvasElement,jvm.AbstractCanvasElement),jvm.VMLCanvasElement.prototype.setSize=function(width,height){var paths,groups,i,l;if(this.width=width,this.height=height,this.node.style.width=width+"px",this.node.style.height=height+"px",this.node.coordsize=width+" "+height,this.node.coordorigin="0 0",this.rootElement){for(paths=this.rootElement.node.getElementsByTagName("shape"),i=0,l=paths.length;l>i;i++)paths[i].coordsize=width+" "+height,paths[i].style.width=width+"px",paths[i].style.height=height+"px";for(groups=this.node.getElementsByTagName("group"),i=0,l=groups.length;l>i;i++)groups[i].coordsize=width+" "+height,groups[i].style.width=width+"px",groups[i].style.height=height+"px"}},jvm.VMLCanvasElement.prototype.applyTransformParams=function(scale,transX,transY){this.scale=scale,this.transX=transX,this.transY=transY,this.rootElement.node.coordorigin=this.width-transX-this.width/100+","+(this.height-transY-this.height/100),this.rootElement.node.coordsize=this.width/scale+","+this.height/scale},jvm.VMLShapeElement=function(name,config){jvm.VMLShapeElement.parentClass.call(this,name,config),this.fillElement=new jvm.VMLElement("fill"),this.strokeElement=new jvm.VMLElement("stroke"),this.node.appendChild(this.fillElement.node),this.node.appendChild(this.strokeElement.node),this.node.stroked=!1,jvm.AbstractShapeElement.apply(this,arguments)},jvm.inherits(jvm.VMLShapeElement,jvm.VMLElement),jvm.mixin(jvm.VMLShapeElement,jvm.AbstractShapeElement),jvm.VMLShapeElement.prototype.applyAttr=function(attr,value){switch(attr){case"fill":this.node.fillcolor=value;break;case"fill-opacity":this.fillElement.node.opacity=Math.round(100*value)+"%";break;case"stroke":this.node.stroked="none"===value?!1:!0,this.node.strokecolor=value;break;case"stroke-opacity":this.strokeElement.node.opacity=Math.round(100*value)+"%";break;case"stroke-width":this.node.stroked=0===parseInt(value,10)?!1:!0,this.node.strokeweight=value;break;case"d":this.node.path=jvm.VMLPathElement.pathSvgToVml(value);break;default:jvm.VMLShapeElement.parentClass.prototype.applyAttr.apply(this,arguments)}},jvm.VMLPathElement=function(config,style){var scale=new jvm.VMLElement("skew");jvm.VMLPathElement.parentClass.call(this,"shape",config,style),this.node.coordorigin="0 0",scale.node.on=!0,scale.node.matrix="0.01,0,0,0.01,0,0",scale.node.offset="0,0",this.node.appendChild(scale.node)},jvm.inherits(jvm.VMLPathElement,jvm.VMLShapeElement),jvm.VMLPathElement.prototype.applyAttr=function(attr,value){"d"===attr?this.node.path=jvm.VMLPathElement.pathSvgToVml(value):jvm.VMLShapeElement.prototype.applyAttr.call(this,attr,value)},jvm.VMLPathElement.pathSvgToVml=function(path){var ctrlx,ctrly,cx=0,cy=0;return path=path.replace(/(-?\d+)e(-?\d+)/g,"0"),path.replace(/([MmLlHhVvCcSs])\s*((?:-?\d*(?:\.\d+)?\s*,?\s*)+)/g,function(segment,letter,coords){coords=coords.replace(/(\d)-/g,"$1,-").replace(/^\s+/g,"").replace(/\s+$/g,"").replace(/\s+/g,",").split(","),coords[0]||coords.shift();for(var i=0,l=coords.length;l>i;i++)coords[i]=Math.round(100*coords[i]);switch(letter){case"m":return cx+=coords[0],cy+=coords[1],"t"+coords.join(",");case"M":return cx=coords[0],cy=coords[1],"m"+coords.join(",");case"l":return cx+=coords[0],cy+=coords[1],"r"+coords.join(",");case"L":return cx=coords[0],cy=coords[1],"l"+coords.join(",");case"h":return cx+=coords[0],"r"+coords[0]+",0";case"H":return cx=coords[0],"l"+cx+","+cy;case"v":return cy+=coords[0],"r0,"+coords[0];case"V":return cy=coords[0],"l"+cx+","+cy;case"c":return ctrlx=cx+coords[coords.length-4],ctrly=cy+coords[coords.length-3],cx+=coords[coords.length-2],cy+=coords[coords.length-1],"v"+coords.join(",");case"C":return ctrlx=coords[coords.length-4],ctrly=coords[coords.length-3],cx=coords[coords.length-2],cy=coords[coords.length-1],"c"+coords.join(",");case"s":return coords.unshift(cy-ctrly),coords.unshift(cx-ctrlx),ctrlx=cx+coords[coords.length-4],ctrly=cy+coords[coords.length-3],cx+=coords[coords.length-2],cy+=coords[coords.length-1],"v"+coords.join(",");case"S":return coords.unshift(cy+cy-ctrly),coords.unshift(cx+cx-ctrlx),ctrlx=coords[coords.length-4],ctrly=coords[coords.length-3],cx=coords[coords.length-2],cy=coords[coords.length-1],"c"+coords.join(",")}return""}).replace(/z/g,"e")},jvm.VMLCircleElement=function(config,style){jvm.VMLCircleElement.parentClass.call(this,"oval",config,style)},jvm.inherits(jvm.VMLCircleElement,jvm.VMLShapeElement),jvm.VMLCircleElement.prototype.applyAttr=function(attr,value){switch(attr){case"r":this.node.style.width=2*value+"px",this.node.style.height=2*value+"px",this.applyAttr("cx",this.get("cx")||0),this.applyAttr("cy",this.get("cy")||0);break;case"cx":if(!value)return;this.node.style.left=value-(this.get("r")||0)+"px";break;case"cy":if(!value)return;this.node.style.top=value-(this.get("r")||0)+"px";break;default:jvm.VMLCircleElement.parentClass.prototype.applyAttr.call(this,attr,value)}},jvm.VectorCanvas=function(container,width,height){return this.mode=window.SVGAngle?"svg":"vml",this.impl="svg"==this.mode?new jvm.SVGCanvasElement(container,width,height):new jvm.VMLCanvasElement(container,width,height),this.impl.mode=this.mode,this.impl},jvm.SimpleScale=function(scale){this.scale=scale},jvm.SimpleScale.prototype.getValue=function(value){return value},jvm.OrdinalScale=function(scale){this.scale=scale},jvm.OrdinalScale.prototype.getValue=function(value){return this.scale[value]},jvm.OrdinalScale.prototype.getTicks=function(){var key,ticks=[];for(key in this.scale)ticks.push({label:key,value:this.scale[key]});return ticks},jvm.NumericScale=function(scale,normalizeFunction,minValue,maxValue){this.scale=[],normalizeFunction=normalizeFunction||"linear",scale&&this.setScale(scale),normalizeFunction&&this.setNormalizeFunction(normalizeFunction),"undefined"!=typeof minValue&&this.setMin(minValue),"undefined"!=typeof maxValue&&this.setMax(maxValue)},jvm.NumericScale.prototype={setMin:function(min){this.clearMinValue=min,this.minValue="function"==typeof this.normalize?this.normalize(min):min},setMax:function(max){this.clearMaxValue=max,this.maxValue="function"==typeof this.normalize?this.normalize(max):max},setScale:function(scale){var i;for(this.scale=[],i=0;i=0;)value-=lengthes[i],i++;return value=this.vectorToNum(i==this.scale.length-1?this.scale[i]:this.vectorAdd(this.scale[i],this.vectorMult(this.vectorSubtract(this.scale[i+1],this.scale[i]),value/lengthes[i])))},vectorToNum:function(vector){var i,num=0;for(i=0;i=err?step*=10:.35>=err?step*=5:.75>=err&&(step*=2),extent[0]=Math.floor(extent[0]/step)*step,extent[1]=Math.ceil(extent[1]/step)*step,tick=extent[0];tick<=extent[1];)v=tick==extent[0]?this.clearMinValue:tick==extent[1]?this.clearMaxValue:tick,ticks.push({label:tick,value:this.getValue(v)}),tick+=step;return ticks}},jvm.ColorScale=function(){jvm.ColorScale.parentClass.apply(this,arguments)},jvm.inherits(jvm.ColorScale,jvm.NumericScale),jvm.ColorScale.prototype.setScale=function(scale){var i;for(i=0;i"),this.body.addClass("jvectormap-legend"),this.params.cssClass&&this.body.addClass(this.params.cssClass),params.vertical?this.map.legendCntVertical.append(this.body):this.map.legendCntHorizontal.append(this.body),this.render()},jvm.Legend.prototype.render=function(){var i,tick,sample,label,ticks=this.series.scale.getTicks(),inner=jvm.$("
").addClass("jvectormap-legend-inner");for(this.body.html(""),this.params.title&&this.body.append(jvm.$("
").addClass("jvectormap-legend-title").html(this.params.title)),this.body.append(inner),i=0;i").addClass("jvectormap-legend-tick"),sample=jvm.$("
").addClass("jvectormap-legend-tick-sample"),this.series.params.attribute){case"fill":jvm.isImageUrl(ticks[i].value)?sample.css("background","url("+ticks[i].value+")"):sample.css("background",ticks[i].value);break;case"stroke":sample.css("background",ticks[i].value);break;case"image":sample.css("background","url("+ticks[i].value+") no-repeat center center");break;case"r":jvm.$("
").css({"border-radius":ticks[i].value,border:this.map.params.markerStyle.initial["stroke-width"]+"px "+this.map.params.markerStyle.initial.stroke+" solid",width:2*ticks[i].value+"px",height:2*ticks[i].value+"px",background:this.map.params.markerStyle.initial.fill}).appendTo(sample)}tick.append(sample),label=ticks[i].label,this.params.labelRender&&(label=this.params.labelRender(label)),tick.append(jvm.$("
"+label+"
").addClass("jvectormap-legend-tick-text")),inner.append(tick)}inner.append(jvm.$("
").css("clear","both"))},jvm.DataSeries=function(params,elements,map){var scaleConstructor;params=params||{},params.attribute=params.attribute||"fill",this.elements=elements,this.params=params,this.map=map,params.attributes&&this.setAttributes(params.attributes),jvm.$.isArray(params.scale)?(scaleConstructor="fill"===params.attribute||"stroke"===params.attribute?jvm.ColorScale:jvm.NumericScale,this.scale=new scaleConstructor(params.scale,params.normalizeFunction,params.min,params.max)):this.scale=params.scale?new jvm.OrdinalScale(params.scale):new jvm.SimpleScale(params.scale),this.values=params.values||{},this.setValues(this.values),this.params.legend&&(this.legend=new jvm.Legend($.extend({map:this.map,series:this},this.params.legend)))},jvm.DataSeries.prototype={setAttributes:function(key,attr){var code,attrs=key;if("string"==typeof key)this.elements[key]&&this.elements[key].setStyle(this.params.attribute,attr);else for(code in attrs)this.elements[code]&&this.elements[code].element.setStyle(this.params.attribute,attrs[code])},setValues:function(values){var val,cc,max=-Number.MAX_VALUE,min=Number.MAX_VALUE,attrs={};if(this.scale instanceof jvm.OrdinalScale||this.scale instanceof jvm.SimpleScale)for(cc in values)attrs[cc]=values[cc]?this.scale.getValue(values[cc]):this.elements[cc].element.style.initial[this.params.attribute];else{if("undefined"==typeof this.params.min||"undefined"==typeof this.params.max)for(cc in values)val=parseFloat(values[cc]),val>max&&(max=val),min>val&&(min=val);"undefined"==typeof this.params.min?(this.scale.setMin(min),this.params.min=min):this.scale.setMin(this.params.min),"undefined"==typeof this.params.max?(this.scale.setMax(max),this.params.max=max):this.scale.setMax(this.params.max);for(cc in values)"indexOf"!=cc&&(val=parseFloat(values[cc]),attrs[cc]=isNaN(val)?this.elements[cc].element.style.initial[this.params.attribute]:this.scale.getValue(val))}this.setAttributes(attrs),jvm.$.extend(this.values,values)},clear:function(){var key,attrs={};for(key in this.values)this.elements[key]&&(attrs[key]=this.elements[key].element.shape.style.initial[this.params.attribute]);this.setAttributes(attrs),this.values={}},setScale:function(scale){this.scale.setScale(scale),this.values&&this.setValues(this.values)},setNormalizeFunction:function(f){this.scale.setNormalizeFunction(f),this.values&&this.setValues(this.values)}},jvm.Proj={degRad:180/Math.PI,radDeg:Math.PI/180,radius:6381372,sgn:function(n){return n>0?1:0>n?-1:n},mill:function(lat,lng,c){return{x:this.radius*(lng-c)*this.radDeg,y:-this.radius*Math.log(Math.tan((45+.4*lat)*this.radDeg))/.8}},mill_inv:function(x,y,c){return{lat:(2.5*Math.atan(Math.exp(.8*y/this.radius))-5*Math.PI/8)*this.degRad,lng:(c*this.radDeg+x/this.radius)*this.degRad}},merc:function(lat,lng,c){return{x:this.radius*(lng-c)*this.radDeg,y:-this.radius*Math.log(Math.tan(Math.PI/4+lat*Math.PI/360))}},merc_inv:function(x,y,c){return{lat:(2*Math.atan(Math.exp(y/this.radius))-Math.PI/2)*this.degRad,lng:(c*this.radDeg+x/this.radius)*this.degRad}},aea:function(lat,lng,c){var fi0=0,lambda0=c*this.radDeg,fi1=29.5*this.radDeg,fi2=45.5*this.radDeg,fi=lat*this.radDeg,lambda=lng*this.radDeg,n=(Math.sin(fi1)+Math.sin(fi2))/2,C=Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),theta=n*(lambda-lambda0),ro=Math.sqrt(C-2*n*Math.sin(fi))/n,ro0=Math.sqrt(C-2*n*Math.sin(fi0))/n;return{x:ro*Math.sin(theta)*this.radius,y:-(ro0-ro*Math.cos(theta))*this.radius}},aea_inv:function(xCoord,yCoord,c){var x=xCoord/this.radius,y=yCoord/this.radius,fi0=0,lambda0=c*this.radDeg,fi1=29.5*this.radDeg,fi2=45.5*this.radDeg,n=(Math.sin(fi1)+Math.sin(fi2))/2,C=Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),ro0=Math.sqrt(C-2*n*Math.sin(fi0))/n,ro=Math.sqrt(x*x+(ro0-y)*(ro0-y)),theta=Math.atan(x/(ro0-y));return{lat:Math.asin((C-ro*ro*n*n)/(2*n))*this.degRad,lng:(lambda0+theta/n)*this.degRad}},lcc:function(lat,lng,c){var fi0=0,lambda0=c*this.radDeg,lambda=lng*this.radDeg,fi1=33*this.radDeg,fi2=45*this.radDeg,fi=lat*this.radDeg,n=Math.log(Math.cos(fi1)*(1/Math.cos(fi2)))/Math.log(Math.tan(Math.PI/4+fi2/2)*(1/Math.tan(Math.PI/4+fi1/2))),F=Math.cos(fi1)*Math.pow(Math.tan(Math.PI/4+fi1/2),n)/n,ro=F*Math.pow(1/Math.tan(Math.PI/4+fi/2),n),ro0=F*Math.pow(1/Math.tan(Math.PI/4+fi0/2),n);return{x:ro*Math.sin(n*(lambda-lambda0))*this.radius,y:-(ro0-ro*Math.cos(n*(lambda-lambda0)))*this.radius}},lcc_inv:function(xCoord,yCoord,c){var x=xCoord/this.radius,y=yCoord/this.radius,fi0=0,lambda0=c*this.radDeg,fi1=33*this.radDeg,fi2=45*this.radDeg,n=Math.log(Math.cos(fi1)*(1/Math.cos(fi2)))/Math.log(Math.tan(Math.PI/4+fi2/2)*(1/Math.tan(Math.PI/4+fi1/2))),F=Math.cos(fi1)*Math.pow(Math.tan(Math.PI/4+fi1/2),n)/n,ro0=F*Math.pow(1/Math.tan(Math.PI/4+fi0/2),n),ro=this.sgn(n)*Math.sqrt(x*x+(ro0-y)*(ro0-y)),theta=Math.atan(x/(ro0-y));return{lat:(2*Math.atan(Math.pow(F/ro,1/n))-Math.PI/2)*this.degRad,lng:(lambda0+theta/n)*this.degRad}}},jvm.MapObject=function(){},jvm.MapObject.prototype.getLabelText=function(key){var text;return text=this.config.label?"function"==typeof this.config.label.render?this.config.label.render(key):key:null},jvm.MapObject.prototype.getLabelOffsets=function(key){var offsets;return this.config.label&&("function"==typeof this.config.label.offsets?offsets=this.config.label.offsets(key):"object"==typeof this.config.label.offsets&&(offsets=this.config.label.offsets[key])),offsets||[0,0]},jvm.MapObject.prototype.setHovered=function(isHovered){this.isHovered!==isHovered&&(this.isHovered=isHovered,this.shape.isHovered=isHovered,this.shape.updateStyle(),this.label&&(this.label.isHovered=isHovered,this.label.updateStyle()))},jvm.MapObject.prototype.setSelected=function(isSelected){this.isSelected!==isSelected&&(this.isSelected=isSelected,this.shape.isSelected=isSelected,this.shape.updateStyle(),this.label&&(this.label.isSelected=isSelected,this.label.updateStyle()),jvm.$(this.shape).trigger("selected",[isSelected]))},jvm.MapObject.prototype.setStyle=function(){this.shape.setStyle.apply(this.shape,arguments)},jvm.MapObject.prototype.remove=function(){this.shape.remove(),this.label&&this.label.remove()},jvm.Region=function(config){var bbox,text,offsets;this.config=config,this.map=this.config.map,this.shape=config.canvas.addPath({d:config.path,"data-code":config.code},config.style,config.canvas.rootElement),this.shape.addClass("jvectormap-region jvectormap-element"),bbox=this.shape.getBBox(),text=this.getLabelText(config.code), -this.config.label&&text&&(offsets=this.getLabelOffsets(config.code),this.labelX=bbox.x+bbox.width/2+offsets[0],this.labelY=bbox.y+bbox.height/2+offsets[1],this.label=config.canvas.addText({text:text,"text-anchor":"middle","alignment-baseline":"central",x:this.labelX,y:this.labelY,"data-code":config.code},config.labelStyle,config.labelsGroup),this.label.addClass("jvectormap-region jvectormap-element"))},jvm.inherits(jvm.Region,jvm.MapObject),jvm.Region.prototype.updateLabelPosition=function(){this.label&&this.label.set({x:this.labelX*this.map.scale+this.map.transX*this.map.scale,y:this.labelY*this.map.scale+this.map.transY*this.map.scale})},jvm.Marker=function(config){var text;this.config=config,this.map=this.config.map,this.isImage=!!this.config.style.initial.image,this.createShape(),text=this.getLabelText(config.index),this.config.label&&text&&(this.offsets=this.getLabelOffsets(config.index),this.labelX=config.cx/this.map.scale-this.map.transX,this.labelY=config.cy/this.map.scale-this.map.transY,this.label=config.canvas.addText({text:text,"data-index":config.index,dy:"0.6ex",x:this.labelX,y:this.labelY},config.labelStyle,config.labelsGroup),this.label.addClass("jvectormap-marker jvectormap-element"))},jvm.inherits(jvm.Marker,jvm.MapObject),jvm.Marker.prototype.createShape=function(){var that=this;this.shape&&this.shape.remove(),this.shape=this.config.canvas[this.isImage?"addImage":"addCircle"]({"data-index":this.config.index,cx:this.config.cx,cy:this.config.cy},this.config.style,this.config.group),this.shape.addClass("jvectormap-marker jvectormap-element"),this.isImage&&jvm.$(this.shape.node).on("imageloaded",function(){that.updateLabelPosition()})},jvm.Marker.prototype.updateLabelPosition=function(){this.label&&this.label.set({x:this.labelX*this.map.scale+this.offsets[0]+this.map.transX*this.map.scale+5+(this.isImage?(this.shape.width||0)/2:this.shape.properties.r),y:this.labelY*this.map.scale+this.map.transY*this.map.scale+this.offsets[1]})},jvm.Marker.prototype.setStyle=function(property){var isImage;jvm.Marker.parentClass.prototype.setStyle.apply(this,arguments),"r"===property&&this.updateLabelPosition(),isImage=!!this.shape.get("image"),isImage!=this.isImage&&(this.isImage=isImage,this.config.style=jvm.$.extend(!0,{},this.shape.style),this.createShape())},jvm.Map=function(params){var e,map=this;if(this.params=jvm.$.extend(!0,{},jvm.Map.defaultParams,params),!jvm.Map.maps[this.params.map])throw new Error("Attempt to use map which was not loaded: "+this.params.map);this.mapData=jvm.Map.maps[this.params.map],this.markers={},this.regions={},this.regionsColors={},this.regionsData={},this.container=jvm.$("
").addClass("jvectormap-container"),this.params.container&&this.params.container.append(this.container),this.container.data("mapObject",this),this.defaultWidth=this.mapData.width,this.defaultHeight=this.mapData.height,this.setBackgroundColor(this.params.backgroundColor),this.onResize=function(){map.updateSize()},jvm.$(window).resize(this.onResize);for(e in jvm.Map.apiEvents)this.params[e]&&this.container.bind(jvm.Map.apiEvents[e]+".jvectormap",this.params[e]);this.canvas=new jvm.VectorCanvas(this.container[0],this.width,this.height),this.params.bindTouchEvents&&("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch?this.bindContainerTouchEvents():window.MSGesture&&this.bindContainerPointerEvents()),this.bindContainerEvents(),this.bindElementEvents(),this.createTip(),this.params.zoomButtons&&this.bindZoomButtons(),this.createRegions(),this.createMarkers(this.params.markers||{}),this.updateSize(),this.params.focusOn&&("string"==typeof this.params.focusOn?this.params.focusOn={region:this.params.focusOn}:jvm.$.isArray(this.params.focusOn)&&(this.params.focusOn={regions:this.params.focusOn}),this.setFocus(this.params.focusOn)),this.params.selectedRegions&&this.setSelectedRegions(this.params.selectedRegions),this.params.selectedMarkers&&this.setSelectedMarkers(this.params.selectedMarkers),this.legendCntHorizontal=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-h"),this.legendCntVertical=jvm.$("
").addClass("jvectormap-legend-cnt jvectormap-legend-cnt-v"),this.container.append(this.legendCntHorizontal),this.container.append(this.legendCntVertical),this.params.series&&this.createSeries()},jvm.Map.prototype={transX:0,transY:0,scale:1,baseTransX:0,baseTransY:0,baseScale:1,width:0,height:0,setBackgroundColor:function(backgroundColor){this.container.css("background-color",backgroundColor)},resize:function(){var curBaseScale=this.baseScale;this.width/this.height>this.defaultWidth/this.defaultHeight?(this.baseScale=this.height/this.defaultHeight,this.baseTransX=Math.abs(this.width-this.defaultWidth*this.baseScale)/(2*this.baseScale)):(this.baseScale=this.width/this.defaultWidth,this.baseTransY=Math.abs(this.height-this.defaultHeight*this.baseScale)/(2*this.baseScale)),this.scale*=this.baseScale/curBaseScale,this.transX*=this.baseScale/curBaseScale,this.transY*=this.baseScale/curBaseScale},updateSize:function(){this.width=this.container.width(),this.height=this.container.height(),this.resize(),this.canvas.setSize(this.width,this.height),this.applyTransform()},reset:function(){var key,i;for(key in this.series)for(i=0;imaxTransY?this.transY=maxTransY:this.transYmaxTransX?this.transX=maxTransX:this.transXtouches[1].pageX?touches[1].pageX+(touches[0].pageX-touches[1].pageX)/2:touches[0].pageX+(touches[1].pageX-touches[0].pageX)/2,centerTouchY=touches[0].pageY>touches[1].pageY?touches[1].pageY+(touches[0].pageY-touches[1].pageY)/2:touches[0].pageY+(touches[1].pageY-touches[0].pageY)/2,centerTouchX-=offset.left,centerTouchY-=offset.top,touchStartScale=map.scale,touchStartDistance=Math.sqrt(Math.pow(touches[0].pageX-touches[1].pageX,2)+Math.pow(touches[0].pageY-touches[1].pageY,2)))),lastTouchesLength=touches.length};jvm.$(this.container).bind("touchstart",handleTouchEvent),jvm.$(this.container).bind("touchmove",handleTouchEvent)},bindContainerPointerEvents:function(){var map=this,gesture=new MSGesture,element=this.container[0],handlePointerDownEvent=function(e){gesture.addPointer(e.pointerId)},handleGestureEvent=function(e){var transXOld,transYOld;(0!=e.translationX||0!=e.translationY)&&(transXOld=map.transX,transYOld=map.transY,map.transX+=e.translationX/map.scale,map.transY+=e.translationY/map.scale,map.applyTransform(),map.tip.hide(),(transXOld!=map.transX||transYOld!=map.transY)&&e.preventDefault()),1!=e.scale&&(map.setScale(map.scale*e.scale,e.offsetX,e.offsetY),map.tip.hide(),e.preventDefault())};gesture.target=element,element.addEventListener("MSGestureChange",handleGestureEvent,!1),element.addEventListener("pointerdown",handlePointerDownEvent,!1)},bindElementEvents:function(){var pageX,pageY,mouseMoved,map=this;this.container.mousemove(function(e){Math.abs(pageX-e.pageX)+Math.abs(pageY-e.pageY)>2&&(mouseMoved=!0)}),this.container.delegate("[class~='jvectormap-element']","mouseover mouseout",function(e){var baseVal=jvm.$(this).attr("class").baseVal||jvm.$(this).attr("class"),type=-1===baseVal.indexOf("jvectormap-region")?"marker":"region",code=jvm.$(this).attr("region"==type?"data-code":"data-index"),element="region"==type?map.regions[code].element:map.markers[code].element,tipText="region"==type?map.mapData.paths[code].name:map.markers[code].config.name||"",tipShowEvent=jvm.$.Event(type+"TipShow.jvectormap"),overEvent=jvm.$.Event(type+"Over.jvectormap");"mouseover"==e.type?(map.container.trigger(overEvent,[code]),overEvent.isDefaultPrevented()||element.setHovered(!0),map.tip.text(tipText),map.container.trigger(tipShowEvent,[map.tip,code]),tipShowEvent.isDefaultPrevented()||(map.tip.show(),map.tipWidth=map.tip.width(),map.tipHeight=map.tip.height())):(element.setHovered(!1),map.tip.hide(),map.container.trigger(type+"Out.jvectormap",[code]))}),this.container.delegate("[class~='jvectormap-element']","mousedown",function(e){pageX=e.pageX,pageY=e.pageY,mouseMoved=!1}),this.container.delegate("[class~='jvectormap-element']","mouseup",function(){var baseVal=jvm.$(this).attr("class").baseVal?jvm.$(this).attr("class").baseVal:jvm.$(this).attr("class"),type=-1===baseVal.indexOf("jvectormap-region")?"marker":"region",code=jvm.$(this).attr("region"==type?"data-code":"data-index"),clickEvent=jvm.$.Event(type+"Click.jvectormap"),element="region"==type?map.regions[code].element:map.markers[code].element;mouseMoved||(map.container.trigger(clickEvent,[code]),("region"===type&&map.params.regionsSelectable||"marker"===type&&map.params.markersSelectable)&&(clickEvent.isDefaultPrevented()||(map.params[type+"sSelectableOne"]&&map.clearSelected(type+"s"),element.setSelected(!element.isSelected))))})},bindZoomButtons:function(){var map=this;jvm.$("
").addClass("jvectormap-zoomin").text("+").appendTo(this.container),jvm.$("
").addClass("jvectormap-zoomout").html("−").appendTo(this.container),this.container.find(".jvectormap-zoomin").click(function(){map.setScale(map.scale*map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)}),this.container.find(".jvectormap-zoomout").click(function(){map.setScale(map.scale/map.params.zoomStep,map.width/2,map.height/2,!1,map.params.zoomAnimate)})},createTip:function(){var map=this;this.tip=jvm.$("
").addClass("jvectormap-tip").appendTo(jvm.$("body")),this.container.mousemove(function(e){var left=e.pageX-15-map.tipWidth,top=e.pageY-15-map.tipHeight;5>left&&(left=e.pageX+15),5>top&&(top=e.pageY+15),map.tip.css({left:left,top:top})})},setScale:function(scale,anchorX,anchorY,isCentered,animate){var interval,scaleStart,scaleDiff,transXStart,transXDiff,transYStart,transYDiff,transX,transY,viewportChangeEvent=jvm.$.Event("zoom.jvectormap"),that=this,i=0,count=Math.abs(Math.round(60*(scale-this.scale)/Math.max(scale,this.scale))),deferred=new jvm.$.Deferred;return scale>this.params.zoomMax*this.baseScale?scale=this.params.zoomMax*this.baseScale:scale0?(scaleStart=this.scale,scaleDiff=(scale-scaleStart)/count,transXStart=this.transX*this.scale,transYStart=this.transY*this.scale,transXDiff=(transX*scale-transXStart)/count,transYDiff=(transY*scale-transYStart)/count,interval=setInterval(function(){i+=1,that.scale=scaleStart+scaleDiff*i,that.transX=(transXStart+transXDiff*i)/that.scale,that.transY=(transYStart+transYDiff*i)/that.scale,that.applyTransform(),i==count&&(clearInterval(interval),that.container.trigger(viewportChangeEvent,[scale/that.baseScale]),deferred.resolve())},10)):(this.transX=transX,this.transY=transY,this.scale=scale,this.applyTransform(),this.container.trigger(viewportChangeEvent,[scale/this.baseScale]),deferred.resolve()),deferred},setFocus:function(config){var bbox,itemBbox,newBbox,codes,i,point;if(config=config||{},config.region?codes=[config.region]:config.regions&&(codes=config.regions),codes){for(i=0;ilng&&(lng+=360),point=jvm.Proj[proj.type](lat,lng,centralMeridian),inset=this.getInsetForPoint(point.x,point.y),inset?(bbox=inset.bbox,point.x=(point.x-bbox[0].x)/(bbox[1].x-bbox[0].x)*inset.width*this.scale,point.y=(point.y-bbox[0].y)/(bbox[1].y-bbox[0].y)*inset.height*this.scale,{x:point.x+this.transX*this.scale+inset.left*this.scale,y:point.y+this.transY*this.scale+inset.top*this.scale}):!1},pointToLatLng:function(x,y){var i,inset,bbox,nx,ny,proj=jvm.Map.maps[this.params.map].projection,centralMeridian=proj.centralMeridian,insets=jvm.Map.maps[this.params.map].insets;for(i=0;ibbox[0].x&&nxbbox[0].y&&nybbox[0].x&&xbbox[0].y&&y").addClass("jvectormap-goback").text("Back").appendTo(this.params.container),this.backButton.hide(),this.backButton.click(function(){that.goBack()}),this.spinner=jvm.$("
").addClass("jvectormap-spinner").appendTo(this.params.container),this.spinner.hide()},jvm.MultiMap.prototype={addMap:function(name,config){var cnt=jvm.$("
").css({width:"100%",height:"100%"});return this.params.container.append(cnt),this.maps[name]=new jvm.Map(jvm.$.extend(config,{container:cnt})),this.params.maxLevel>config.multiMapLevel&&this.maps[name].container.on("regionClick.jvectormap",{scope:this},function(e,code){var multimap=e.data.scope,mapName=multimap.params.mapNameByCode(code,multimap);multimap.drillDownPromise&&"pending"===multimap.drillDownPromise.state()||multimap.drillDown(mapName,code)}),this.maps[name]},downloadMap:function(code){var that=this,deferred=jvm.$.Deferred();return this.mapsLoaded[code]?deferred.resolve():jvm.$.get(this.params.mapUrlByCode(code,this)).then(function(){that.mapsLoaded[code]=!0,deferred.resolve()},function(){deferred.reject()}),deferred},drillDown:function(name,code){var currentMap=this.history[this.history.length-1],that=this,focusPromise=currentMap.setFocus({region:code,animate:!0}),downloadPromise=this.downloadMap(code);focusPromise.then(function(){"pending"===downloadPromise.state()&&that.spinner.show()}),downloadPromise.always(function(){that.spinner.hide()}),this.drillDownPromise=jvm.$.when(downloadPromise,focusPromise),this.drillDownPromise.then(function(){currentMap.params.container.hide(),that.maps[name]?that.maps[name].params.container.show():that.addMap(name,{map:name,multiMapLevel:currentMap.params.multiMapLevel+1}),that.history.push(that.maps[name]),that.backButton.show()})},goBack:function(){var currentMap=this.history.pop(),prevMap=this.history[this.history.length-1],that=this;currentMap.setFocus({scale:1,x:.5,y:.5,animate:!0}).then(function(){currentMap.params.container.hide(),prevMap.params.container.show(),prevMap.updateSize(),1===that.history.length&&that.backButton.hide(),prevMap.setFocus({scale:1,x:.5,y:.5,animate:!0})})}},jvm.MultiMap.defaultParams={mapNameByCode:function(code,multiMap){return code.toLowerCase()+"_"+multiMap.defaultProjection+"_en"},mapUrlByCode:function(code,multiMap){return"jquery-jvectormap-data-"+code.toLowerCase()+"-"+multiMap.defaultProjection+"-en.js"}}; \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/morris.js/morris.css b/app/frontend/static/assets/vendors/morris.js/morris.css deleted file mode 100755 index 209f0915..00000000 --- a/app/frontend/static/assets/vendors/morris.js/morris.css +++ /dev/null @@ -1,2 +0,0 @@ -.morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} -.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} diff --git a/app/frontend/static/assets/vendors/morris.js/morris.min.js b/app/frontend/static/assets/vendors/morris.js/morris.min.js deleted file mode 100755 index c3bda2f9..00000000 --- a/app/frontend/static/assets/vendors/morris.js/morris.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/* @license -morris.js v0.5.0 -Copyright 2014 Olly Smith All rights reserved. -Licensed under the BSD-2-Clause License. -*/ -(function(){var a,b,c,d,e=[].slice,f=function(a,b){return function(){return a.apply(b,arguments)}},g={}.hasOwnProperty,h=function(a,b){function c(){this.constructor=a}for(var d in b)g.call(b,d)&&(a[d]=b[d]);return c.prototype=b.prototype,a.prototype=new c,a.__super__=b.prototype,a},i=[].indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(b in this&&this[b]===a)return b;return-1};b=window.Morris={},a=jQuery,b.EventEmitter=function(){function a(){}return a.prototype.on=function(a,b){return null==this.handlers&&(this.handlers={}),null==this.handlers[a]&&(this.handlers[a]=[]),this.handlers[a].push(b),this},a.prototype.fire=function(){var a,b,c,d,f,g,h;if(c=arguments[0],a=2<=arguments.length?e.call(arguments,1):[],null!=this.handlers&&null!=this.handlers[c]){for(g=this.handlers[c],h=[],d=0,f=g.length;f>d;d++)b=g[d],h.push(b.apply(null,a));return h}},a}(),b.commas=function(a){var b,c,d,e;return null!=a?(d=0>a?"-":"",b=Math.abs(a),c=Math.floor(b).toFixed(0),d+=c.replace(/(?=(?:\d{3})+$)(?!^)/g,","),e=b.toString(),e.length>c.length&&(d+=e.slice(c.length)),d):"-"},b.pad2=function(a){return(10>a?"0":"")+a},b.Grid=function(c){function d(b){this.resizeHandler=f(this.resizeHandler,this);var c=this;if(this.el="string"==typeof b.element?a(document.getElementById(b.element)):a(b.element),null==this.el||0===this.el.length)throw new Error("Graph container element not found");"static"===this.el.css("position")&&this.el.css("position","relative"),this.options=a.extend({},this.gridDefaults,this.defaults||{},b),"string"==typeof this.options.units&&(this.options.postUnits=b.units),this.raphael=new Raphael(this.el[0]),this.elementWidth=null,this.elementHeight=null,this.dirty=!1,this.selectFrom=null,this.init&&this.init(),this.setData(this.options.data),this.el.bind("mousemove",function(a){var b,d,e,f,g;return d=c.el.offset(),g=a.pageX-d.left,c.selectFrom?(b=c.data[c.hitTest(Math.min(g,c.selectFrom))]._x,e=c.data[c.hitTest(Math.max(g,c.selectFrom))]._x,f=e-b,c.selectionRect.attr({x:b,width:f})):c.fire("hovermove",g,a.pageY-d.top)}),this.el.bind("mouseleave",function(){return c.selectFrom&&(c.selectionRect.hide(),c.selectFrom=null),c.fire("hoverout")}),this.el.bind("touchstart touchmove touchend",function(a){var b,d;return d=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0],b=c.el.offset(),c.fire("hovermove",d.pageX-b.left,d.pageY-b.top)}),this.el.bind("click",function(a){var b;return b=c.el.offset(),c.fire("gridclick",a.pageX-b.left,a.pageY-b.top)}),this.options.rangeSelect&&(this.selectionRect=this.raphael.rect(0,0,0,this.el.innerHeight()).attr({fill:this.options.rangeSelectColor,stroke:!1}).toBack().hide(),this.el.bind("mousedown",function(a){var b;return b=c.el.offset(),c.startRange(a.pageX-b.left)}),this.el.bind("mouseup",function(a){var b;return b=c.el.offset(),c.endRange(a.pageX-b.left),c.fire("hovermove",a.pageX-b.left,a.pageY-b.top)})),this.options.resize&&a(window).bind("resize",function(){return null!=c.timeoutId&&window.clearTimeout(c.timeoutId),c.timeoutId=window.setTimeout(c.resizeHandler,100)}),this.el.css("-webkit-tap-highlight-color","rgba(0,0,0,0)"),this.postInit&&this.postInit()}return h(d,c),d.prototype.gridDefaults={dateFormat:null,axes:!0,grid:!0,gridLineColor:"#aaa",gridStrokeWidth:.5,gridTextColor:"#888",gridTextSize:12,gridTextFamily:"sans-serif",gridTextWeight:"normal",hideHover:!1,yLabelFormat:null,xLabelAngle:0,numLines:5,padding:25,parseTime:!0,postUnits:"",preUnits:"",ymax:"auto",ymin:"auto 0",goals:[],goalStrokeWidth:1,goalLineColors:["#666633","#999966","#cc6666","#663333"],events:[],eventStrokeWidth:1,eventLineColors:["#005a04","#ccffbb","#3a5f0b","#005502"],rangeSelect:null,rangeSelectColor:"#eef",resize:!1},d.prototype.setData=function(a,c){var d,e,f,g,h,i,j,k,l,m,n,o,p,q,r;return null==c&&(c=!0),this.options.data=a,null==a||0===a.length?(this.data=[],this.raphael.clear(),null!=this.hover&&this.hover.hide(),void 0):(o=this.cumulative?0:null,p=this.cumulative?0:null,this.options.goals.length>0&&(h=Math.min.apply(Math,this.options.goals),g=Math.max.apply(Math,this.options.goals),p=null!=p?Math.min(p,h):h,o=null!=o?Math.max(o,g):g),this.data=function(){var c,d,g;for(g=[],f=c=0,d=a.length;d>c;f=++c)j=a[f],i={src:j},i.label=j[this.options.xkey],this.options.parseTime?(i.x=b.parseDate(i.label),this.options.dateFormat?i.label=this.options.dateFormat(i.x):"number"==typeof i.label&&(i.label=new Date(i.label).toString())):(i.x=f,this.options.xLabelFormat&&(i.label=this.options.xLabelFormat(i))),l=0,i.y=function(){var a,b,c,d;for(c=this.options.ykeys,d=[],e=a=0,b=c.length;b>a;e=++a)n=c[e],q=j[n],"string"==typeof q&&(q=parseFloat(q)),null!=q&&"number"!=typeof q&&(q=null),null!=q&&(this.cumulative?l+=q:null!=o?(o=Math.max(q,o),p=Math.min(q,p)):o=p=q),this.cumulative&&null!=l&&(o=Math.max(l,o),p=Math.min(l,p)),d.push(q);return d}.call(this),g.push(i);return g}.call(this),this.options.parseTime&&(this.data=this.data.sort(function(a,b){return(a.x>b.x)-(b.x>a.x)})),this.xmin=this.data[0].x,this.xmax=this.data[this.data.length-1].x,this.events=[],this.options.events.length>0&&(this.events=this.options.parseTime?function(){var a,c,e,f;for(e=this.options.events,f=[],a=0,c=e.length;c>a;a++)d=e[a],f.push(b.parseDate(d));return f}.call(this):this.options.events,this.xmax=Math.max(this.xmax,Math.max.apply(Math,this.events)),this.xmin=Math.min(this.xmin,Math.min.apply(Math,this.events))),this.xmin===this.xmax&&(this.xmin-=1,this.xmax+=1),this.ymin=this.yboundary("min",p),this.ymax=this.yboundary("max",o),this.ymin===this.ymax&&(p&&(this.ymin-=1),this.ymax+=1),((r=this.options.axes)===!0||"both"===r||"y"===r||this.options.grid===!0)&&(this.options.ymax===this.gridDefaults.ymax&&this.options.ymin===this.gridDefaults.ymin?(this.grid=this.autoGridLines(this.ymin,this.ymax,this.options.numLines),this.ymin=Math.min(this.ymin,this.grid[0]),this.ymax=Math.max(this.ymax,this.grid[this.grid.length-1])):(k=(this.ymax-this.ymin)/(this.options.numLines-1),this.grid=function(){var a,b,c,d;for(d=[],m=a=b=this.ymin,c=this.ymax;k>0?c>=a:a>=c;m=a+=k)d.push(m);return d}.call(this))),this.dirty=!0,c?this.redraw():void 0)},d.prototype.yboundary=function(a,b){var c,d;return c=this.options["y"+a],"string"==typeof c?"auto"===c.slice(0,4)?c.length>5?(d=parseInt(c.slice(5),10),null==b?d:Math[a](b,d)):null!=b?b:0:parseInt(c,10):c},d.prototype.autoGridLines=function(a,b,c){var d,e,f,g,h,i,j,k,l;return h=b-a,l=Math.floor(Math.log(h)/Math.log(10)),j=Math.pow(10,l),e=Math.floor(a/j)*j,d=Math.ceil(b/j)*j,i=(d-e)/(c-1),1===j&&i>1&&Math.ceil(i)!==i&&(i=Math.ceil(i),d=e+i*(c-1)),0>e&&d>0&&(e=Math.floor(a/i)*i,d=Math.ceil(b/i)*i),1>i?(g=Math.floor(Math.log(i)/Math.log(10)),f=function(){var a,b;for(b=[],k=a=e;i>0?d>=a:a>=d;k=a+=i)b.push(parseFloat(k.toFixed(1-g)));return b}()):f=function(){var a,b;for(b=[],k=a=e;i>0?d>=a:a>=d;k=a+=i)b.push(k);return b}(),f},d.prototype._calc=function(){var a,b,c,d,e,f,g,h;return e=this.el.width(),c=this.el.height(),(this.elementWidth!==e||this.elementHeight!==c||this.dirty)&&(this.elementWidth=e,this.elementHeight=c,this.dirty=!1,this.left=this.options.padding,this.right=this.elementWidth-this.options.padding,this.top=this.options.padding,this.bottom=this.elementHeight-this.options.padding,((g=this.options.axes)===!0||"both"===g||"y"===g)&&(f=function(){var a,c,d,e;for(d=this.grid,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(this.measureText(this.yAxisFormat(b)).width);return e}.call(this),this.left+=Math.max.apply(Math,f)),((h=this.options.axes)===!0||"both"===h||"x"===h)&&(a=function(){var a,b,c;for(c=[],d=a=0,b=this.data.length;b>=0?b>a:a>b;d=b>=0?++a:--a)c.push(this.measureText(this.data[d].text,-this.options.xLabelAngle).height);return c}.call(this),this.bottom-=Math.max.apply(Math,a)),this.width=Math.max(1,this.right-this.left),this.height=Math.max(1,this.bottom-this.top),this.dx=this.width/(this.xmax-this.xmin),this.dy=this.height/(this.ymax-this.ymin),this.calc)?this.calc():void 0},d.prototype.transY=function(a){return this.bottom-(a-this.ymin)*this.dy},d.prototype.transX=function(a){return 1===this.data.length?(this.left+this.right)/2:this.left+(a-this.xmin)*this.dx},d.prototype.redraw=function(){return this.raphael.clear(),this._calc(),this.drawGrid(),this.drawGoals(),this.drawEvents(),this.draw?this.draw():void 0},d.prototype.measureText=function(a,b){var c,d;return null==b&&(b=0),d=this.raphael.text(100,100,a).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).rotate(b),c=d.getBBox(),d.remove(),c},d.prototype.yAxisFormat=function(a){return this.yLabelFormat(a)},d.prototype.yLabelFormat=function(a){return"function"==typeof this.options.yLabelFormat?this.options.yLabelFormat(a):""+this.options.preUnits+b.commas(a)+this.options.postUnits},d.prototype.drawGrid=function(){var a,b,c,d,e,f,g,h;if(this.options.grid!==!1||(e=this.options.axes)===!0||"both"===e||"y"===e){for(f=this.grid,h=[],c=0,d=f.length;d>c;c++)a=f[c],b=this.transY(a),((g=this.options.axes)===!0||"both"===g||"y"===g)&&this.drawYAxisLabel(this.left-this.options.padding/2,b,this.yAxisFormat(a)),this.options.grid?h.push(this.drawGridLine("M"+this.left+","+b+"H"+(this.left+this.width))):h.push(void 0);return h}},d.prototype.drawGoals=function(){var a,b,c,d,e,f,g;for(f=this.options.goals,g=[],c=d=0,e=f.length;e>d;c=++d)b=f[c],a=this.options.goalLineColors[c%this.options.goalLineColors.length],g.push(this.drawGoal(b,a));return g},d.prototype.drawEvents=function(){var a,b,c,d,e,f,g;for(f=this.events,g=[],c=d=0,e=f.length;e>d;c=++d)b=f[c],a=this.options.eventLineColors[c%this.options.eventLineColors.length],g.push(this.drawEvent(b,a));return g},d.prototype.drawGoal=function(a,b){return this.raphael.path("M"+this.left+","+this.transY(a)+"H"+this.right).attr("stroke",b).attr("stroke-width",this.options.goalStrokeWidth)},d.prototype.drawEvent=function(a,b){return this.raphael.path("M"+this.transX(a)+","+this.bottom+"V"+this.top).attr("stroke",b).attr("stroke-width",this.options.eventStrokeWidth)},d.prototype.drawYAxisLabel=function(a,b,c){return this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor).attr("text-anchor","end")},d.prototype.drawGridLine=function(a){return this.raphael.path(a).attr("stroke",this.options.gridLineColor).attr("stroke-width",this.options.gridStrokeWidth)},d.prototype.startRange=function(a){return this.hover.hide(),this.selectFrom=a,this.selectionRect.attr({x:a,width:0}).show()},d.prototype.endRange=function(a){var b,c;return this.selectFrom?(c=Math.min(this.selectFrom,a),b=Math.max(this.selectFrom,a),this.options.rangeSelect.call(this.el,{start:this.data[this.hitTest(c)].x,end:this.data[this.hitTest(b)].x}),this.selectFrom=null):void 0},d.prototype.resizeHandler=function(){return this.timeoutId=null,this.raphael.setSize(this.el.width(),this.el.height()),this.redraw()},d}(b.EventEmitter),b.parseDate=function(a){var b,c,d,e,f,g,h,i,j,k,l;return"number"==typeof a?a:(c=a.match(/^(\d+) Q(\d)$/),e=a.match(/^(\d+)-(\d+)$/),f=a.match(/^(\d+)-(\d+)-(\d+)$/),h=a.match(/^(\d+) W(\d+)$/),i=a.match(/^(\d+)-(\d+)-(\d+)[ T](\d+):(\d+)(Z|([+-])(\d\d):?(\d\d))?$/),j=a.match(/^(\d+)-(\d+)-(\d+)[ T](\d+):(\d+):(\d+(\.\d+)?)(Z|([+-])(\d\d):?(\d\d))?$/),c?new Date(parseInt(c[1],10),3*parseInt(c[2],10)-1,1).getTime():e?new Date(parseInt(e[1],10),parseInt(e[2],10)-1,1).getTime():f?new Date(parseInt(f[1],10),parseInt(f[2],10)-1,parseInt(f[3],10)).getTime():h?(k=new Date(parseInt(h[1],10),0,1),4!==k.getDay()&&k.setMonth(0,1+(4-k.getDay()+7)%7),k.getTime()+6048e5*parseInt(h[2],10)):i?i[6]?(g=0,"Z"!==i[6]&&(g=60*parseInt(i[8],10)+parseInt(i[9],10),"+"===i[7]&&(g=0-g)),Date.UTC(parseInt(i[1],10),parseInt(i[2],10)-1,parseInt(i[3],10),parseInt(i[4],10),parseInt(i[5],10)+g)):new Date(parseInt(i[1],10),parseInt(i[2],10)-1,parseInt(i[3],10),parseInt(i[4],10),parseInt(i[5],10)).getTime():j?(l=parseFloat(j[6]),b=Math.floor(l),d=Math.round(1e3*(l-b)),j[8]?(g=0,"Z"!==j[8]&&(g=60*parseInt(j[10],10)+parseInt(j[11],10),"+"===j[9]&&(g=0-g)),Date.UTC(parseInt(j[1],10),parseInt(j[2],10)-1,parseInt(j[3],10),parseInt(j[4],10),parseInt(j[5],10)+g,b,d)):new Date(parseInt(j[1],10),parseInt(j[2],10)-1,parseInt(j[3],10),parseInt(j[4],10),parseInt(j[5],10),b,d).getTime()):new Date(parseInt(a,10),0,1).getTime())},b.Hover=function(){function c(c){null==c&&(c={}),this.options=a.extend({},b.Hover.defaults,c),this.el=a("
"),this.el.hide(),this.options.parent.append(this.el)}return c.defaults={"class":"morris-hover morris-default-style"},c.prototype.update=function(a,b,c){return a?(this.html(a),this.show(),this.moveTo(b,c)):this.hide()},c.prototype.html=function(a){return this.el.html(a)},c.prototype.moveTo=function(a,b){var c,d,e,f,g,h;return g=this.options.parent.innerWidth(),f=this.options.parent.innerHeight(),d=this.el.outerWidth(),c=this.el.outerHeight(),e=Math.min(Math.max(0,a-d/2),g-d),null!=b?(h=b-c-10,0>h&&(h=b+10,h+c>f&&(h=f/2-c/2))):h=f/2-c/2,this.el.css({left:e+"px",top:parseInt(h)+"px"})},c.prototype.show=function(){return this.el.show()},c.prototype.hide=function(){return this.el.hide()},c}(),b.Line=function(a){function c(a){return this.hilight=f(this.hilight,this),this.onHoverOut=f(this.onHoverOut,this),this.onHoverMove=f(this.onHoverMove,this),this.onGridClick=f(this.onGridClick,this),this instanceof b.Line?(c.__super__.constructor.call(this,a),void 0):new b.Line(a)}return h(c,a),c.prototype.init=function(){return"always"!==this.options.hideHover?(this.hover=new b.Hover({parent:this.el}),this.on("hovermove",this.onHoverMove),this.on("hoverout",this.onHoverOut),this.on("gridclick",this.onGridClick)):void 0},c.prototype.defaults={lineWidth:3,pointSize:4,lineColors:["#0b62a4","#7A92A3","#4da74d","#afd8f8","#edc240","#cb4b4b","#9440ed"],pointStrokeWidths:[1],pointStrokeColors:["#ffffff"],pointFillColors:[],smooth:!0,xLabels:"auto",xLabelFormat:null,xLabelMargin:24,hideHover:!1},c.prototype.calc=function(){return this.calcPoints(),this.generatePaths()},c.prototype.calcPoints=function(){var a,b,c,d,e,f;for(e=this.data,f=[],c=0,d=e.length;d>c;c++)a=e[c],a._x=this.transX(a.x),a._y=function(){var c,d,e,f;for(e=a.y,f=[],c=0,d=e.length;d>c;c++)b=e[c],null!=b?f.push(this.transY(b)):f.push(b);return f}.call(this),f.push(a._ymax=Math.min.apply(Math,[this.bottom].concat(function(){var c,d,e,f;for(e=a._y,f=[],c=0,d=e.length;d>c;c++)b=e[c],null!=b&&f.push(b);return f}())));return f},c.prototype.hitTest=function(a){var b,c,d,e,f;if(0===this.data.length)return null;for(f=this.data.slice(1),b=d=0,e=f.length;e>d&&(c=f[b],!(a<(c._x+this.data[b]._x)/2));b=++d);return b},c.prototype.onGridClick=function(a,b){var c;return c=this.hitTest(a),this.fire("click",c,this.data[c].src,a,b)},c.prototype.onHoverMove=function(a){var b;return b=this.hitTest(a),this.displayHoverForRow(b)},c.prototype.onHoverOut=function(){return this.options.hideHover!==!1?this.displayHoverForRow(null):void 0},c.prototype.displayHoverForRow=function(a){var b;return null!=a?((b=this.hover).update.apply(b,this.hoverContentForRow(a)),this.hilight(a)):(this.hover.hide(),this.hilight())},c.prototype.hoverContentForRow=function(a){var b,c,d,e,f,g,h;for(d=this.data[a],b="
"+d.label+"
",h=d.y,c=f=0,g=h.length;g>f;c=++f)e=h[c],b+="
\n "+this.options.labels[c]+":\n "+this.yLabelFormat(e)+"\n
";return"function"==typeof this.options.hoverCallback&&(b=this.options.hoverCallback(a,this.options,b,d.src)),[b,d._x,d._ymax]},c.prototype.generatePaths=function(){var a,c,d,e;return this.paths=function(){var f,g,h,j;for(j=[],c=f=0,g=this.options.ykeys.length;g>=0?g>f:f>g;c=g>=0?++f:--f)e="boolean"==typeof this.options.smooth?this.options.smooth:(h=this.options.ykeys[c],i.call(this.options.smooth,h)>=0),a=function(){var a,b,e,f;for(e=this.data,f=[],a=0,b=e.length;b>a;a++)d=e[a],void 0!==d._y[c]&&f.push({x:d._x,y:d._y[c]});return f}.call(this),a.length>1?j.push(b.Line.createPath(a,e,this.bottom)):j.push(null);return j}.call(this)},c.prototype.draw=function(){var a;return((a=this.options.axes)===!0||"both"===a||"x"===a)&&this.drawXAxis(),this.drawSeries(),this.options.hideHover===!1?this.displayHoverForRow(this.data.length-1):void 0},c.prototype.drawXAxis=function(){var a,c,d,e,f,g,h,i,j,k,l=this;for(h=this.bottom+this.options.padding/2,f=null,e=null,a=function(a,b){var c,d,g,i,j;return c=l.drawXAxisLabel(l.transX(b),h,a),j=c.getBBox(),c.transform("r"+-l.options.xLabelAngle),d=c.getBBox(),c.transform("t0,"+d.height/2+"..."),0!==l.options.xLabelAngle&&(i=-.5*j.width*Math.cos(l.options.xLabelAngle*Math.PI/180),c.transform("t"+i+",0...")),d=c.getBBox(),(null==f||f>=d.x+d.width||null!=e&&e>=d.x)&&d.x>=0&&d.x+d.widtha;a++)g=c[a],d.push([g.label,g.x]);return d}.call(this),d.reverse(),k=[],i=0,j=d.length;j>i;i++)c=d[i],k.push(a(c[0],c[1]));return k},c.prototype.drawSeries=function(){var a,b,c,d,e,f;for(this.seriesPoints=[],a=b=d=this.options.ykeys.length-1;0>=d?0>=b:b>=0;a=0>=d?++b:--b)this._drawLineFor(a);for(f=[],a=c=e=this.options.ykeys.length-1;0>=e?0>=c:c>=0;a=0>=e?++c:--c)f.push(this._drawPointFor(a));return f},c.prototype._drawPointFor=function(a){var b,c,d,e,f,g;for(this.seriesPoints[a]=[],f=this.data,g=[],d=0,e=f.length;e>d;d++)c=f[d],b=null,null!=c._y[a]&&(b=this.drawLinePoint(c._x,c._y[a],this.colorFor(c,a,"point"),a)),g.push(this.seriesPoints[a].push(b));return g},c.prototype._drawLineFor=function(a){var b;return b=this.paths[a],null!==b?this.drawLinePath(b,this.colorFor(null,a,"line"),a):void 0},c.createPath=function(a,c,d){var e,f,g,h,i,j,k,l,m,n,o,p,q,r;for(k="",c&&(g=b.Line.gradients(a)),l={y:null},h=q=0,r=a.length;r>q;h=++q)e=a[h],null!=e.y&&(null!=l.y?c?(f=g[h],j=g[h-1],i=(e.x-l.x)/4,m=l.x+i,o=Math.min(d,l.y+i*j),n=e.x-i,p=Math.min(d,e.y-i*f),k+="C"+m+","+o+","+n+","+p+","+e.x+","+e.y):k+="L"+e.x+","+e.y:c&&null==g[h]||(k+="M"+e.x+","+e.y)),l=e;return k},c.gradients=function(a){var b,c,d,e,f,g,h,i;for(c=function(a,b){return(a.y-b.y)/(a.x-b.x)},i=[],d=g=0,h=a.length;h>g;d=++g)b=a[d],null!=b.y?(e=a[d+1]||{y:null},f=a[d-1]||{y:null},null!=f.y&&null!=e.y?i.push(c(f,e)):null!=f.y?i.push(c(f,b)):null!=e.y?i.push(c(b,e)):i.push(null)):i.push(null);return i},c.prototype.hilight=function(a){var b,c,d,e,f;if(null!==this.prevHilight&&this.prevHilight!==a)for(b=c=0,e=this.seriesPoints.length-1;e>=0?e>=c:c>=e;b=e>=0?++c:--c)this.seriesPoints[b][this.prevHilight]&&this.seriesPoints[b][this.prevHilight].animate(this.pointShrinkSeries(b));if(null!==a&&this.prevHilight!==a)for(b=d=0,f=this.seriesPoints.length-1;f>=0?f>=d:d>=f;b=f>=0?++d:--d)this.seriesPoints[b][a]&&this.seriesPoints[b][a].animate(this.pointGrowSeries(b));return this.prevHilight=a},c.prototype.colorFor=function(a,b,c){return"function"==typeof this.options.lineColors?this.options.lineColors.call(this,a,b,c):"point"===c?this.options.pointFillColors[b%this.options.pointFillColors.length]||this.options.lineColors[b%this.options.lineColors.length]:this.options.lineColors[b%this.options.lineColors.length]},c.prototype.drawXAxisLabel=function(a,b,c){return this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor)},c.prototype.drawLinePath=function(a,b,c){return this.raphael.path(a).attr("stroke",b).attr("stroke-width",this.lineWidthForSeries(c))},c.prototype.drawLinePoint=function(a,b,c,d){return this.raphael.circle(a,b,this.pointSizeForSeries(d)).attr("fill",c).attr("stroke-width",this.pointStrokeWidthForSeries(d)).attr("stroke",this.pointStrokeColorForSeries(d))},c.prototype.pointStrokeWidthForSeries=function(a){return this.options.pointStrokeWidths[a%this.options.pointStrokeWidths.length]},c.prototype.pointStrokeColorForSeries=function(a){return this.options.pointStrokeColors[a%this.options.pointStrokeColors.length]},c.prototype.lineWidthForSeries=function(a){return this.options.lineWidth instanceof Array?this.options.lineWidth[a%this.options.lineWidth.length]:this.options.lineWidth},c.prototype.pointSizeForSeries=function(a){return this.options.pointSize instanceof Array?this.options.pointSize[a%this.options.pointSize.length]:this.options.pointSize},c.prototype.pointGrowSeries=function(a){return Raphael.animation({r:this.pointSizeForSeries(a)+3},25,"linear")},c.prototype.pointShrinkSeries=function(a){return Raphael.animation({r:this.pointSizeForSeries(a)},25,"linear")},c}(b.Grid),b.labelSeries=function(c,d,e,f,g){var h,i,j,k,l,m,n,o,p,q,r;if(j=200*(d-c)/e,i=new Date(c),n=b.LABEL_SPECS[f],void 0===n)for(r=b.AUTO_LABEL_ORDER,p=0,q=r.length;q>p;p++)if(k=r[p],m=b.LABEL_SPECS[k],j>=m.span){n=m;break}for(void 0===n&&(n=b.LABEL_SPECS.second),g&&(n=a.extend({},n,{fmt:g})),h=n.start(i),l=[];(o=h.getTime())<=d;)o>=c&&l.push([n.fmt(h),o]),n.incr(h);return l},c=function(a){return{span:60*a*1e3,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate(),a.getHours())},fmt:function(a){return""+b.pad2(a.getHours())+":"+b.pad2(a.getMinutes())},incr:function(b){return b.setUTCMinutes(b.getUTCMinutes()+a)}}},d=function(a){return{span:1e3*a,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate(),a.getHours(),a.getMinutes())},fmt:function(a){return""+b.pad2(a.getHours())+":"+b.pad2(a.getMinutes())+":"+b.pad2(a.getSeconds())},incr:function(b){return b.setUTCSeconds(b.getUTCSeconds()+a)}}},b.LABEL_SPECS={decade:{span:1728e8,start:function(a){return new Date(a.getFullYear()-a.getFullYear()%10,0,1)},fmt:function(a){return""+a.getFullYear()},incr:function(a){return a.setFullYear(a.getFullYear()+10)}},year:{span:1728e7,start:function(a){return new Date(a.getFullYear(),0,1)},fmt:function(a){return""+a.getFullYear()},incr:function(a){return a.setFullYear(a.getFullYear()+1)}},month:{span:24192e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),1)},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)},incr:function(a){return a.setMonth(a.getMonth()+1)}},week:{span:6048e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate())},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)+"-"+b.pad2(a.getDate())},incr:function(a){return a.setDate(a.getDate()+7)}},day:{span:864e5,start:function(a){return new Date(a.getFullYear(),a.getMonth(),a.getDate())},fmt:function(a){return""+a.getFullYear()+"-"+b.pad2(a.getMonth()+1)+"-"+b.pad2(a.getDate())},incr:function(a){return a.setDate(a.getDate()+1)}},hour:c(60),"30min":c(30),"15min":c(15),"10min":c(10),"5min":c(5),minute:c(1),"30sec":d(30),"15sec":d(15),"10sec":d(10),"5sec":d(5),second:d(1)},b.AUTO_LABEL_ORDER=["decade","year","month","week","day","hour","30min","15min","10min","5min","minute","30sec","15sec","10sec","5sec","second"],b.Area=function(c){function d(c){var f;return this instanceof b.Area?(f=a.extend({},e,c),this.cumulative=!f.behaveLikeLine,"auto"===f.fillOpacity&&(f.fillOpacity=f.behaveLikeLine?.8:1),d.__super__.constructor.call(this,f),void 0):new b.Area(c)}var e;return h(d,c),e={fillOpacity:"auto",behaveLikeLine:!1},d.prototype.calcPoints=function(){var a,b,c,d,e,f,g;for(f=this.data,g=[],d=0,e=f.length;e>d;d++)a=f[d],a._x=this.transX(a.x),b=0,a._y=function(){var d,e,f,g;for(f=a.y,g=[],d=0,e=f.length;e>d;d++)c=f[d],this.options.behaveLikeLine?g.push(this.transY(c)):(b+=c||0,g.push(this.transY(b)));return g}.call(this),g.push(a._ymax=Math.max.apply(Math,a._y));return g},d.prototype.drawSeries=function(){var a,b,c,d,e,f,g,h;for(this.seriesPoints=[],b=this.options.behaveLikeLine?function(){f=[];for(var a=0,b=this.options.ykeys.length-1;b>=0?b>=a:a>=b;b>=0?a++:a--)f.push(a);return f}.apply(this):function(){g=[];for(var a=e=this.options.ykeys.length-1;0>=e?0>=a:a>=0;0>=e?a++:a--)g.push(a);return g}.apply(this),h=[],c=0,d=b.length;d>c;c++)a=b[c],this._drawFillFor(a),this._drawLineFor(a),h.push(this._drawPointFor(a));return h},d.prototype._drawFillFor=function(a){var b;return b=this.paths[a],null!==b?(b+="L"+this.transX(this.xmax)+","+this.bottom+"L"+this.transX(this.xmin)+","+this.bottom+"Z",this.drawFilledPath(b,this.fillForSeries(a))):void 0},d.prototype.fillForSeries=function(a){var b;return b=Raphael.rgb2hsl(this.colorFor(this.data[a],a,"line")),Raphael.hsl(b.h,this.options.behaveLikeLine?.9*b.s:.75*b.s,Math.min(.98,this.options.behaveLikeLine?1.2*b.l:1.25*b.l))},d.prototype.drawFilledPath=function(a,b){return this.raphael.path(a).attr("fill",b).attr("fill-opacity",this.options.fillOpacity).attr("stroke","none")},d}(b.Line),b.Bar=function(c){function d(c){return this.onHoverOut=f(this.onHoverOut,this),this.onHoverMove=f(this.onHoverMove,this),this.onGridClick=f(this.onGridClick,this),this instanceof b.Bar?(d.__super__.constructor.call(this,a.extend({},c,{parseTime:!1})),void 0):new b.Bar(c)}return h(d,c),d.prototype.init=function(){return this.cumulative=this.options.stacked,"always"!==this.options.hideHover?(this.hover=new b.Hover({parent:this.el}),this.on("hovermove",this.onHoverMove),this.on("hoverout",this.onHoverOut),this.on("gridclick",this.onGridClick)):void 0},d.prototype.defaults={barSizeRatio:.75,barGap:3,barColors:["#0b62a4","#7a92a3","#4da74d","#afd8f8","#edc240","#cb4b4b","#9440ed"],barOpacity:1,barRadius:[0,0,0,0],xLabelMargin:50},d.prototype.calc=function(){var a;return this.calcBars(),this.options.hideHover===!1?(a=this.hover).update.apply(a,this.hoverContentForRow(this.data.length-1)):void 0},d.prototype.calcBars=function(){var a,b,c,d,e,f,g;for(f=this.data,g=[],a=d=0,e=f.length;e>d;a=++d)b=f[a],b._x=this.left+this.width*(a+.5)/this.data.length,g.push(b._y=function(){var a,d,e,f;for(e=b.y,f=[],a=0,d=e.length;d>a;a++)c=e[a],null!=c?f.push(this.transY(c)):f.push(null);return f}.call(this));return g},d.prototype.draw=function(){var a;return((a=this.options.axes)===!0||"both"===a||"x"===a)&&this.drawXAxis(),this.drawSeries()},d.prototype.drawXAxis=function(){var a,b,c,d,e,f,g,h,i,j,k,l,m;for(j=this.bottom+(this.options.xAxisLabelTopPadding||this.options.padding/2),g=null,f=null,m=[],a=k=0,l=this.data.length;l>=0?l>k:k>l;a=l>=0?++k:--k)h=this.data[this.data.length-1-a],b=this.drawXAxisLabel(h._x,j,h.label),i=b.getBBox(),b.transform("r"+-this.options.xLabelAngle),c=b.getBBox(),b.transform("t0,"+c.height/2+"..."),0!==this.options.xLabelAngle&&(e=-.5*i.width*Math.cos(this.options.xLabelAngle*Math.PI/180),b.transform("t"+e+",0...")),(null==g||g>=c.x+c.width||null!=f&&f>=c.x)&&c.x>=0&&c.x+c.width=0?this.transY(0):null,this.bars=function(){var h,l,p,q;for(p=this.data,q=[],d=h=0,l=p.length;l>h;d=++h)i=p[d],e=0,q.push(function(){var h,l,p,q;for(p=i._y,q=[],j=h=0,l=p.length;l>h;j=++h)n=p[j],null!==n?(o?(m=Math.min(n,o),b=Math.max(n,o)):(m=n,b=this.bottom),f=this.left+d*c+g,this.options.stacked||(f+=j*(a+this.options.barGap)),k=b-m,this.options.verticalGridCondition&&this.options.verticalGridCondition(i.x)&&this.drawBar(this.left+d*c,this.top,c,Math.abs(this.top-this.bottom),this.options.verticalGridColor,this.options.verticalGridOpacity,this.options.barRadius),this.options.stacked&&(m-=e),this.drawBar(f,m,a,k,this.colorFor(i,j,"bar"),this.options.barOpacity,this.options.barRadius),q.push(e+=k)):q.push(null);return q}.call(this));return q}.call(this)},d.prototype.colorFor=function(a,b,c){var d,e;return"function"==typeof this.options.barColors?(d={x:a.x,y:a.y[b],label:a.label},e={index:b,key:this.options.ykeys[b],label:this.options.labels[b]},this.options.barColors.call(this,d,e,c)):this.options.barColors[b%this.options.barColors.length]},d.prototype.hitTest=function(a){return 0===this.data.length?null:(a=Math.max(Math.min(a,this.right),this.left),Math.min(this.data.length-1,Math.floor((a-this.left)/(this.width/this.data.length))))},d.prototype.onGridClick=function(a,b){var c;return c=this.hitTest(a),this.fire("click",c,this.data[c].src,a,b)},d.prototype.onHoverMove=function(a){var b,c;return b=this.hitTest(a),(c=this.hover).update.apply(c,this.hoverContentForRow(b))},d.prototype.onHoverOut=function(){return this.options.hideHover!==!1?this.hover.hide():void 0},d.prototype.hoverContentForRow=function(a){var b,c,d,e,f,g,h,i;for(d=this.data[a],b="
"+d.label+"
",i=d.y,c=g=0,h=i.length;h>g;c=++g)f=i[c],b+="
\n "+this.options.labels[c]+":\n "+this.yLabelFormat(f)+"\n
";return"function"==typeof this.options.hoverCallback&&(b=this.options.hoverCallback(a,this.options,b,d.src)),e=this.left+(a+.5)*this.width/this.data.length,[b,e]},d.prototype.drawXAxisLabel=function(a,b,c){var d;return d=this.raphael.text(a,b,c).attr("font-size",this.options.gridTextSize).attr("font-family",this.options.gridTextFamily).attr("font-weight",this.options.gridTextWeight).attr("fill",this.options.gridTextColor)},d.prototype.drawBar=function(a,b,c,d,e,f,g){var h,i;return h=Math.max.apply(Math,g),i=0===h||h>d?this.raphael.rect(a,b,c,d):this.raphael.path(this.roundedRect(a,b,c,d,g)),i.attr("fill",e).attr("fill-opacity",f).attr("stroke","none")},d.prototype.roundedRect=function(a,b,c,d,e){return null==e&&(e=[0,0,0,0]),["M",a,e[0]+b,"Q",a,b,a+e[0],b,"L",a+c-e[1],b,"Q",a+c,b,a+c,b+e[1],"L",a+c,b+d-e[2],"Q",a+c,b+d,a+c-e[2],b+d,"L",a+e[3],b+d,"Q",a,b+d,a,b+d-e[3],"Z"]},d}(b.Grid),b.Donut=function(c){function d(c){this.resizeHandler=f(this.resizeHandler,this),this.select=f(this.select,this),this.click=f(this.click,this);var d=this;if(!(this instanceof b.Donut))return new b.Donut(c);if(this.options=a.extend({},this.defaults,c),this.el="string"==typeof c.element?a(document.getElementById(c.element)):a(c.element),null===this.el||0===this.el.length)throw new Error("Graph placeholder not found.");void 0!==c.data&&0!==c.data.length&&(this.raphael=new Raphael(this.el[0]),this.options.resize&&a(window).bind("resize",function(){return null!=d.timeoutId&&window.clearTimeout(d.timeoutId),d.timeoutId=window.setTimeout(d.resizeHandler,100)}),this.setData(c.data))}return h(d,c),d.prototype.defaults={colors:["#0B62A4","#3980B5","#679DC6","#95BBD7","#B0CCE1","#095791","#095085","#083E67","#052C48","#042135"],backgroundColor:"#FFFFFF",labelColor:"#000000",formatter:b.commas,resize:!1},d.prototype.redraw=function(){var a,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x;for(this.raphael.clear(),c=this.el.width()/2,d=this.el.height()/2,n=(Math.min(c,d)-10)/3,l=0,u=this.values,o=0,r=u.length;r>o;o++)m=u[o],l+=m;for(i=5/(2*n),a=1.9999*Math.PI-i*this.data.length,g=0,f=0,this.segments=[],v=this.values,e=p=0,s=v.length;s>p;e=++p)m=v[e],j=g+i+a*(m/l),k=new b.DonutSegment(c,d,2*n,n,g,j,this.data[e].color||this.options.colors[f%this.options.colors.length],this.options.backgroundColor,f,this.raphael),k.render(),this.segments.push(k),k.on("hover",this.select),k.on("click",this.click),g=j,f+=1;for(this.text1=this.drawEmptyDonutLabel(c,d-10,this.options.labelColor,15,800),this.text2=this.drawEmptyDonutLabel(c,d+10,this.options.labelColor,14),h=Math.max.apply(Math,this.values),f=0,w=this.values,x=[],q=0,t=w.length;t>q;q++){if(m=w[q],m===h){this.select(f); -break}x.push(f+=1)}return x},d.prototype.setData=function(a){var b;return this.data=a,this.values=function(){var a,c,d,e;for(d=this.data,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(parseFloat(b.value));return e}.call(this),this.redraw()},d.prototype.click=function(a){return this.fire("click",a,this.data[a])},d.prototype.select=function(a){var b,c,d,e,f,g;for(g=this.segments,e=0,f=g.length;f>e;e++)c=g[e],c.deselect();return d=this.segments[a],d.select(),b=this.data[a],this.setLabels(b.label,this.options.formatter(b.value,b))},d.prototype.setLabels=function(a,b){var c,d,e,f,g,h,i,j;return c=2*(Math.min(this.el.width()/2,this.el.height()/2)-10)/3,f=1.8*c,e=c/2,d=c/3,this.text1.attr({text:a,transform:""}),g=this.text1.getBBox(),h=Math.min(f/g.width,e/g.height),this.text1.attr({transform:"S"+h+","+h+","+(g.x+g.width/2)+","+(g.y+g.height)}),this.text2.attr({text:b,transform:""}),i=this.text2.getBBox(),j=Math.min(f/i.width,d/i.height),this.text2.attr({transform:"S"+j+","+j+","+(i.x+i.width/2)+","+i.y})},d.prototype.drawEmptyDonutLabel=function(a,b,c,d,e){var f;return f=this.raphael.text(a,b,"").attr("font-size",d).attr("fill",c),null!=e&&f.attr("font-weight",e),f},d.prototype.resizeHandler=function(){return this.timeoutId=null,this.raphael.setSize(this.el.width(),this.el.height()),this.redraw()},d}(b.EventEmitter),b.DonutSegment=function(a){function b(a,b,c,d,e,g,h,i,j,k){this.cx=a,this.cy=b,this.inner=c,this.outer=d,this.color=h,this.backgroundColor=i,this.index=j,this.raphael=k,this.deselect=f(this.deselect,this),this.select=f(this.select,this),this.sin_p0=Math.sin(e),this.cos_p0=Math.cos(e),this.sin_p1=Math.sin(g),this.cos_p1=Math.cos(g),this.is_long=g-e>Math.PI?1:0,this.path=this.calcSegment(this.inner+3,this.inner+this.outer-5),this.selectedPath=this.calcSegment(this.inner+3,this.inner+this.outer),this.hilight=this.calcArc(this.inner)}return h(b,a),b.prototype.calcArcPoints=function(a){return[this.cx+a*this.sin_p0,this.cy+a*this.cos_p0,this.cx+a*this.sin_p1,this.cy+a*this.cos_p1]},b.prototype.calcSegment=function(a,b){var c,d,e,f,g,h,i,j,k,l;return k=this.calcArcPoints(a),c=k[0],e=k[1],d=k[2],f=k[3],l=this.calcArcPoints(b),g=l[0],i=l[1],h=l[2],j=l[3],"M"+c+","+e+("A"+a+","+a+",0,"+this.is_long+",0,"+d+","+f)+("L"+h+","+j)+("A"+b+","+b+",0,"+this.is_long+",1,"+g+","+i)+"Z"},b.prototype.calcArc=function(a){var b,c,d,e,f;return f=this.calcArcPoints(a),b=f[0],d=f[1],c=f[2],e=f[3],"M"+b+","+d+("A"+a+","+a+",0,"+this.is_long+",0,"+c+","+e)},b.prototype.render=function(){var a=this;return this.arc=this.drawDonutArc(this.hilight,this.color),this.seg=this.drawDonutSegment(this.path,this.color,this.backgroundColor,function(){return a.fire("hover",a.index)},function(){return a.fire("click",a.index)})},b.prototype.drawDonutArc=function(a,b){return this.raphael.path(a).attr({stroke:b,"stroke-width":2,opacity:0})},b.prototype.drawDonutSegment=function(a,b,c,d,e){return this.raphael.path(a).attr({fill:b,stroke:c,"stroke-width":3}).hover(d).click(e)},b.prototype.select=function(){return this.selected?void 0:(this.seg.animate({path:this.selectedPath},150,"<>"),this.arc.animate({opacity:1},150,"<>"),this.selected=!0)},b.prototype.deselect=function(){return this.selected?(this.seg.animate({path:this.path},150,"<>"),this.arc.animate({opacity:0},150,"<>"),this.selected=!1):void 0},b}(b.EventEmitter)}).call(this); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/raphael/raphael.min.js b/app/frontend/static/assets/vendors/raphael/raphael.min.js deleted file mode 100755 index 6ae5cabf..00000000 --- a/app/frontend/static/assets/vendors/raphael/raphael.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Raphael=e():t.Raphael=e()}(window,function(){return function(t){var e={};function r(i){if(e[i])return e[i].exports;var n=e[i]={i:i,l:!1,exports:{}};return t[i].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=t,r.c=e,r.d=function(t,e,i){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(r.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)r.d(i,n,function(e){return t[e]}.bind(null,n));return i},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=1)}([function(t,e,r){var i,n;i=[r(2)],void 0===(n=function(t){function e(i){if(e.is(i,"function"))return r?i():t.on("raphael.DOMload",i);if(e.is(i,A))return e._engine.create[c](e,i.splice(0,3+e.is(i[0],T))).add(i);var n=Array.prototype.slice.call(arguments,0);if(e.is(n[n.length-1],"function")){var a=n.pop();return r?a.call(e._engine.create[c](e,n)):t.on("raphael.DOMload",function(){a.call(e._engine.create[c](e,n))})}return e._engine.create[c](e,arguments)}e.version="2.2.0",e.eve=t;var r,i,n=/[, ]+/,a={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},s=/\{(\d+)\}/g,o="hasOwnProperty",l={doc:document,win:window},h={was:Object.prototype[o].call(l.win,"Raphael"),is:l.win.Raphael},u=function(){this.ca=this.customAttributes={}},c="apply",f="concat",p="ontouchstart"in window||window.TouchEvent||window.DocumentTouch&&document instanceof DocumentTouch,d="",g=" ",x=String,v="split",y="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel"[v](g),m={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},b=x.prototype.toLowerCase,_=Math,w=_.max,k=_.min,B=_.abs,C=_.pow,S=_.PI,T="number",A="array",M=Object.prototype.toString,E=(e._ISURL=/^url\(['"]?(.+?)['"]?\)$/i,/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+%?(?:\s*,\s*[\d\.]+%?)?)\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i),N={NaN:1,Infinity:1,"-Infinity":1},L=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,P=_.round,z=parseFloat,F=parseInt,R=x.prototype.toUpperCase,j=e._availableAttrs={"arrow-end":"none","arrow-start":"none",blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:'10px "Arial"',"font-family":'"Arial"',"font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/","letter-spacing":0,opacity:1,path:"M0,0",r:0,rx:0,ry:0,src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",transform:"",width:0,x:0,y:0,class:""},I=e._availableAnimAttrs={blur:T,"clip-rect":"csv",cx:T,cy:T,fill:"colour","fill-opacity":T,"font-size":T,height:T,opacity:T,path:"path",r:T,rx:T,ry:T,stroke:"colour","stroke-opacity":T,"stroke-width":T,transform:"transform",width:T,x:T,y:T},D=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/,q={hs:1,rg:1},O=/,?([achlmqrstvxz]),?/gi,V=/([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,W=/([rstm])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/gi,Y=/(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/gi,G=(e._radial_gradient=/^r(?:\(([^,]+?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*([^\)]+?)\))?/,{}),H=function(t,e){return z(t)-z(e)},X=function(t){return t},U=e._rectPath=function(t,e,r,i,n){return n?[["M",t+n,e],["l",r-2*n,0],["a",n,n,0,0,1,n,n],["l",0,i-2*n],["a",n,n,0,0,1,-n,n],["l",2*n-r,0],["a",n,n,0,0,1,-n,-n],["l",0,2*n-i],["a",n,n,0,0,1,n,-n],["z"]]:[["M",t,e],["l",r,0],["l",0,i],["l",-r,0],["z"]]},$=function(t,e,r,i){return null==i&&(i=r),[["M",t,e],["m",0,-i],["a",r,i,0,1,1,0,2*i],["a",r,i,0,1,1,0,-2*i],["z"]]},Z=e._getPath={path:function(t){return t.attr("path")},circle:function(t){var e=t.attrs;return $(e.cx,e.cy,e.r)},ellipse:function(t){var e=t.attrs;return $(e.cx,e.cy,e.rx,e.ry)},rect:function(t){var e=t.attrs;return U(e.x,e.y,e.width,e.height,e.r)},image:function(t){var e=t.attrs;return U(e.x,e.y,e.width,e.height)},text:function(t){var e=t._getBBox();return U(e.x,e.y,e.width,e.height)},set:function(t){var e=t._getBBox();return U(e.x,e.y,e.width,e.height)}},Q=e.mapPath=function(t,e){if(!e)return t;var r,i,n,a,s,o,l;for(n=0,s=(t=Tt(t)).length;n',(J=K.firstChild).style.behavior="url(#default#VML)",!J||"object"!=typeof J.adj)return e.type=d;K=null}function tt(t){if("function"==typeof t||Object(t)!==t)return t;var e=new t.constructor;for(var r in t)t[o](r)&&(e[r]=tt(t[r]));return e}e.svg=!(e.vml="VML"==e.type),e._Paper=u,e.fn=i=u.prototype=e.prototype,e._id=0,e.is=function(t,e){return"finite"==(e=b.call(e))?!N[o](+t):"array"==e?t instanceof Array:"null"==e&&null===t||e==typeof t&&null!==t||"object"==e&&t===Object(t)||"array"==e&&Array.isArray&&Array.isArray(t)||M.call(t).slice(8,-1).toLowerCase()==e},e.angle=function(t,r,i,n,a,s){if(null==a){var o=t-i,l=r-n;return o||l?(180+180*_.atan2(-l,-o)/S+360)%360:0}return e.angle(t,r,a,s)-e.angle(i,n,a,s)},e.rad=function(t){return t%360*S/180},e.deg=function(t){return Math.round(180*t/S%360*1e3)/1e3},e.snapTo=function(t,r,i){if(i=e.is(i,"finite")?i:10,e.is(t,A)){for(var n=t.length;n--;)if(B(t[n]-r)<=i)return t[n]}else{var a=r%(t=+t);if(at-i)return r-a+t}return r};var et,rt;e.createUUID=(et=/[xy]/g,rt=function(t){var e=16*_.random()|0;return("x"==t?e:3&e|8).toString(16)},function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(et,rt).toUpperCase()});e.setWindow=function(r){t("raphael.setWindow",e,l.win,r),l.win=r,l.doc=l.win.document,e._engine.initWin&&e._engine.initWin(l.win)};var it=function(t){if(e.vml){var r,i=/^\s+|\s+$/g;try{var n=new ActiveXObject("htmlfile");n.write(""),n.close(),r=n.body}catch(t){r=createPopup().document.body}var a=r.createTextRange();it=ht(function(t){try{r.style.color=x(t).replace(i,d);var e=a.queryCommandValue("ForeColor");return"#"+("000000"+(e=(255&e)<<16|65280&e|(16711680&e)>>>16).toString(16)).slice(-6)}catch(t){return"none"}})}else{var s=l.doc.createElement("i");s.title="Raphaël Colour Picker",s.style.display="none",l.doc.body.appendChild(s),it=ht(function(t){return s.style.color=t,l.doc.defaultView.getComputedStyle(s,d).getPropertyValue("color")})}return it(t)},nt=function(){return"hsb("+[this.h,this.s,this.b]+")"},at=function(){return"hsl("+[this.h,this.s,this.l]+")"},st=function(){return this.hex},ot=function(t,r,i){if(null==r&&e.is(t,"object")&&"r"in t&&"g"in t&&"b"in t&&(i=t.b,r=t.g,t=t.r),null==r&&e.is(t,"string")){var n=e.getRGB(t);t=n.r,r=n.g,i=n.b}return(t>1||r>1||i>1)&&(t/=255,r/=255,i/=255),[t,r,i]},lt=function(t,r,i,n){var a={r:t*=255,g:r*=255,b:i*=255,hex:e.rgb(t,r,i),toString:st};return e.is(n,"finite")&&(a.opacity=n),a};function ht(t,e,r){return function i(){var n=Array.prototype.slice.call(arguments,0),a=n.join("␀"),s=i.cache=i.cache||{},l=i.count=i.count||[];return s[o](a)?(function(t,e){for(var r=0,i=t.length;r=1e3&&delete s[l.shift()],l.push(a),s[a]=t[c](e,n),r?r(s[a]):s[a])}}e.color=function(t){var r;return e.is(t,"object")&&"h"in t&&"s"in t&&"b"in t?(r=e.hsb2rgb(t),t.r=r.r,t.g=r.g,t.b=r.b,t.hex=r.hex):e.is(t,"object")&&"h"in t&&"s"in t&&"l"in t?(r=e.hsl2rgb(t),t.r=r.r,t.g=r.g,t.b=r.b,t.hex=r.hex):(e.is(t,"string")&&(t=e.getRGB(t)),e.is(t,"object")&&"r"in t&&"g"in t&&"b"in t?(r=e.rgb2hsl(t),t.h=r.h,t.s=r.s,t.l=r.l,r=e.rgb2hsb(t),t.v=r.b):(t={hex:"none"}).r=t.g=t.b=t.h=t.s=t.v=t.l=-1),t.toString=st,t},e.hsb2rgb=function(t,e,r,i){var n,a,s,o,l;return this.is(t,"object")&&"h"in t&&"s"in t&&"b"in t&&(r=t.b,e=t.s,i=t.o,t=t.h),o=(l=r*e)*(1-B((t=(t*=360)%360/60)%2-1)),n=a=s=r-l,lt(n+=[l,o,0,0,o,l][t=~~t],a+=[o,l,l,o,0,0][t],s+=[0,0,o,l,l,o][t],i)},e.hsl2rgb=function(t,e,r,i){var n,a,s,o,l;return this.is(t,"object")&&"h"in t&&"s"in t&&"l"in t&&(r=t.l,e=t.s,t=t.h),(t>1||e>1||r>1)&&(t/=360,e/=100,r/=100),o=(l=2*e*(r<.5?r:1-r))*(1-B((t=(t*=360)%360/60)%2-1)),n=a=s=r-l/2,lt(n+=[l,o,0,0,o,l][t=~~t],a+=[o,l,l,o,0,0][t],s+=[0,0,o,l,l,o][t],i)},e.rgb2hsb=function(t,e,r){var i,n;return t=(r=ot(t,e,r))[0],e=r[1],r=r[2],{h:((0==(n=(i=w(t,e,r))-k(t,e,r))?null:i==t?(e-r)/n:i==e?(r-t)/n+2:(t-e)/n+4)+360)%6*60/360,s:0==n?0:n/i,b:i,toString:nt}},e.rgb2hsl=function(t,e,r){var i,n,a,s;return t=(r=ot(t,e,r))[0],e=r[1],r=r[2],i=((n=w(t,e,r))+(a=k(t,e,r)))/2,{h:((0==(s=n-a)?null:n==t?(e-r)/s:n==e?(r-t)/s+2:(t-e)/s+4)+360)%6*60/360,s:0==s?0:i<.5?s/(2*i):s/(2-2*i),l:i,toString:at}},e._path2string=function(){return this.join(",").replace(O,"$1")};e._preload=function(t,e){var r=l.doc.createElement("img");r.style.cssText="position:absolute;left:-9999em;top:-9999em",r.onload=function(){e.call(this),this.onload=null,l.doc.body.removeChild(this)},r.onerror=function(){l.doc.body.removeChild(this)},l.doc.body.appendChild(r),r.src=t};function ut(){return this.hex}function ct(t,e){for(var r=[],i=0,n=t.length;n-2*!e>i;i+=2){var a=[{x:+t[i-2],y:+t[i-1]},{x:+t[i],y:+t[i+1]},{x:+t[i+2],y:+t[i+3]},{x:+t[i+4],y:+t[i+5]}];e?i?n-4==i?a[3]={x:+t[0],y:+t[1]}:n-2==i&&(a[2]={x:+t[0],y:+t[1]},a[3]={x:+t[2],y:+t[3]}):a[0]={x:+t[n-2],y:+t[n-1]}:n-4==i?a[3]=a[2]:i||(a[0]={x:+t[i],y:+t[i+1]}),r.push(["C",(-a[0].x+6*a[1].x+a[2].x)/6,(-a[0].y+6*a[1].y+a[2].y)/6,(a[1].x+6*a[2].x-a[3].x)/6,(a[1].y+6*a[2].y-a[3].y)/6,a[2].x,a[2].y])}return r}e.getRGB=ht(function(t){if(!t||(t=x(t)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:ut};if("none"==t)return{r:-1,g:-1,b:-1,hex:"none",toString:ut};!q[o](t.toLowerCase().substring(0,2))&&"#"!=t.charAt()&&(t=it(t));var r,i,n,a,s,l,h=t.match(E);return h?(h[2]&&(n=F(h[2].substring(5),16),i=F(h[2].substring(3,5),16),r=F(h[2].substring(1,3),16)),h[3]&&(n=F((s=h[3].charAt(3))+s,16),i=F((s=h[3].charAt(2))+s,16),r=F((s=h[3].charAt(1))+s,16)),h[4]&&(l=h[4][v](D),r=z(l[0]),"%"==l[0].slice(-1)&&(r*=2.55),i=z(l[1]),"%"==l[1].slice(-1)&&(i*=2.55),n=z(l[2]),"%"==l[2].slice(-1)&&(n*=2.55),"rgba"==h[1].toLowerCase().slice(0,4)&&(a=z(l[3])),l[3]&&"%"==l[3].slice(-1)&&(a/=100)),h[5]?(l=h[5][v](D),r=z(l[0]),"%"==l[0].slice(-1)&&(r*=2.55),i=z(l[1]),"%"==l[1].slice(-1)&&(i*=2.55),n=z(l[2]),"%"==l[2].slice(-1)&&(n*=2.55),("deg"==l[0].slice(-3)||"°"==l[0].slice(-1))&&(r/=360),"hsba"==h[1].toLowerCase().slice(0,4)&&(a=z(l[3])),l[3]&&"%"==l[3].slice(-1)&&(a/=100),e.hsb2rgb(r,i,n,a)):h[6]?(l=h[6][v](D),r=z(l[0]),"%"==l[0].slice(-1)&&(r*=2.55),i=z(l[1]),"%"==l[1].slice(-1)&&(i*=2.55),n=z(l[2]),"%"==l[2].slice(-1)&&(n*=2.55),("deg"==l[0].slice(-3)||"°"==l[0].slice(-1))&&(r/=360),"hsla"==h[1].toLowerCase().slice(0,4)&&(a=z(l[3])),l[3]&&"%"==l[3].slice(-1)&&(a/=100),e.hsl2rgb(r,i,n,a)):((h={r:r,g:i,b:n,toString:ut}).hex="#"+(16777216|n|i<<8|r<<16).toString(16).slice(1),e.is(a,"finite")&&(h.opacity=a),h)):{r:-1,g:-1,b:-1,hex:"none",error:1,toString:ut}},e),e.hsb=ht(function(t,r,i){return e.hsb2rgb(t,r,i).hex}),e.hsl=ht(function(t,r,i){return e.hsl2rgb(t,r,i).hex}),e.rgb=ht(function(t,e,r){function i(t){return t+.5|0}return"#"+(16777216|i(r)|i(e)<<8|i(t)<<16).toString(16).slice(1)}),e.getColor=function(t){var e=this.getColor.start=this.getColor.start||{h:0,s:1,b:t||.75},r=this.hsb2rgb(e.h,e.s,e.b);return e.h+=.075,e.h>1&&(e.h=0,e.s-=.2,e.s<=0&&(this.getColor.start={h:0,s:1,b:e.b})),r.hex},e.getColor.reset=function(){delete this.start},e.parsePathString=function(t){if(!t)return null;var r=ft(t);if(r.arr)return mt(r.arr);var i={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},n=[];return e.is(t,A)&&e.is(t[0],A)&&(n=mt(t)),n.length||x(t).replace(V,function(t,e,r){var a=[],s=e.toLowerCase();if(r.replace(Y,function(t,e){e&&a.push(+e)}),"m"==s&&a.length>2&&(n.push([e][f](a.splice(0,2))),s="l",e="m"==e?"l":"L"),"r"==s)n.push([e][f](a));else for(;a.length>=i[s]&&(n.push([e][f](a.splice(0,i[s]))),i[s]););}),n.toString=e._path2string,r.arr=mt(n),n},e.parseTransformString=ht(function(t){if(!t)return null;var r=[];return e.is(t,A)&&e.is(t[0],A)&&(r=mt(t)),r.length||x(t).replace(W,function(t,e,i){var n=[];b.call(e);i.replace(Y,function(t,e){e&&n.push(+e)}),r.push([e][f](n))}),r.toString=e._path2string,r},this,function(t){if(!t)return t;for(var e=[],r=0;r1?1:l<0?0:l)/2,u=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],c=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],f=0,p=0;p<12;p++){var d=h*u[p]+h,g=pt(d,t,r,n,s),x=pt(d,e,i,a,o),v=g*g+x*x;f+=c[p]*_.sqrt(v)}return h*f}function gt(t,e,r,i,n,a,s,o){if(!(w(t,r)w(n,s)||w(e,i)w(a,o))){var l=(t-r)*(a-o)-(e-i)*(n-s);if(l){var h=((t*i-e*r)*(n-s)-(t-r)*(n*o-a*s))/l,u=((t*i-e*r)*(a-o)-(e-i)*(n*o-a*s))/l,c=+h.toFixed(2),f=+u.toFixed(2);if(!(c<+k(t,r).toFixed(2)||c>+w(t,r).toFixed(2)||c<+k(n,s).toFixed(2)||c>+w(n,s).toFixed(2)||f<+k(e,i).toFixed(2)||f>+w(e,i).toFixed(2)||f<+k(a,o).toFixed(2)||f>+w(a,o).toFixed(2)))return{x:h,y:u}}}}function xt(t,r,i){var n=e.bezierBBox(t),a=e.bezierBBox(r);if(!e.isBBoxIntersect(n,a))return i?0:[];for(var s=dt.apply(0,t),o=dt.apply(0,r),l=w(~~(s/5),1),h=w(~~(o/5),1),u=[],c=[],f={},p=i?0:[],d=0;d=0&&T<=1.001&&A>=0&&A<=1.001&&(i?p++:p.push({x:S.x,y:S.y,t1:k(T,1),t2:k(A,1)}))}}return p}function vt(t,r,i){t=e._path2curve(t),r=e._path2curve(r);for(var n,a,s,o,l,h,u,c,f,p,d=i?0:[],g=0,x=t.length;gy||v=t.x&&e<=t.x2&&r>=t.y&&r<=t.y2},e.isBBoxIntersect=function(t,r){var i=e.isPointInsideBBox;return i(r,t.x,t.y)||i(r,t.x2,t.y)||i(r,t.x,t.y2)||i(r,t.x2,t.y2)||i(t,r.x,r.y)||i(t,r.x2,r.y)||i(t,r.x,r.y2)||i(t,r.x2,r.y2)||(t.xr.x||r.xt.x)&&(t.yr.y||r.yt.y)},e.pathIntersection=function(t,e){return vt(t,e)},e.pathIntersectionNumber=function(t,e){return vt(t,e,1)},e.isPointInsidePath=function(t,r,i){var n=e.pathBBox(t);return e.isPointInsideBBox(n,r,i)&&vt(t,[["M",r,i],["H",n.x2+10]],1)%2==1},e._removedFactory=function(e){return function(){t("raphael.log",null,"Raphaël: you are calling to method “"+e+"” of removed object",e)}};var yt=e.pathBBox=function(t){var e=ft(t);if(e.bbox)return tt(e.bbox);if(!t)return{x:0,y:0,width:0,height:0,x2:0,y2:0};for(var r,i=0,n=0,a=[],s=[],o=0,l=(t=Tt(t)).length;o1&&(r*=m=_.sqrt(m),i*=m);var b=r*r,w=i*i,k=(a==s?-1:1)*_.sqrt(B((b*w-b*y*y-w*x*x)/(b*y*y+w*x*x))),C=k*r*y/i+(t+o)/2,T=k*-i*x/r+(e+l)/2,A=_.asin(((e-T)/i).toFixed(9)),M=_.asin(((l-T)/i).toFixed(9));(A=tM&&(A-=2*S),!s&&M>A&&(M-=2*S)}var E=M-A;if(B(E)>c){var N=M,L=o,P=l;M=A+c*(s&&M>A?1:-1),o=C+r*_.cos(M),l=T+i*_.sin(M),d=Bt(o,l,r,i,n,0,s,L,P,[M,N,C,T])}E=M-A;var z=_.cos(A),F=_.sin(A),R=_.cos(M),j=_.sin(M),I=_.tan(E/4),D=4/3*r*I,q=4/3*i*I,O=[t,e],V=[t+D*F,e-q*z],W=[o+D*j,l-q*R],Y=[o,l];if(V[0]=2*O[0]-V[0],V[1]=2*O[1]-V[1],h)return[V,W,Y][f](d);for(var G=[],H=0,X=(d=[V,W,Y][f](d).join()[v](",")).length;H"1e12"&&(p=.5),B(d)>"1e12"&&(d=.5),p>0&&p<1&&(l=Ct(t,e,r,i,n,a,s,o,p),x.push(l.x),g.push(l.y)),d>0&&d<1&&(l=Ct(t,e,r,i,n,a,s,o,d),x.push(l.x),g.push(l.y)),h=a-2*i+e-(o-2*a+i),f=e-i,p=(-(u=2*(i-e)-2*(a-i))+_.sqrt(u*u-4*h*f))/2/h,d=(-u-_.sqrt(u*u-4*h*f))/2/h,B(p)>"1e12"&&(p=.5),B(d)>"1e12"&&(d=.5),p>0&&p<1&&(l=Ct(t,e,r,i,n,a,s,o,p),x.push(l.x),g.push(l.y)),d>0&&d<1&&(l=Ct(t,e,r,i,n,a,s,o,d),x.push(l.x),g.push(l.y)),{min:{x:k[c](0,x),y:k[c](0,g)},max:{x:w[c](0,x),y:w[c](0,g)}}}),Tt=e._path2curve=ht(function(t,e){var r=!e&&ft(t);if(!e&&r.curve)return mt(r.curve);for(var i=_t(t),n=e&&_t(e),a={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},s={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},o=function(t,e,r){var i,n;if(!t)return["C",e.x,e.y,e.x,e.y,e.x,e.y];switch(!(t[0]in{T:1,Q:1})&&(e.qx=e.qy=null),t[0]){case"M":e.X=t[1],e.Y=t[2];break;case"A":t=["C"][f](Bt[c](0,[e.x,e.y][f](t.slice(1))));break;case"S":"C"==r||"S"==r?(i=2*e.x-e.bx,n=2*e.y-e.by):(i=e.x,n=e.y),t=["C",i,n][f](t.slice(1));break;case"T":"Q"==r||"T"==r?(e.qx=2*e.x-e.qx,e.qy=2*e.y-e.qy):(e.qx=e.x,e.qy=e.y),t=["C"][f](kt(e.x,e.y,e.qx,e.qy,t[1],t[2]));break;case"Q":e.qx=t[1],e.qy=t[2],t=["C"][f](kt(e.x,e.y,t[1],t[2],t[3],t[4]));break;case"L":t=["C"][f](wt(e.x,e.y,t[1],t[2]));break;case"H":t=["C"][f](wt(e.x,e.y,t[1],e.y));break;case"V":t=["C"][f](wt(e.x,e.y,e.x,t[1]));break;case"Z":t=["C"][f](wt(e.x,e.y,e.X,e.Y))}return t},l=function(t,e){if(t[e].length>7){t[e].shift();for(var r=t[e];r.length;)u[e]="A",n&&(p[e]="A"),t.splice(e++,0,["C"][f](r.splice(0,6)));t.splice(e,1),v=w(i.length,n&&n.length||0)}},h=function(t,e,r,a,s){t&&e&&"M"==t[s][0]&&"M"!=e[s][0]&&(e.splice(s,0,["M",a.x,a.y]),r.bx=0,r.by=0,r.x=t[s][1],r.y=t[s][2],v=w(i.length,n&&n.length||0))},u=[],p=[],d="",g="",x=0,v=w(i.length,n&&n.length||0);x.01;)h=dt(t,e,r,i,n,a,s,o,c+=(hn){if(r&&!f.start){if(c+=["C"+(u=Xt(s,o,l[1],l[2],l[3],l[4],l[5],l[6],n-p)).start.x,u.start.y,u.m.x,u.m.y,u.x,u.y],a)return c;f.start=c,c=["M"+u.x,u.y+"C"+u.n.x,u.n.y,u.end.x,u.end.y,l[5],l[6]].join(),p+=h,s=+l[5],o=+l[6];continue}if(!t&&!r)return{x:(u=Xt(s,o,l[1],l[2],l[3],l[4],l[5],l[6],n-p)).x,y:u.y,alpha:u.alpha}}p+=h,s=+l[5],o=+l[6]}c+=l.shift()+l}return f.end=c,(u=t?p:r?f:e.findDotsAtSegment(s,o,l[0],l[1],l[2],l[3],l[4],l[5],1)).alpha&&(u={x:u.x,y:u.y,alpha:u.alpha}),u}},$t=Ut(1),Zt=Ut(),Qt=Ut(0,1);e.getTotalLength=$t,e.getPointAtLength=Zt,e.getSubpath=function(t,e,r){if(this.getTotalLength(t)-r<1e-6)return Qt(t,e).end;var i=Qt(t,r,1);return e?Qt(i,e).end:i},Wt.getTotalLength=function(){var t=this.getPath();if(t)return this.node.getTotalLength?this.node.getTotalLength():$t(t)},Wt.getPointAtLength=function(t){var e=this.getPath();if(e)return Zt(e,t)},Wt.getPath=function(){var t,r=e._getPath[this.type];if("text"!=this.type&&"set"!=this.type)return r&&(t=r(this)),t},Wt.getSubpath=function(t,r){var i=this.getPath();if(i)return e.getSubpath(i,t,r)};var Jt=e.easing_formulas={linear:function(t){return t},"<":function(t){return C(t,1.7)},">":function(t){return C(t,.48)},"<>":function(t){var e=.48-t/1.04,r=_.sqrt(.1734+e*e),i=r-e,n=-r-e,a=C(B(i),1/3)*(i<0?-1:1)+C(B(n),1/3)*(n<0?-1:1)+.5;return 3*(1-a)*a*a+a*a*a},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},elastic:function(t){return t==!!t?t:C(2,-10*t)*_.sin(2*S*(t-.075)/.3)+1},bounce:function(t){var e=7.5625,r=2.75;return t<1/r?e*t*t:t<2/r?e*(t-=1.5/r)*t+.75:t<2.5/r?e*(t-=2.25/r)*t+.9375:e*(t-=2.625/r)*t+.984375}};Jt.easeIn=Jt["ease-in"]=Jt["<"],Jt.easeOut=Jt["ease-out"]=Jt[">"],Jt.easeInOut=Jt["ease-in-out"]=Jt["<>"],Jt["back-in"]=Jt.backIn,Jt["back-out"]=Jt.backOut;var Kt=[],te=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){setTimeout(t,16)},ee=function(){for(var r=+new Date,i=0;i1&&!n.next){for(s in d)d[o](s)&&(y[s]=n.totalOrigin[s]);n.el.attr(y),ae(n.anim,n.el,n.anim.percents[0],null,n.totalOrigin,n.repeat-1)}n.next&&!n.stop&&ae(n.anim,n.el,n.next,null,n.totalOrigin,n.repeat)}}}Kt.length&&te(ee)},re=function(t){return t>255?255:t<0?0:t};function ie(t,e,r,i,n,a){var s=3*e,o=3*(i-e)-s,l=1-s-o,h=3*r,u=3*(n-r)-h,c=1-h-u;function f(t){return((l*t+o)*t+s)*t}return function(t,e){var r=function(t,e){var r,i,n,a,h,u;for(n=t,u=0;u<8;u++){if(a=f(n)-t,B(a)i)return i;for(;ra?r=n:i=n,n=(i-r)/2+r}return n}(t,e);return((c*r+u)*r+h)*r}(t,1/(200*a))}function ne(t,e){var r=[],i={};if(this.ms=e,this.times=1,t){for(var n in t)t[o](n)&&(i[z(n)]=t[n],r.push(z(n)));r.sort(H)}this.anim=i,this.top=r[r.length-1],this.percents=r}function ae(r,i,a,s,l,h){a=z(a);var u,c,p,d,g,y,m=r.ms,b={},_={},w={};if(s)for(B=0,C=Kt.length;Bs*r.top){a=r.percents[B],g=r.percents[B-1]||0,m=m/r.top*(a-g),d=r.percents[B+1],u=r.anim[a];break}s&&i.attr(r.anim[r.percents[B]])}if(u){if(c)c.initstatus=s,c.start=new Date-c.ms*s;else{for(var S in u)if(u[o](S)&&(I[o](S)||i.paper.customAttributes[o](S)))switch(b[S]=i.attr(S),null==b[S]&&(b[S]=j[S]),_[S]=u[S],I[S]){case T:w[S]=(_[S]-b[S])/m;break;case"colour":b[S]=e.getRGB(b[S]);var A=e.getRGB(_[S]);w[S]={r:(A.r-b[S].r)/m,g:(A.g-b[S].g)/m,b:(A.b-b[S].b)/m};break;case"path":var M=Tt(b[S],_[S]),E=M[1];for(b[S]=M[0],w[S]=[],B=0,C=b[S].length;Bh&&(h=c)}!t[h+="%"].callback&&(t[h].callback=n)}return new ne(t,r)},Wt.animate=function(t,r,i,n){if(this.removed)return n&&n.call(this),this;var a=t instanceof ne?t:e.animation(t,r,i,n);return ae(a,this,a.percents[0],null,this.attr()),this},Wt.setTime=function(t,e){return t&&null!=e&&this.status(t,k(e,t.ms)/t.ms),this},Wt.status=function(t,e){var r,i,n=[],a=0;if(null!=e)return ae(t,this,-1,k(e,1)),this;for(r=Kt.length;a1)for(var i=0,n=r.length;i.5)-1;l(f-.5,2)+l(p-.5,2)>.25&&(p=a.sqrt(.25-l(f-.5,2))*n+.5)&&.5!=p&&(p=p.toFixed(5)-1e-5*n)}return c})).split(/\s*\-\s*/),"linear"==h){var b=n.shift();if(b=-i(b),isNaN(b))return null;var _=[0,0,a.cos(t.rad(b)),a.sin(t.rad(b))],w=1/(s(o(_[2]),o(_[3]))||1);_[2]*=w,_[3]*=w,_[2]<0&&(_[0]=-_[2],_[2]=0),_[3]<0&&(_[1]=-_[3],_[3]=0)}var k=t._parseDots(n);if(!k)return null;if(u=u.replace(/[\(\)\s,\xb0#]/g,"_"),e.gradient&&u!=e.gradient.id&&(g.defs.removeChild(e.gradient),delete e.gradient),!e.gradient){m=x(h+"Gradient",{id:u}),e.gradient=m,x(m,"radial"==h?{fx:f,fy:p}:{x1:_[0],y1:_[1],x2:_[2],y2:_[3],gradientTransform:e.matrix.invert()}),g.defs.appendChild(m);for(var B=0,C=k.length;B1?P.opacity/100:P.opacity});case"stroke":P=t.getRGB(g),l.setAttribute(d,P.hex),"stroke"==d&&P[e]("opacity")&&x(l,{"stroke-opacity":P.opacity>1?P.opacity/100:P.opacity}),"stroke"==d&&i._.arrows&&("startString"in i._.arrows&&b(i,i._.arrows.startString),"endString"in i._.arrows&&b(i,i._.arrows.endString,1));break;case"gradient":("circle"==i.type||"ellipse"==i.type||"r"!=r(g).charAt())&&v(i,g);break;case"opacity":u.gradient&&!u[e]("stroke-opacity")&&x(l,{"stroke-opacity":g>1?g/100:g});case"fill-opacity":if(u.gradient){(z=t._g.doc.getElementById(l.getAttribute("fill").replace(/^url\(#|\)$/g,c)))&&(F=z.getElementsByTagName("stop"),x(F[F.length-1],{"stop-opacity":g}));break}default:"font-size"==d&&(g=n(g,10)+"px");var R=d.replace(/(\-.)/g,function(t){return t.substring(1).toUpperCase()});l.style[R]=g,i._.dirty=1,l.setAttribute(d,g)}}B(i,a),l.style.visibility=f},B=function(i,a){if("text"==i.type&&(a[e]("text")||a[e]("font")||a[e]("font-size")||a[e]("x")||a[e]("y"))){var s=i.attrs,o=i.node,l=o.firstChild?n(t._g.doc.defaultView.getComputedStyle(o.firstChild,c).getPropertyValue("font-size"),10):10;if(a[e]("text")){for(s.text=a.text;o.firstChild;)o.removeChild(o.firstChild);for(var h,u=r(a.text).split("\n"),f=[],p=0,d=u.length;p"));var U=H.getBoundingClientRect();T.W=g.w=(U.right-U.left)/100,T.H=g.h=(U.bottom-U.top)/100,T.X=g.x,T.Y=g.y+T.H/2,("x"in l||"y"in l)&&(T.path.v=t.format("m{0},{1}l{2},{1}",a(g.x*y),a(g.y*y),a(g.x*y)+1));for(var $=["x","y","text","font","font-family","font-weight","font-style","font-size"],Z=0,Q=$.length;Z.25&&(r=n.sqrt(.25-o(e-.5,2))*(2*(r>.5)-1)+.5),h=e+c+r),f})).split(/\s*\-\s*/),"linear"==l){var u=a.shift();if(u=-i(u),isNaN(u))return null}var p=t._parseDots(a);if(!p)return null;if(e=e.shape||e.node,p.length){e.removeChild(s),s.on=!0,s.method="none",s.color=p[0].color,s.color2=p[p.length-1].color;for(var d=[],g=0,x=p.length;g')}}catch(t){k=function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},t._engine.initWin(t._g.win),t._engine.create=function(){var e=t._getContainer.apply(0,arguments),r=e.container,i=e.height,n=e.width,a=e.x,s=e.y;if(!r)throw new Error("VML container not found.");var o=new t._Paper,l=o.canvas=t._g.doc.createElement("div"),h=l.style;return a=a||0,s=s||0,n=n||512,i=i||342,o.width=n,o.height=i,n==+n&&(n+="px"),i==+i&&(i+="px"),o.coordsize=216e5+c+216e5,o.coordorigin="0 0",o.span=t._g.doc.createElement("span"),o.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",l.appendChild(o.span),h.cssText=t.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",n,i),1==r?(t._g.doc.body.appendChild(l),h.left=a+"px",h.top=s+"px",h.position="absolute"):r.firstChild?r.insertBefore(l,r.firstChild):r.appendChild(l),o.renderfix=function(){},o},t.prototype.clear=function(){t.eve("raphael.clear",this),this.canvas.innerHTML=f,this.span=t._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},t.prototype.remove=function(){for(var e in t.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas),this)this[e]="function"==typeof this[e]?t._removedFactory(e):null;return!0};var M=t.st;for(var E in A)A[e](E)&&!M[e](E)&&(M[E]=function(t){return function(){var e=arguments;return this.forEach(function(r){r[t].apply(r,e)})}}(E))}}.apply(e,i))||(t.exports=n)}])}); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.eot b/app/frontend/static/assets/vendors/summernote/dist/font/summernote.eot deleted file mode 100755 index 28d098bc..00000000 Binary files a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.eot and /dev/null differ diff --git a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.ttf b/app/frontend/static/assets/vendors/summernote/dist/font/summernote.ttf deleted file mode 100755 index beb8bd8f..00000000 Binary files a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.ttf and /dev/null differ diff --git a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.woff b/app/frontend/static/assets/vendors/summernote/dist/font/summernote.woff deleted file mode 100755 index 13a6ab93..00000000 Binary files a/app/frontend/static/assets/vendors/summernote/dist/font/summernote.woff and /dev/null differ diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.js deleted file mode 100755 index fad501f7..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.js +++ /dev/null @@ -1,156 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.min.js deleted file mode 100755 index 37bd9d13..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ar-AR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.js deleted file mode 100755 index ab1a7083..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.js +++ /dev/null @@ -1,156 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.min.js deleted file mode 100755 index 96a1b9e3..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-bg-BG.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.js deleted file mode 100755 index 9543026a..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.min.js deleted file mode 100755 index 6f485d72..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ca-ES.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.js deleted file mode 100755 index d1c76581..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.js +++ /dev/null @@ -1,150 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.min.js deleted file mode 100755 index 0ef2390a..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-cs-CZ.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.js deleted file mode 100755 index ada84cbf..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.min.js deleted file mode 100755 index ca847de0..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-da-DK.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.js deleted file mode 100755 index 0a3373f7..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.js +++ /dev/null @@ -1,156 +0,0 @@ -(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 verkleinern', - indent: 'Einzug vergrößern', - 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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.min.js deleted file mode 100755 index e00bcc85..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-de-DE.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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 verkleinern",indent:"Einzug vergrößern",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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.js deleted file mode 100755 index c2e499bc..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.min.js deleted file mode 100755 index a69c8a54..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-el-GR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.js deleted file mode 100755 index d2f55bfd..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.min.js deleted file mode 100755 index 73f83a0d..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-ES.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.js deleted file mode 100755 index 116f4aa8..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.js +++ /dev/null @@ -1,154 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.min.js deleted file mode 100755 index 4dd8740f..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-es-EU.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.js deleted file mode 100755 index 4169158b..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.min.js deleted file mode 100755 index 9cb8a403..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fa-IR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.js deleted file mode 100755 index 5b64018f..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.js +++ /dev/null @@ -1,153 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.min.js deleted file mode 100755 index c21ac317..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fi-FI.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(i){i.extend(i.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.js deleted file mode 100755 index 3b4d9a42..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.min.js deleted file mode 100755 index f09c4f30..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-fr-FR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.js deleted file mode 100755 index ef469192..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.min.js deleted file mode 100755 index a9ed1b60..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-gl-ES.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.js deleted file mode 100755 index 91a8e002..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.min.js deleted file mode 100755 index ed27c076..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-he-IL.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.js deleted file mode 100755 index 71eb12d2..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.min.js deleted file mode 100755 index 2e3caa6c..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hr-HR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.js deleted file mode 100755 index ddbd3d6d..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.min.js deleted file mode 100755 index 09867271..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-hu-HU.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.js deleted file mode 100755 index 9405d096..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.min.js deleted file mode 100755 index dbc4bee6..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-id-ID.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(a){a.extend(a.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.js deleted file mode 100755 index 4e183d61..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.min.js deleted file mode 100755 index a3c4dc46..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-it-IT.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.js deleted file mode 100755 index 22b0aa02..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.js +++ /dev/null @@ -1,155 +0,0 @@ -(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: '行を上に追加', - 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': '改行挿入', - '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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.min.js deleted file mode 100755 index ab6059dd..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ja-JP.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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:"行を上に追加",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:"改行挿入",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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.js deleted file mode 100755 index 3edc3746..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.js +++ /dev/null @@ -1,157 +0,0 @@ -(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% 크기로 변경', - resizeNone: '원본 크기', - 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: '기본값으로 설정', - cpSelect: '고르다', - }, - 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)으로 변경', - 'formatH1': '현재 블록의 포맷을 제목1(H1)로 변경', - 'formatH2': '현재 블록의 포맷을 제목2(H2)로 변경', - 'formatH3': '현재 블록의 포맷을 제목3(H3)로 변경', - 'formatH4': '현재 블록의 포맷을 제목4(H4)로 변경', - 'formatH5': '현재 블록의 포맷을 제목5(H5)로 변경', - 'formatH6': '현재 블록의 포맷을 제목6(H6)로 변경', - 'insertHorizontalRule': '구분선 삽입', - 'linkDialog.show': '링크 대화상자 열기', - }, - history: { - undo: '실행 취소', - redo: '재실행', - }, - specialChar: { - specialChar: '특수문자', - select: '특수문자를 선택하세요', - }, - }, - }); -})(jQuery); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.min.js deleted file mode 100755 index 52184f29..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ko-KR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.summernote.lang,{"ko-KR":{font:{bold:"굵게",italic:"기울임꼴",underline:"밑줄",clear:"서식 지우기",height:"줄 간격",name:"글꼴",superscript:"위 첨자",subscript:"아래 첨자",strikethrough:"취소선",size:"글자 크기"},image:{image:"그림",insert:"그림 삽입",resizeFull:"100% 크기로 변경",resizeHalf:"50% 크기로 변경",resizeQuarter:"25% 크기로 변경",resizeNone:"원본 크기",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:"기본값으로 설정",cpSelect:"고르다"},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)으로 변경",formatH1:"현재 블록의 포맷을 제목1(H1)로 변경",formatH2:"현재 블록의 포맷을 제목2(H2)로 변경",formatH3:"현재 블록의 포맷을 제목3(H3)로 변경",formatH4:"현재 블록의 포맷을 제목4(H4)로 변경",formatH5:"현재 블록의 포맷을 제목5(H5)로 변경",formatH6:"현재 블록의 포맷을 제목6(H6)로 변경",insertHorizontalRule:"구분선 삽입","linkDialog.show":"링크 대화상자 열기"},history:{undo:"실행 취소",redo:"재실행"},specialChar:{specialChar:"특수문자",select:"특수문자를 선택하세요"}}})}(jQuery); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.js deleted file mode 100755 index 3c1b4933..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.min.js deleted file mode 100755 index 4f76cfb3..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LT.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(a){a.extend(a.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.js deleted file mode 100755 index c25c5cef..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.min.js deleted file mode 100755 index cc6f7e18..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-lt-LV.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(t){t.extend(t.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.js deleted file mode 100755 index 67d55253..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.js +++ /dev/null @@ -1,157 +0,0 @@ -// 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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.min.js deleted file mode 100755 index e653ae41..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-mn-MN.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.js deleted file mode 100755 index 9539fac7..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.js +++ /dev/null @@ -1,154 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.min.js deleted file mode 100755 index 9968ea9e..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nb-NO.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.js deleted file mode 100755 index 3964f8ec..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.min.js deleted file mode 100755 index c23bea57..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-nl-NL.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.js deleted file mode 100755 index dd7b51fa..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.min.js deleted file mode 100755 index 8542402b..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pl-PL.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.js deleted file mode 100755 index 10eedf73..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.js +++ /dev/null @@ -1,156 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.min.js deleted file mode 100755 index a0784a66..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-BR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(a){a.extend(a.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.js deleted file mode 100755 index fd570408..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.min.js deleted file mode 100755 index 9b0a3049..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-pt-PT.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(a){a.extend(a.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.js deleted file mode 100755 index d9b8a044..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.min.js deleted file mode 100755 index 2274b2b1..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ro-RO.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.js deleted file mode 100755 index 9303431c..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.min.js deleted file mode 100755 index 356dd96d..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ru-RU.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.js deleted file mode 100755 index 55aa13fb..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.js +++ /dev/null @@ -1,153 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.min.js deleted file mode 100755 index 29a62384..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sk-SK.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.js deleted file mode 100755 index e8bede69..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.min.js deleted file mode 100755 index 05018729..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sl-SI.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.js deleted file mode 100755 index 539a6320..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.min.js deleted file mode 100755 index 4ed75906..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS-Latin.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.js deleted file mode 100755 index eb0ebc90..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.min.js deleted file mode 100755 index 66ed4fa4..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sr-RS.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.js deleted file mode 100755 index 91fa22b3..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.min.js deleted file mode 100755 index 6ac549cc..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-sv-SE.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.js deleted file mode 100755 index 683df918..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.min.js deleted file mode 100755 index 75934a58..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-ta-IN.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.js deleted file mode 100755 index 70f34b4b..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.min.js deleted file mode 100755 index 9f76e042..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-th-TH.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.js deleted file mode 100755 index eb7b9acd..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.min.js deleted file mode 100755 index d94d043d..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-tr-TR.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(a){a.extend(a.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.js deleted file mode 100755 index 76a831e8..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.min.js deleted file mode 100755 index 79d5c9a7..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uk-UA.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.js deleted file mode 100755 index 22e6496b..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.js +++ /dev/null @@ -1,112 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.min.js deleted file mode 100755 index 521b9063..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-uz-UZ.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.js deleted file mode 100755 index cfbb5f5f..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.min.js deleted file mode 100755 index 10e4c17f..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-vi-VN.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.js deleted file mode 100755 index 8cbd7746..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.min.js deleted file mode 100755 index 7e960a9a..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-CN.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.js deleted file mode 100755 index 68fe89ad..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.js +++ /dev/null @@ -1,155 +0,0 @@ -(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); diff --git a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.min.js b/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.min.js deleted file mode 100755 index ecc745a2..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/lang/summernote-zh-TW.min.js +++ /dev/null @@ -1,3 +0,0 @@ -/*! Summernote v0.8.12 | (c) 2013- Alan Hong and other contributors | MIT license */ - -!function(e){e.extend(e.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); \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/summernote-0.8.12-dist.zip b/app/frontend/static/assets/vendors/summernote/dist/summernote-0.8.12-dist.zip deleted file mode 100755 index 63cd4079..00000000 Binary files a/app/frontend/static/assets/vendors/summernote/dist/summernote-0.8.12-dist.zip and /dev/null differ diff --git a/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.css b/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.css deleted file mode 100755 index 245cebfd..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:"summernote";font-style:normal;font-weight:normal;src:url("./font/summernote.eot?1d9aeaaff0a8939558a45be6cd52cd4c");src:url("./font/summernote.eot?1d9aeaaff0a8939558a45be6cd52cd4c#iefix") format("embedded-opentype"),url("./font/summernote.woff?1d9aeaaff0a8939558a45be6cd52cd4c") format("woff"),url("./font/summernote.ttf?1d9aeaaff0a8939558a45be6cd52cd4c") format("truetype")}[class^="note-icon-"]:before,[class*=" note-icon-"]:before{display:inline-block;font:normal normal normal 14px summernote;font-size:inherit;-webkit-font-smoothing:antialiased;text-decoration:inherit;text-rendering:auto;text-transform:none;vertical-align:middle;speak:none;-moz-osx-font-smoothing:grayscale}.note-icon-align-center:before,.note-icon-align-indent:before,.note-icon-align-justify:before,.note-icon-align-left:before,.note-icon-align-outdent:before,.note-icon-align-right:before,.note-icon-align:before,.note-icon-arrow-circle-down:before,.note-icon-arrow-circle-left:before,.note-icon-arrow-circle-right:before,.note-icon-arrow-circle-up:before,.note-icon-arrows-alt:before,.note-icon-arrows-h:before,.note-icon-arrows-v:before,.note-icon-bold:before,.note-icon-caret:before,.note-icon-chain-broken:before,.note-icon-circle:before,.note-icon-close:before,.note-icon-code:before,.note-icon-col-after:before,.note-icon-col-before:before,.note-icon-col-remove:before,.note-icon-eraser:before,.note-icon-float-left:before,.note-icon-float-none:before,.note-icon-float-right:before,.note-icon-font:before,.note-icon-frame:before,.note-icon-italic:before,.note-icon-link:before,.note-icon-magic:before,.note-icon-menu-check:before,.note-icon-minus:before,.note-icon-orderedlist:before,.note-icon-pencil:before,.note-icon-picture:before,.note-icon-question:before,.note-icon-redo:before,.note-icon-rollback:before,.note-icon-row-above:before,.note-icon-row-below:before,.note-icon-row-remove:before,.note-icon-special-character:before,.note-icon-square:before,.note-icon-strikethrough:before,.note-icon-subscript:before,.note-icon-summernote:before,.note-icon-superscript:before,.note-icon-table:before,.note-icon-text-height:before,.note-icon-trash:before,.note-icon-underline:before,.note-icon-undo:before,.note-icon-unorderedlist:before,.note-icon-video:before{display:inline-block;font-family:"summernote";font-style:normal;font-weight:normal;text-decoration:inherit}.note-icon-align-center:before{content:"\f101"}.note-icon-align-indent:before{content:"\f102"}.note-icon-align-justify:before{content:"\f103"}.note-icon-align-left:before{content:"\f104"}.note-icon-align-outdent:before{content:"\f105"}.note-icon-align-right:before{content:"\f106"}.note-icon-align:before{content:"\f107"}.note-icon-arrow-circle-down:before{content:"\f108"}.note-icon-arrow-circle-left:before{content:"\f109"}.note-icon-arrow-circle-right:before{content:"\f10a"}.note-icon-arrow-circle-up:before{content:"\f10b"}.note-icon-arrows-alt:before{content:"\f10c"}.note-icon-arrows-h:before{content:"\f10d"}.note-icon-arrows-v:before{content:"\f10e"}.note-icon-bold:before{content:"\f10f"}.note-icon-caret:before{content:"\f110"}.note-icon-chain-broken:before{content:"\f111"}.note-icon-circle:before{content:"\f112"}.note-icon-close:before{content:"\f113"}.note-icon-code:before{content:"\f114"}.note-icon-col-after:before{content:"\f115"}.note-icon-col-before:before{content:"\f116"}.note-icon-col-remove:before{content:"\f117"}.note-icon-eraser:before{content:"\f118"}.note-icon-float-left:before{content:"\f119"}.note-icon-float-none:before{content:"\f11a"}.note-icon-float-right:before{content:"\f11b"}.note-icon-font:before{content:"\f11c"}.note-icon-frame:before{content:"\f11d"}.note-icon-italic:before{content:"\f11e"}.note-icon-link:before{content:"\f11f"}.note-icon-magic:before{content:"\f120"}.note-icon-menu-check:before{content:"\f121"}.note-icon-minus:before{content:"\f122"}.note-icon-orderedlist:before{content:"\f123"}.note-icon-pencil:before{content:"\f124"}.note-icon-picture:before{content:"\f125"}.note-icon-question:before{content:"\f126"}.note-icon-redo:before{content:"\f127"}.note-icon-rollback:before{content:"\f128"}.note-icon-row-above:before{content:"\f129"}.note-icon-row-below:before{content:"\f12a"}.note-icon-row-remove:before{content:"\f12b"}.note-icon-special-character:before{content:"\f12c"}.note-icon-square:before{content:"\f12d"}.note-icon-strikethrough:before{content:"\f12e"}.note-icon-subscript:before{content:"\f12f"}.note-icon-summernote:before{content:"\f130"}.note-icon-superscript:before{content:"\f131"}.note-icon-table:before{content:"\f132"}.note-icon-text-height:before{content:"\f133"}.note-icon-trash:before{content:"\f134"}.note-icon-underline:before{content:"\f135"}.note-icon-undo:before{content:"\f136"}.note-icon-unorderedlist:before{content:"\f137"}.note-icon-video:before{content:"\f138"}.note-editor{position:relative}.note-editor .note-dropzone{position:absolute;z-index:100;display:none;color:#87cefa;background-color:#fff;opacity:.95}.note-editor .note-dropzone .note-dropzone-message{display:table-cell;font-size:28px;font-weight:700;text-align:center;vertical-align:middle}.note-editor .note-dropzone.hover{color:#098ddf}.note-editor.dragover .note-dropzone{display:table}.note-editor .note-editing-area{position:relative}.note-editor .note-editing-area .note-editable{outline:0}.note-editor .note-editing-area .note-editable sup{vertical-align:super}.note-editor .note-editing-area .note-editable sub{vertical-align:sub}.note-editor .note-editing-area img.note-float-left{margin-right:10px}.note-editor .note-editing-area img.note-float-right{margin-left:10px}.note-editor.note-frame{border:1px solid #a9a9a9}.note-editor.note-frame.codeview .note-editing-area .note-editable{display:none}.note-editor.note-frame.codeview .note-editing-area .note-codable{display:block}.note-editor.note-frame .note-editing-area{overflow:hidden}.note-editor.note-frame .note-editing-area .note-editable{padding:10px;overflow:auto;color:#000;word-wrap:break-word;background-color:#fff}.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"]{background-color:#e5e5e5}.note-editor.note-frame .note-editing-area .note-codable{display:none;width:100%;padding:10px;margin-bottom:0;font-family:Menlo,Monaco,monospace,sans-serif;font-size:14px;color:#ccc;background-color:#222;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;outline:0;box-shadow:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;resize:none}.note-editor.note-frame.fullscreen{position:fixed;top:0;left:0;z-index:1050;width:100%!important}.note-editor.note-frame.fullscreen .note-editable{background-color:#fff}.note-editor.note-frame.fullscreen .note-resizebar{display:none}.note-editor.note-frame .note-status-output{display:block;width:100%;height:20px;margin-bottom:0;font-size:14px;line-height:1.42857143;color:#000;border:0;border-top:1px solid #e2e2e2}.note-editor.note-frame .note-status-output:empty{height:0;border-top:0 solid transparent}.note-editor.note-frame .note-status-output .pull-right{float:right!important}.note-editor.note-frame .note-status-output .text-muted{color:#777}.note-editor.note-frame .note-status-output .text-primary{color:#286090}.note-editor.note-frame .note-status-output .text-success{color:#3c763d}.note-editor.note-frame .note-status-output .text-info{color:#31708f}.note-editor.note-frame .note-status-output .text-warning{color:#8a6d3b}.note-editor.note-frame .note-status-output .text-danger{color:#a94442}.note-editor.note-frame .note-status-output .alert{padding:7px 10px 2px 10px;margin:-7px 0 0 0;color:#000;background-color:#f5f5f5;border-radius:0}.note-editor.note-frame .note-status-output .alert .note-icon{margin-right:5px}.note-editor.note-frame .note-status-output .alert-success{color:#3c763d!important;background-color:#dff0d8!important}.note-editor.note-frame .note-status-output .alert-info{color:#31708f!important;background-color:#d9edf7!important}.note-editor.note-frame .note-status-output .alert-warning{color:#8a6d3b!important;background-color:#fcf8e3!important}.note-editor.note-frame .note-status-output .alert-danger{color:#a94442!important;background-color:#f2dede!important}.note-editor.note-frame .note-statusbar{background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.note-editor.note-frame .note-statusbar .note-resizebar{width:100%;height:9px;padding-top:1px;cursor:ns-resize}.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar{width:20px;margin:1px auto;border-top:1px solid #a9a9a9}.note-editor.note-frame .note-statusbar.locked .note-resizebar{cursor:default}.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar{display:none}.note-editor.note-frame .note-placeholder{padding:10px}.note-popover.popover{display:none;max-width:none}.note-popover.popover .popover-content a{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle}.note-popover.popover .arrow{left:20px!important}.note-toolbar{position:relative;z-index:500}.note-popover .popover-content,.card-header.note-toolbar{padding:0 0 5px 5px;margin:0;background:#f5f5f5}.note-popover .popover-content>.btn-group,.card-header.note-toolbar>.btn-group{margin-top:5px;margin-right:5px;margin-left:0}.note-popover .popover-content .btn-group .note-table,.card-header.note-toolbar .btn-group .note-table{min-width:0;padding:5px}.note-popover .popover-content .btn-group .note-table .note-dimension-picker,.card-header.note-toolbar .btn-group .note-table .note-dimension-picker{font-size:18px}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,.card-header.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher{position:absolute!important;z-index:3;width:10em;height:10em;cursor:pointer}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,.card-header.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted{position:relative!important;z-index:1;width:5em;height:5em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat}.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,.card-header.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted{position:absolute!important;z-index:2;width:1em;height:1em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat}.note-popover .popover-content .note-style .dropdown-style blockquote,.card-header.note-toolbar .note-style .dropdown-style blockquote,.note-popover .popover-content .note-style .dropdown-style pre,.card-header.note-toolbar .note-style .dropdown-style pre{padding:5px 10px;margin:0}.note-popover .popover-content .note-style .dropdown-style h1,.card-header.note-toolbar .note-style .dropdown-style h1,.note-popover .popover-content .note-style .dropdown-style h2,.card-header.note-toolbar .note-style .dropdown-style h2,.note-popover .popover-content .note-style .dropdown-style h3,.card-header.note-toolbar .note-style .dropdown-style h3,.note-popover .popover-content .note-style .dropdown-style h4,.card-header.note-toolbar .note-style .dropdown-style h4,.note-popover .popover-content .note-style .dropdown-style h5,.card-header.note-toolbar .note-style .dropdown-style h5,.note-popover .popover-content .note-style .dropdown-style h6,.card-header.note-toolbar .note-style .dropdown-style h6,.note-popover .popover-content .note-style .dropdown-style p,.card-header.note-toolbar .note-style .dropdown-style p{padding:0;margin:0}.note-popover .popover-content .note-color-all .dropdown-menu,.card-header.note-toolbar .note-color-all .dropdown-menu{min-width:337px}.note-popover .popover-content .note-color .dropdown-toggle,.card-header.note-toolbar .note-color .dropdown-toggle{width:20px;padding-left:5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette,.card-header.note-toolbar .note-color .dropdown-menu .note-palette{display:inline-block;width:160px;margin:0}.note-popover .popover-content .note-color .dropdown-menu .note-palette:first-child,.card-header.note-toolbar .note-color .dropdown-menu .note-palette:first-child{margin:0 5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-palette-title,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-palette-title{margin:2px 7px;font-size:12px;text-align:center;border-bottom:1px solid #eee}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-reset,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-color-reset,.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-select,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-color-select{width:100%;padding:0 3px;margin:3px;font-size:11px;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-row,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-color-row{height:20px}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-reset:hover,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-color-reset:hover{background:#eee}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-color-select-btn,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-color-select-btn{display:none}.note-popover .popover-content .note-color .dropdown-menu .note-palette .note-holder-custom .note-color-btn,.card-header.note-toolbar .note-color .dropdown-menu .note-palette .note-holder-custom .note-color-btn{border:1px solid #eee}.note-popover .popover-content .note-para .dropdown-menu,.card-header.note-toolbar .note-para .dropdown-menu{min-width:216px;padding:5px}.note-popover .popover-content .note-para .dropdown-menu>div:first-child,.card-header.note-toolbar .note-para .dropdown-menu>div:first-child{margin-right:5px}.note-popover .popover-content .dropdown-menu,.card-header.note-toolbar .dropdown-menu{min-width:90px}.note-popover .popover-content .dropdown-menu.right,.card-header.note-toolbar .dropdown-menu.right{right:0;left:auto}.note-popover .popover-content .dropdown-menu.right::before,.card-header.note-toolbar .dropdown-menu.right::before{right:9px;left:auto!important}.note-popover .popover-content .dropdown-menu.right::after,.card-header.note-toolbar .dropdown-menu.right::after{right:10px;left:auto!important}.note-popover .popover-content .dropdown-menu.note-check a i,.card-header.note-toolbar .dropdown-menu.note-check a i{color:deepskyblue;visibility:hidden}.note-popover .popover-content .dropdown-menu.note-check a.checked i,.card-header.note-toolbar .dropdown-menu.note-check a.checked i{visibility:visible}.note-popover .popover-content .note-fontsize-10,.card-header.note-toolbar .note-fontsize-10{font-size:10px}.note-popover .popover-content .note-color-palette,.card-header.note-toolbar .note-color-palette{line-height:1}.note-popover .popover-content .note-color-palette div .note-color-btn,.card-header.note-toolbar .note-color-palette div .note-color-btn{width:20px;height:20px;padding:0;margin:0;border:1px solid #fff}.note-popover .popover-content .note-color-palette div .note-color-btn:hover,.card-header.note-toolbar .note-color-palette div .note-color-btn:hover{border:1px solid #000}.note-dialog>div{display:none}.note-dialog .form-group{margin-right:0;margin-left:0}.note-dialog .note-modal-form{margin:0}.note-dialog .note-image-dialog .note-dropzone{min-height:100px;margin-bottom:10px;font-size:30px;line-height:4;color:lightgray;text-align:center;border:4px dashed lightgray}@-moz-document url-prefix(){.note-image-input{height:auto}}.note-placeholder{position:absolute;display:none;color:gray}.note-handle .note-control-selection{position:absolute;display:none;border:1px solid black}.note-handle .note-control-selection>div{position:absolute}.note-handle .note-control-selection .note-control-selection-bg{width:100%;height:100%;background-color:black;-webkit-opacity:.3;-khtml-opacity:.3;-moz-opacity:.3;opacity:.3;-ms-filter:alpha(opacity=30);filter:alpha(opacity=30)}.note-handle .note-control-selection .note-control-handle{width:7px;height:7px;border:1px solid black}.note-handle .note-control-selection .note-control-holder{width:7px;height:7px;border:1px solid black}.note-handle .note-control-selection .note-control-sizing{width:7px;height:7px;background-color:white;border:1px solid black}.note-handle .note-control-selection .note-control-nw{top:-5px;left:-5px;border-right:0;border-bottom:0}.note-handle .note-control-selection .note-control-ne{top:-5px;right:-5px;border-bottom:0;border-left:none}.note-handle .note-control-selection .note-control-sw{bottom:-5px;left:-5px;border-top:0;border-right:0}.note-handle .note-control-selection .note-control-se{right:-5px;bottom:-5px;cursor:se-resize}.note-handle .note-control-selection .note-control-se.note-control-holder{cursor:default;border-top:0;border-left:none}.note-handle .note-control-selection .note-control-selection-info{right:0;bottom:0;padding:5px;margin:5px;font-size:12px;color:#fff;background-color:#000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-opacity:.7;-khtml-opacity:.7;-moz-opacity:.7;opacity:.7;-ms-filter:alpha(opacity=70);filter:alpha(opacity=70)}.note-hint-popover{min-width:100px;padding:2px}.note-hint-popover .popover-content{max-height:150px;padding:3px;overflow:auto}.note-hint-popover .popover-content .note-hint-group .note-hint-item{display:block!important;padding:3px}.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover{display:block;clear:both;font-weight:400;line-height:1.4;color:#fff;text-decoration:none;white-space:nowrap;cursor:pointer;background-color:#428bca;outline:0} \ No newline at end of file diff --git a/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.js b/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.js deleted file mode 100755 index f0ee8394..00000000 --- a/app/frontend/static/assets/vendors/summernote/dist/summernote-bs4.js +++ /dev/null @@ -1,7768 +0,0 @@ -/** - * Super simple wysiwyg editor v0.8.12 - * https://summernote.org - * - * Copyright 2013- Alan Hong. and other contributors - * summernote may be freely distributed under the MIT license. - * - * Date: 2019-05-16T08:16Z - */ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) : - typeof define === 'function' && define.amd ? define(['jquery'], factory) : - (global = global || self, factory(global.jQuery)); -}(this, function ($$1) { 'use strict'; - - $$1 = $$1 && $$1.hasOwnProperty('default') ? $$1['default'] : $$1; - - var Renderer = /** @class */ (function () { - function Renderer(markup, children, options, callback) { - this.markup = markup; - this.children = children; - this.options = options; - this.callback = callback; - } - Renderer.prototype.render = function ($parent) { - var $node = $$1(this.markup); - if (this.options && this.options.contents) { - $node.html(this.options.contents); - } - if (this.options && this.options.className) { - $node.addClass(this.options.className); - } - if (this.options && this.options.data) { - $$1.each(this.options.data, function (k, v) { - $node.attr('data-' + k, v); - }); - } - if (this.options && this.options.click) { - $node.on('click', this.options.click); - } - if (this.children) { - var $container_1 = $node.find('.note-children-container'); - this.children.forEach(function (child) { - child.render($container_1.length ? $container_1 : $node); - }); - } - if (this.callback) { - this.callback($node, this.options); - } - if (this.options && this.options.callback) { - this.options.callback($node); - } - if ($parent) { - $parent.append($node); - } - return $node; - }; - return Renderer; - }()); - var renderer = { - create: function (markup, callback) { - return function () { - var options = typeof arguments[1] === 'object' ? arguments[1] : arguments[0]; - var children = Array.isArray(arguments[0]) ? arguments[0] : []; - if (options && options.children) { - children = options.children; - } - return new Renderer(markup, children, options, callback); - }; - } - }; - - var editor = renderer.create('
'); - var toolbar = renderer.create(''); - var editingArea = renderer.create('
'); - var codable = renderer.create('