some error were fixed
This commit is contained in:
parent
8dc9b2f409
commit
5299b50732
|
|
@ -54,7 +54,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'asset_url' => env('ASSET_URL', 'public'),
|
'asset_url' => env('public', 'public'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
30
index.php
30
index.php
|
|
@ -1,30 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @package Akaunting
|
|
||||||
* @copyright 2017-2022 Akaunting. All rights reserved.
|
|
||||||
* @license GNU GPL version 3; see LICENSE.txt
|
|
||||||
* @link https://akaunting.com
|
|
||||||
*/
|
|
||||||
|
|
||||||
define('LARAVEL_START', microtime(true));
|
|
||||||
|
|
||||||
// Check for maintenance
|
|
||||||
if (file_exists($maintenance = __DIR__ . '/storage/framework/maintenance.php')) {
|
|
||||||
require $maintenance;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Register the auto-loader
|
|
||||||
require __DIR__ . '/bootstrap/autoload.php';
|
|
||||||
|
|
||||||
// Load the app
|
|
||||||
$app = require_once __DIR__ . '/bootstrap/app.php';
|
|
||||||
|
|
||||||
// Run the app
|
|
||||||
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
|
|
||||||
|
|
||||||
$response = $kernel->handle(
|
|
||||||
$request = Illuminate\Http\Request::capture()
|
|
||||||
)->send();
|
|
||||||
|
|
||||||
$kernel->terminate($request, $response);
|
|
||||||
|
|
@ -59,7 +59,7 @@ document.querySelectorAll("[data-table-body]").forEach((table) => {
|
||||||
actions_html.addEventListener('click', function() {
|
actions_html.addEventListener('click', function() {
|
||||||
this.closest('td').querySelector('[data-mobile-actions-modal]').classList.add('show');
|
this.closest('td').querySelector('[data-mobile-actions-modal]').classList.add('show');
|
||||||
this.closest('td').querySelector('[data-mobile-actions-modal]').classList.remove('opacity-0', 'invisible');
|
this.closest('td').querySelector('[data-mobile-actions-modal]').classList.remove('opacity-0', 'invisible');
|
||||||
|
|
||||||
this.closest('td').querySelector('[data-mobile-actions-modal]').addEventListener('click', function() {
|
this.closest('td').querySelector('[data-mobile-actions-modal]').addEventListener('click', function() {
|
||||||
this.classList.add('opacity-0', 'invisible');
|
this.classList.add('opacity-0', 'invisible');
|
||||||
this.classList.remove('show');
|
this.classList.remove('show');
|
||||||
|
|
@ -125,7 +125,7 @@ function expandSub(key, event) {
|
||||||
//collapse accordion
|
//collapse accordion
|
||||||
|
|
||||||
// run dropdown and tooltip functions for Virtual DOM
|
// run dropdown and tooltip functions for Virtual DOM
|
||||||
document.addEventListener("DOMContentLoaded", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
const triggers = [
|
const triggers = [
|
||||||
{ event: "mouseover", checker: isHoverable },
|
{ event: "mouseover", checker: isHoverable },
|
||||||
{ event: "mouseout", checker: isHoverable },
|
{ event: "mouseout", checker: isHoverable },
|
||||||
|
|
@ -197,7 +197,7 @@ function runDropdown(dropdownToggleEl) {
|
||||||
|
|
||||||
function handleDropdownOutsideClick(event) {
|
function handleDropdownOutsideClick(event) {
|
||||||
var targetElement = event.target; // clicked element
|
var targetElement = event.target; // clicked element
|
||||||
|
|
||||||
if (
|
if (
|
||||||
targetElement !== dropdownMenuEl &&
|
targetElement !== dropdownMenuEl &&
|
||||||
targetElement !== dropdownToggleEl &&
|
targetElement !== dropdownToggleEl &&
|
||||||
|
|
@ -212,16 +212,16 @@ function runDropdown(dropdownToggleEl) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} // hide popper when clicking outside the element
|
} // hide popper when clicking outside the element
|
||||||
|
|
||||||
document.body.addEventListener("click", handleDropdownOutsideClick, true);
|
document.body.addEventListener("click", handleDropdownOutsideClick, true);
|
||||||
|
|
||||||
if (dropdownMenuEl.getAttribute("data-click-outside-none") != null) {
|
if (dropdownMenuEl.getAttribute("data-click-outside-none") != null) {
|
||||||
if (event.target.getAttribute("data-click-outside") != null || event.target.parentElement.getAttribute("data-click-outside") != null) {
|
if (event.target.getAttribute("data-click-outside") != null || event.target.parentElement.getAttribute("data-click-outside") != null) {
|
||||||
dropdownMenuEl.classList.add("hidden");
|
dropdownMenuEl.classList.add("hidden");
|
||||||
dropdownMenuEl.classList.remove("block");
|
dropdownMenuEl.classList.remove("block");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
dropdownMenuEl.classList.add("block");
|
dropdownMenuEl.classList.add("block");
|
||||||
dropdownMenuEl.classList.remove("hidden");
|
dropdownMenuEl.classList.remove("hidden");
|
||||||
}
|
}
|
||||||
|
|
@ -374,12 +374,12 @@ function marqueeAnimation(truncate) {
|
||||||
truncate.parentElement.classList.remove('animate-marquee_long');
|
truncate.parentElement.classList.remove('animate-marquee_long');
|
||||||
truncate.parentElement.classList.add('animate-marquee');
|
truncate.parentElement.classList.add('animate-marquee');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (truncate.parentElement.classList.contains('truncate')) {
|
if (truncate.parentElement.classList.contains('truncate')) {
|
||||||
truncate.parentElement.classList.remove('truncate');
|
truncate.parentElement.classList.remove('truncate');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
truncate.addEventListener('mouseout', function () {
|
truncate.addEventListener('mouseout', function () {
|
||||||
truncate.parentElement.style.animationPlayState = 'paused';
|
truncate.parentElement.style.animationPlayState = 'paused';
|
||||||
truncate.parentElement.classList.remove('animate-marquee');
|
truncate.parentElement.classList.remove('animate-marquee');
|
||||||
|
|
@ -393,7 +393,7 @@ function marqueeAnimation(truncate) {
|
||||||
if (truncate.querySelector('.truncate') !== null && truncate.querySelector('.truncate').classList.contains('truncate')) {
|
if (truncate.querySelector('.truncate') !== null && truncate.querySelector('.truncate').classList.contains('truncate')) {
|
||||||
let old_element = truncate.querySelector('.truncate');
|
let old_element = truncate.querySelector('.truncate');
|
||||||
let parent = old_element.parentNode;
|
let parent = old_element.parentNode;
|
||||||
|
|
||||||
let new_element = document.createElement('span');
|
let new_element = document.createElement('span');
|
||||||
new_element.innerHTML = old_element.innerHTML;
|
new_element.innerHTML = old_element.innerHTML;
|
||||||
new_element.classList = old_element.classList;
|
new_element.classList = old_element.classList;
|
||||||
|
|
@ -401,7 +401,7 @@ function marqueeAnimation(truncate) {
|
||||||
parent.replaceChild(new_element, old_element);
|
parent.replaceChild(new_element, old_element);
|
||||||
}
|
}
|
||||||
// if truncate has truncate class, text marquee animate doesn't pretty work
|
// if truncate has truncate class, text marquee animate doesn't pretty work
|
||||||
|
|
||||||
// There needs to be two div for disable/enable icons. If I don't create this div, animation will work with disable/enable icons.-->
|
// There needs to be two div for disable/enable icons. If I don't create this div, animation will work with disable/enable icons.-->
|
||||||
let animate_element = document.createElement('div');
|
let animate_element = document.createElement('div');
|
||||||
animate_element.classList.add('truncate');
|
animate_element.classList.add('truncate');
|
||||||
|
|
@ -423,7 +423,7 @@ document.querySelectorAll('[data-truncate-marquee]').forEach((truncate) => {
|
||||||
document.querySelectorAll('[data-index-icon]').forEach((defaultText) => {
|
document.querySelectorAll('[data-index-icon]').forEach((defaultText) => {
|
||||||
if (defaultText.closest('[data-table-list]')) {
|
if (defaultText.closest('[data-table-list]')) {
|
||||||
let icon_parents_element = defaultText.parentElement.parentElement.parentElement;
|
let icon_parents_element = defaultText.parentElement.parentElement.parentElement;
|
||||||
|
|
||||||
if (icon_parents_element.classList.contains('flex')) {
|
if (icon_parents_element.classList.contains('flex')) {
|
||||||
icon_parents_element.appendChild(defaultText);
|
icon_parents_element.appendChild(defaultText);
|
||||||
icon_parents_element.classList.remove('truncate');
|
icon_parents_element.classList.remove('truncate');
|
||||||
|
|
@ -449,7 +449,7 @@ document.querySelectorAll('[data-page-title-first]').forEach((first) => {
|
||||||
//added for equalize h1 width and parent element width. Because parent element has -ml-0.5 so didn't equalize
|
//added for equalize h1 width and parent element width. Because parent element has -ml-0.5 so didn't equalize
|
||||||
first.querySelector('h1').classList.add('mr-0.5');
|
first.querySelector('h1').classList.add('mr-0.5');
|
||||||
//added for equalize h1 width and parent element width. Because parent element has -ml-0.5 so didn't equalize
|
//added for equalize h1 width and parent element width. Because parent element has -ml-0.5 so didn't equalize
|
||||||
|
|
||||||
if (first.clientWidth < title_truncate.clientWidth && second.clientHeight > 0) {
|
if (first.clientWidth < title_truncate.clientWidth && second.clientHeight > 0) {
|
||||||
// added specific width styling for truncate text
|
// added specific width styling for truncate text
|
||||||
title_truncate.style.width = first.clientWidth + 'px';
|
title_truncate.style.width = first.clientWidth + 'px';
|
||||||
|
|
@ -457,20 +457,20 @@ document.querySelectorAll('[data-page-title-first]').forEach((first) => {
|
||||||
title_truncate.style.width = subtract + 'px';
|
title_truncate.style.width = subtract + 'px';
|
||||||
title_truncate.classList.add('truncate');
|
title_truncate.classList.add('truncate');
|
||||||
// added specific width styling for truncate text
|
// added specific width styling for truncate text
|
||||||
|
|
||||||
// added specific width styling into the parent title element for truncate text
|
// added specific width styling into the parent title element for truncate text
|
||||||
first.classList.add('w-full', 'sm:w-6/12');
|
first.classList.add('w-full', 'sm:w-6/12');
|
||||||
// added specific width styling into the parent title element for truncate text
|
// added specific width styling into the parent title element for truncate text
|
||||||
|
|
||||||
title_truncate.parentNode.classList.add('overflow-x-hidden', 'hide-scroll-bar');
|
title_truncate.parentNode.classList.add('overflow-x-hidden', 'hide-scroll-bar');
|
||||||
|
|
||||||
// added truncate animation for truncated text
|
// added truncate animation for truncated text
|
||||||
title_truncate.addEventListener('mouseover', function () {
|
title_truncate.addEventListener('mouseover', function () {
|
||||||
this.classList.add('animate-marquee');
|
this.classList.add('animate-marquee');
|
||||||
this.classList.remove('truncate');
|
this.classList.remove('truncate');
|
||||||
this.style.animationPlayState = 'running';
|
this.style.animationPlayState = 'running';
|
||||||
});
|
});
|
||||||
|
|
||||||
title_truncate.addEventListener('mouseout', function () {
|
title_truncate.addEventListener('mouseout', function () {
|
||||||
this.style.animationPlayState = 'paused';
|
this.style.animationPlayState = 'paused';
|
||||||
this.classList.remove('animate-marquee');
|
this.classList.remove('animate-marquee');
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,125 @@
|
||||||
|
{
|
||||||
|
"name": "Akaunting",
|
||||||
|
"short_name": "Akaunting",
|
||||||
|
"description": "Free invoicing and accounting software for small businesses and freelancers.",
|
||||||
|
"categories": [
|
||||||
|
"finance",
|
||||||
|
"business"
|
||||||
|
],
|
||||||
|
"start_url": ".?utm_source=pwa",
|
||||||
|
"display": "standalone",
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"orientation": "any",
|
||||||
|
"android_package_name": "com.akaunting.akaunting",
|
||||||
|
"prefer_related_applications": true,
|
||||||
|
"related_applications": [
|
||||||
|
{
|
||||||
|
"id": "com.akaunting.akaunting",
|
||||||
|
"platform": "play",
|
||||||
|
"url": "https://play.google.com/store/apps/details?id=com.akaunting.akaunting"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "itunes",
|
||||||
|
"url": "https://apps.apple.com/us/app/akaunting/id1573240410"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"splash": {
|
||||||
|
"640x1136": "/img/pwa/splash-640x1136.png",
|
||||||
|
"750x1334": "/img/pwa/splash-750x1334.png",
|
||||||
|
"828x1792": "/img/pwa/splash-828x1792.png",
|
||||||
|
"1125x2436": "/img/pwa/splash-1125x2436.png",
|
||||||
|
"1242x2208": "/img/pwa/splash-1242x2208.png",
|
||||||
|
"1242x2688": "/img/pwa/splash-1242x2688.png",
|
||||||
|
"1536x2048": "/img/pwa/splash-1536x2048.png",
|
||||||
|
"1668x2224": "/img/pwa/splash-1668x2224.png",
|
||||||
|
"1668x2388": "/img/pwa/splash-1668x2388.png",
|
||||||
|
"2048x2732": "/img/pwa/splash-2048x2732.png"
|
||||||
|
},
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-192x192.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"purpose": "maskable",
|
||||||
|
"src": "/img/pwa/icon-192x192-maskable.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"purpose": "maskable",
|
||||||
|
"src": "/img/pwa/icon-512x512-maskable.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"screenshots": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/screenshot-dashboard.png",
|
||||||
|
"sizes": "1932x1394",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/screenshot-invoice.png",
|
||||||
|
"sizes": "2748x1986",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"shortcuts": [
|
||||||
|
{
|
||||||
|
"name": "New Invoice",
|
||||||
|
"short_name": "New Invoice",
|
||||||
|
"description": "Create a new invoice",
|
||||||
|
"url": "sales/invoices/create?utm_source=pwa",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-192x192.png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "New Income",
|
||||||
|
"short_name": "New Income",
|
||||||
|
"description": "Create a new income",
|
||||||
|
"url": "banking/transactions/create?type=income&utm_source=pwa",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-192x192.png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "New Bill",
|
||||||
|
"short_name": "New Bill",
|
||||||
|
"description": "Create a new bill",
|
||||||
|
"url": "purchases/bills/create?utm_source=pwa",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-192x192.png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "New Expense",
|
||||||
|
"short_name": "New Expense",
|
||||||
|
"description": "Create a new expense",
|
||||||
|
"url": "banking/transactions/create?type=expense&utm_source=pwa",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/pwa/icon-192x192.png",
|
||||||
|
"sizes": "192x192"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"name": "ar",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"يناير",
|
||||||
|
"فبراير",
|
||||||
|
"مارس",
|
||||||
|
"أبريل",
|
||||||
|
"مايو",
|
||||||
|
"يونيو",
|
||||||
|
"يوليو",
|
||||||
|
"أغسطس",
|
||||||
|
"سبتمبر",
|
||||||
|
"أكتوبر",
|
||||||
|
"نوفمبر",
|
||||||
|
"ديسمبر"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"يناير",
|
||||||
|
"فبراير",
|
||||||
|
"مارس",
|
||||||
|
"أبريل",
|
||||||
|
"مايو",
|
||||||
|
"يونيو",
|
||||||
|
"يوليو",
|
||||||
|
"أغسطس",
|
||||||
|
"سبتمبر",
|
||||||
|
"أكتوبر",
|
||||||
|
"نوفمبر",
|
||||||
|
"ديسمبر"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"الأحد",
|
||||||
|
"الإثنين",
|
||||||
|
"الثلاثاء",
|
||||||
|
"الأربعاء",
|
||||||
|
"الخميس",
|
||||||
|
"الجمعة",
|
||||||
|
"السبت"
|
||||||
|
],
|
||||||
|
"shortDays": [
|
||||||
|
"أحد",
|
||||||
|
"إثنين",
|
||||||
|
"ثلاثاء",
|
||||||
|
"أربعاء",
|
||||||
|
"خميس",
|
||||||
|
"جمعة",
|
||||||
|
"سبت"
|
||||||
|
],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "تحميل بصيغة SVG",
|
||||||
|
"exportToPNG": "تحميل بصيغة PNG",
|
||||||
|
"exportToCSV": "تحميل بصيغة CSV",
|
||||||
|
"menu": "القائمة",
|
||||||
|
"selection": "تحديد",
|
||||||
|
"selectionZoom": "تكبير التحديد",
|
||||||
|
"zoomIn": "تكبير",
|
||||||
|
"zoomOut": "تصغير",
|
||||||
|
"pan": "تحريك",
|
||||||
|
"reset": "إعادة التعيين"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ca",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Gener",
|
||||||
|
"Febrer",
|
||||||
|
"Març",
|
||||||
|
"Abril",
|
||||||
|
"Maig",
|
||||||
|
"Juny",
|
||||||
|
"Juliol",
|
||||||
|
"Agost",
|
||||||
|
"Setembre",
|
||||||
|
"Octubre",
|
||||||
|
"Novembre",
|
||||||
|
"Desembre"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Gen.",
|
||||||
|
"Febr.",
|
||||||
|
"Març",
|
||||||
|
"Abr.",
|
||||||
|
"Maig",
|
||||||
|
"Juny",
|
||||||
|
"Jul.",
|
||||||
|
"Ag.",
|
||||||
|
"Set.",
|
||||||
|
"Oct.",
|
||||||
|
"Nov.",
|
||||||
|
"Des."
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Diumenge",
|
||||||
|
"Dilluns",
|
||||||
|
"Dimarts",
|
||||||
|
"Dimecres",
|
||||||
|
"Dijous",
|
||||||
|
"Divendres",
|
||||||
|
"Dissabte"
|
||||||
|
],
|
||||||
|
"shortDays": ["Dg", "Dl", "Dt", "Dc", "Dj", "Dv", "Ds"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Descarregar SVG",
|
||||||
|
"exportToPNG": "Descarregar PNG",
|
||||||
|
"exportToCSV": "Descarregar CSV",
|
||||||
|
"menu": "Menú",
|
||||||
|
"selection": "Seleccionar",
|
||||||
|
"selectionZoom": "Seleccionar Zoom",
|
||||||
|
"zoomIn": "Augmentar",
|
||||||
|
"zoomOut": "Disminuir",
|
||||||
|
"pan": "Navegació",
|
||||||
|
"reset": "Reiniciar Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "cs",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Leden",
|
||||||
|
"Únor",
|
||||||
|
"Březen",
|
||||||
|
"Duben",
|
||||||
|
"Květen",
|
||||||
|
"Červen",
|
||||||
|
"Červenec",
|
||||||
|
"Srpen",
|
||||||
|
"Září",
|
||||||
|
"Říjen",
|
||||||
|
"Listopad",
|
||||||
|
"Prosinec"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Led",
|
||||||
|
"Úno",
|
||||||
|
"Bře",
|
||||||
|
"Dub",
|
||||||
|
"Kvě",
|
||||||
|
"Čvn",
|
||||||
|
"Čvc",
|
||||||
|
"Srp",
|
||||||
|
"Zář",
|
||||||
|
"Říj",
|
||||||
|
"Lis",
|
||||||
|
"Pro"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Neděle",
|
||||||
|
"Pondělí",
|
||||||
|
"Úterý",
|
||||||
|
"Středa",
|
||||||
|
"Čtvrtek",
|
||||||
|
"Pátek",
|
||||||
|
"Sobota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Stáhnout SVG",
|
||||||
|
"exportToPNG": "Stáhnout PNG",
|
||||||
|
"exportToCSV": "Stáhnout CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Vybrat",
|
||||||
|
"selectionZoom": "Zoom: Vybrat",
|
||||||
|
"zoomIn": "Zoom: Přiblížit",
|
||||||
|
"zoomOut": "Zoom: Oddálit",
|
||||||
|
"pan": "Přesouvat",
|
||||||
|
"reset": "Resetovat"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "de",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januar",
|
||||||
|
"Februar",
|
||||||
|
"März",
|
||||||
|
"April",
|
||||||
|
"Mai",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"Dezember"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mär",
|
||||||
|
"Apr",
|
||||||
|
"Mai",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dez"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Sonntag",
|
||||||
|
"Montag",
|
||||||
|
"Dienstag",
|
||||||
|
"Mittwoch",
|
||||||
|
"Donnerstag",
|
||||||
|
"Freitag",
|
||||||
|
"Samstag"
|
||||||
|
],
|
||||||
|
"shortDays": ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "SVG speichern",
|
||||||
|
"exportToPNG": "PNG speichern",
|
||||||
|
"exportToCSV": "CSV speichern",
|
||||||
|
"menu": "Menü",
|
||||||
|
"selection": "Auswahl",
|
||||||
|
"selectionZoom": "Auswahl vergrößern",
|
||||||
|
"zoomIn": "Vergrößern",
|
||||||
|
"zoomOut": "Verkleinern",
|
||||||
|
"pan": "Verschieben",
|
||||||
|
"reset": "Zoom zurücksetzen"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "el",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Ιανουάριος",
|
||||||
|
"Φεβρουάριος",
|
||||||
|
"Μάρτιος",
|
||||||
|
"Απρίλιος",
|
||||||
|
"Μάιος",
|
||||||
|
"Ιούνιος",
|
||||||
|
"Ιούλιος",
|
||||||
|
"Αύγουστος",
|
||||||
|
"Σεπτέμβριος",
|
||||||
|
"Οκτώβριος",
|
||||||
|
"Νοέμβριος",
|
||||||
|
"Δεκέμβριος"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Ιαν",
|
||||||
|
"Φευ",
|
||||||
|
"Μαρ",
|
||||||
|
"Απρ",
|
||||||
|
"Μάι",
|
||||||
|
"Ιουν",
|
||||||
|
"Ιουλ",
|
||||||
|
"Αυγ",
|
||||||
|
"Σεπ",
|
||||||
|
"Οκτ",
|
||||||
|
"Νοε",
|
||||||
|
"Δεκ"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Κυριακή",
|
||||||
|
"Δευτέρα",
|
||||||
|
"Τρίτη",
|
||||||
|
"Τετάρτη",
|
||||||
|
"Πέμπτη",
|
||||||
|
"Παρασκευή",
|
||||||
|
"Σάββατο"
|
||||||
|
],
|
||||||
|
"shortDays": ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Λήψη SVG",
|
||||||
|
"exportToPNG": "Λήψη PNG",
|
||||||
|
"exportToCSV": "Λήψη CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Επιλογή",
|
||||||
|
"selectionZoom": "Μεγένθυση βάση επιλογής",
|
||||||
|
"zoomIn": "Μεγένθυνση",
|
||||||
|
"zoomOut": "Σμίκρυνση",
|
||||||
|
"pan": "Μετατόπιση",
|
||||||
|
"reset": "Επαναφορά μεγένθυνσης"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "en",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"January",
|
||||||
|
"February",
|
||||||
|
"March",
|
||||||
|
"April",
|
||||||
|
"May",
|
||||||
|
"June",
|
||||||
|
"July",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"October",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"May",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Oct",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Sunday",
|
||||||
|
"Monday",
|
||||||
|
"Tuesday",
|
||||||
|
"Wednesday",
|
||||||
|
"Thursday",
|
||||||
|
"Friday",
|
||||||
|
"Saturday"
|
||||||
|
],
|
||||||
|
"shortDays": ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Download SVG",
|
||||||
|
"exportToPNG": "Download PNG",
|
||||||
|
"exportToCSV": "Download CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Selection",
|
||||||
|
"selectionZoom": "Selection Zoom",
|
||||||
|
"zoomIn": "Zoom In",
|
||||||
|
"zoomOut": "Zoom Out",
|
||||||
|
"pan": "Panning",
|
||||||
|
"reset": "Reset Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "es",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Enero",
|
||||||
|
"Febrero",
|
||||||
|
"Marzo",
|
||||||
|
"Abril",
|
||||||
|
"Mayo",
|
||||||
|
"Junio",
|
||||||
|
"Julio",
|
||||||
|
"Agosto",
|
||||||
|
"Septiembre",
|
||||||
|
"Octubre",
|
||||||
|
"Noviembre",
|
||||||
|
"Diciembre"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Ene",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Abr",
|
||||||
|
"May",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Ago",
|
||||||
|
"Sep",
|
||||||
|
"Oct",
|
||||||
|
"Nov",
|
||||||
|
"Dic"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Domingo",
|
||||||
|
"Lunes",
|
||||||
|
"Martes",
|
||||||
|
"Miércoles",
|
||||||
|
"Jueves",
|
||||||
|
"Viernes",
|
||||||
|
"Sábado"
|
||||||
|
],
|
||||||
|
"shortDays": ["Dom", "Lun", "Mar", "Mie", "Jue", "Vie", "Sab"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Descargar SVG",
|
||||||
|
"exportToPNG": "Descargar PNG",
|
||||||
|
"exportToCSV": "Descargar CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Seleccionar",
|
||||||
|
"selectionZoom": "Seleccionar Zoom",
|
||||||
|
"zoomIn": "Aumentar",
|
||||||
|
"zoomOut": "Disminuir",
|
||||||
|
"pan": "Navegación",
|
||||||
|
"reset": "Reiniciar Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"name": "et",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"jaanuar",
|
||||||
|
"veebruar",
|
||||||
|
"märts",
|
||||||
|
"aprill",
|
||||||
|
"mai",
|
||||||
|
"juuni",
|
||||||
|
"juuli",
|
||||||
|
"august",
|
||||||
|
"september",
|
||||||
|
"oktoober",
|
||||||
|
"november",
|
||||||
|
"detsember"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"jaan",
|
||||||
|
"veebr",
|
||||||
|
"märts",
|
||||||
|
"apr",
|
||||||
|
"mai",
|
||||||
|
"juuni",
|
||||||
|
"juuli",
|
||||||
|
"aug",
|
||||||
|
"sept",
|
||||||
|
"okt",
|
||||||
|
"nov",
|
||||||
|
"dets"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"pühapäev",
|
||||||
|
"esmaspäev",
|
||||||
|
"teisipäev",
|
||||||
|
"kolmapäev",
|
||||||
|
"neljapäev",
|
||||||
|
"reede",
|
||||||
|
"laupäev"
|
||||||
|
],
|
||||||
|
"shortDays": [
|
||||||
|
"P",
|
||||||
|
"E",
|
||||||
|
"T",
|
||||||
|
"K",
|
||||||
|
"N",
|
||||||
|
"R",
|
||||||
|
"L"
|
||||||
|
],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Lae alla SVG",
|
||||||
|
"exportToPNG": "Lae alla PNG",
|
||||||
|
"exportToCSV": "Lae alla CSV",
|
||||||
|
"menu": "Menüü",
|
||||||
|
"selection": "Valik",
|
||||||
|
"selectionZoom": "Valiku suum",
|
||||||
|
"zoomIn": "Suurenda",
|
||||||
|
"zoomOut": "Vähenda",
|
||||||
|
"pan": "Panoraamimine",
|
||||||
|
"reset": "Lähtesta suum"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "fa",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"فروردین",
|
||||||
|
"اردیبهشت",
|
||||||
|
"خرداد",
|
||||||
|
"تیر",
|
||||||
|
"مرداد",
|
||||||
|
"شهریور",
|
||||||
|
"مهر",
|
||||||
|
"آبان",
|
||||||
|
"آذر",
|
||||||
|
"دی",
|
||||||
|
"بهمن",
|
||||||
|
"اسفند"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"فرو",
|
||||||
|
"ارد",
|
||||||
|
"خرد",
|
||||||
|
"تیر",
|
||||||
|
"مرد",
|
||||||
|
"شهر",
|
||||||
|
"مهر",
|
||||||
|
"آبا",
|
||||||
|
"آذر",
|
||||||
|
"دی",
|
||||||
|
"بهمـ",
|
||||||
|
"اسفـ"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"یکشنبه",
|
||||||
|
"دوشنبه",
|
||||||
|
"سه شنبه",
|
||||||
|
"چهارشنبه",
|
||||||
|
"پنجشنبه",
|
||||||
|
"جمعه",
|
||||||
|
"شنبه"
|
||||||
|
],
|
||||||
|
"shortDays": ["ی", "د", "س", "چ", "پ", "ج", "ش"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "دانلود SVG",
|
||||||
|
"exportToPNG": "دانلود PNG",
|
||||||
|
"exportToCSV": "دانلود CSV",
|
||||||
|
"menu": "منو",
|
||||||
|
"selection": "انتخاب",
|
||||||
|
"selectionZoom": "بزرگنمایی انتخابی",
|
||||||
|
"zoomIn": "بزرگنمایی",
|
||||||
|
"zoomOut": "کوچکنمایی",
|
||||||
|
"pan": "پیمایش",
|
||||||
|
"reset": "بازنشانی بزرگنمایی"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "fi",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Tammikuu",
|
||||||
|
"Helmikuu",
|
||||||
|
"Maaliskuu",
|
||||||
|
"Huhtikuu",
|
||||||
|
"Toukokuu",
|
||||||
|
"Kesäkuu",
|
||||||
|
"Heinäkuu",
|
||||||
|
"Elokuu",
|
||||||
|
"Syyskuu",
|
||||||
|
"Lokakuu",
|
||||||
|
"Marraskuu",
|
||||||
|
"Joulukuu"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Tammi",
|
||||||
|
"Helmi",
|
||||||
|
"Maalis",
|
||||||
|
"Huhti",
|
||||||
|
"Touko",
|
||||||
|
"Kesä",
|
||||||
|
"Heinä",
|
||||||
|
"Elo",
|
||||||
|
"Syys",
|
||||||
|
"Loka",
|
||||||
|
"Marras",
|
||||||
|
"Joulu"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Sunnuntai",
|
||||||
|
"Maanantai",
|
||||||
|
"Tiistai",
|
||||||
|
"Keskiviikko",
|
||||||
|
"Torstai",
|
||||||
|
"Perjantai",
|
||||||
|
"Lauantai"
|
||||||
|
],
|
||||||
|
"shortDays": ["Su", "Ma", "Ti", "Ke", "To", "Pe", "La"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Lataa SVG",
|
||||||
|
"exportToPNG": "Lataa PNG",
|
||||||
|
"exportToCSV": "Lataa CSV",
|
||||||
|
"menu": "Valikko",
|
||||||
|
"selection": "Valinta",
|
||||||
|
"selectionZoom": "Valinnan zoomaus",
|
||||||
|
"zoomIn": "Lähennä",
|
||||||
|
"zoomOut": "Loitonna",
|
||||||
|
"pan": "Panoroi",
|
||||||
|
"reset": "Nollaa zoomaus"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "fr",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"janvier",
|
||||||
|
"février",
|
||||||
|
"mars",
|
||||||
|
"avril",
|
||||||
|
"mai",
|
||||||
|
"juin",
|
||||||
|
"juillet",
|
||||||
|
"août",
|
||||||
|
"septembre",
|
||||||
|
"octobre",
|
||||||
|
"novembre",
|
||||||
|
"décembre"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"janv.",
|
||||||
|
"févr.",
|
||||||
|
"mars",
|
||||||
|
"avr.",
|
||||||
|
"mai",
|
||||||
|
"juin",
|
||||||
|
"juill.",
|
||||||
|
"août",
|
||||||
|
"sept.",
|
||||||
|
"oct.",
|
||||||
|
"nov.",
|
||||||
|
"déc."
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"dimanche",
|
||||||
|
"lundi",
|
||||||
|
"mardi",
|
||||||
|
"mercredi",
|
||||||
|
"jeudi",
|
||||||
|
"vendredi",
|
||||||
|
"samedi"
|
||||||
|
],
|
||||||
|
"shortDays": ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Télécharger au format SVG",
|
||||||
|
"exportToPNG": "Télécharger au format PNG",
|
||||||
|
"exportToCSV": "Télécharger au format CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Sélection",
|
||||||
|
"selectionZoom": "Sélection et zoom",
|
||||||
|
"zoomIn": "Zoomer",
|
||||||
|
"zoomOut": "Dézoomer",
|
||||||
|
"pan": "Navigation",
|
||||||
|
"reset": "Réinitialiser le zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "he",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"ינואר",
|
||||||
|
"פברואר",
|
||||||
|
"מרץ",
|
||||||
|
"אפריל",
|
||||||
|
"מאי",
|
||||||
|
"יוני",
|
||||||
|
"יולי",
|
||||||
|
"אוגוסט",
|
||||||
|
"ספטמבר",
|
||||||
|
"אוקטובר",
|
||||||
|
"נובמבר",
|
||||||
|
"דצמבר"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"ינו׳",
|
||||||
|
"פבר׳",
|
||||||
|
"מרץ",
|
||||||
|
"אפר׳",
|
||||||
|
"מאי",
|
||||||
|
"יוני",
|
||||||
|
"יולי",
|
||||||
|
"אוג׳",
|
||||||
|
"ספט׳",
|
||||||
|
"אוק׳",
|
||||||
|
"נוב׳",
|
||||||
|
"דצמ׳"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"ראשון",
|
||||||
|
"שני",
|
||||||
|
"שלישי",
|
||||||
|
"רביעי",
|
||||||
|
"חמישי",
|
||||||
|
"שישי",
|
||||||
|
"שבת"
|
||||||
|
],
|
||||||
|
"shortDays": ["א׳", "ב׳", "ג׳", "ד׳", "ה׳", "ו׳", "ש׳"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "הורד SVG",
|
||||||
|
"exportToPNG": "הורד PNG",
|
||||||
|
"exportToCSV": "הורד CSV",
|
||||||
|
"menu": "תפריט",
|
||||||
|
"selection": "בחירה",
|
||||||
|
"selectionZoom": "זום בחירה",
|
||||||
|
"zoomIn": "הגדלה",
|
||||||
|
"zoomOut": "הקטנה",
|
||||||
|
"pan": "הזזה",
|
||||||
|
"reset": "איפוס תצוגה"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "hi",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"जनवरी",
|
||||||
|
"फ़रवरी",
|
||||||
|
"मार्च",
|
||||||
|
"अप्रैल",
|
||||||
|
"मई",
|
||||||
|
"जून",
|
||||||
|
"जुलाई",
|
||||||
|
"अगस्त",
|
||||||
|
"सितंबर",
|
||||||
|
"अक्टूबर",
|
||||||
|
"नवंबर",
|
||||||
|
"दिसंबर"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"जनवरी",
|
||||||
|
"फ़रवरी",
|
||||||
|
"मार्च",
|
||||||
|
"अप्रैल",
|
||||||
|
"मई",
|
||||||
|
"जून",
|
||||||
|
"जुलाई",
|
||||||
|
"अगस्त",
|
||||||
|
"सितंबर",
|
||||||
|
"अक्टूबर",
|
||||||
|
"नवंबर",
|
||||||
|
"दिसंबर"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"रविवार",
|
||||||
|
"सोमवार",
|
||||||
|
"मंगलवार",
|
||||||
|
"बुधवार",
|
||||||
|
"गुरुवार",
|
||||||
|
"शुक्रवार",
|
||||||
|
"शनिवार"
|
||||||
|
],
|
||||||
|
"shortDays": ["रवि", "सोम", "मंगल", "बुध", "गुरु", "शुक्र", "शनि"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "निर्यात SVG",
|
||||||
|
"exportToPNG": "निर्यात PNG",
|
||||||
|
"exportToCSV": "निर्यात CSV",
|
||||||
|
"menu": "सूची",
|
||||||
|
"selection": "चयन",
|
||||||
|
"selectionZoom": "ज़ूम करना",
|
||||||
|
"zoomIn": "ज़ूम इन",
|
||||||
|
"zoomOut": "ज़ूम आउट",
|
||||||
|
"pan": "पैनिंग",
|
||||||
|
"reset": "फिर से कायम करना"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "hr",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Siječanj",
|
||||||
|
"Veljača",
|
||||||
|
"Ožujak",
|
||||||
|
"Travanj",
|
||||||
|
"Svibanj",
|
||||||
|
"Lipanj",
|
||||||
|
"Srpanj",
|
||||||
|
"Kolovoz",
|
||||||
|
"Rujan",
|
||||||
|
"Listopad",
|
||||||
|
"Studeni",
|
||||||
|
"Prosinac"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Sij",
|
||||||
|
"Velj",
|
||||||
|
"Ožu",
|
||||||
|
"Tra",
|
||||||
|
"Svi",
|
||||||
|
"Lip",
|
||||||
|
"Srp",
|
||||||
|
"Kol",
|
||||||
|
"Ruj",
|
||||||
|
"Lis",
|
||||||
|
"Stu",
|
||||||
|
"Pro"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Nedjelja",
|
||||||
|
"Ponedjeljak",
|
||||||
|
"Utorak",
|
||||||
|
"Srijeda",
|
||||||
|
"Četvrtak",
|
||||||
|
"Petak",
|
||||||
|
"Subota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Preuzmi SVG",
|
||||||
|
"exportToPNG": "Preuzmi PNG",
|
||||||
|
"exportToCSV": "Preuzmi CSV",
|
||||||
|
"menu": "Izbornik",
|
||||||
|
"selection": "Odabir",
|
||||||
|
"selectionZoom": "Odabirno povećanje",
|
||||||
|
"zoomIn": "Uvećajte prikaz",
|
||||||
|
"zoomOut": "Umanjite prikaz",
|
||||||
|
"pan": "Pomicanje",
|
||||||
|
"reset": "Povratak na zadani prikaz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
"name": "hu",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"január",
|
||||||
|
"február",
|
||||||
|
"március",
|
||||||
|
"április",
|
||||||
|
"május",
|
||||||
|
"június",
|
||||||
|
"július",
|
||||||
|
"augusztus",
|
||||||
|
"szeptember",
|
||||||
|
"október",
|
||||||
|
"november",
|
||||||
|
"december"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"jan",
|
||||||
|
"feb",
|
||||||
|
"mar",
|
||||||
|
"ápr",
|
||||||
|
"máj",
|
||||||
|
"jún",
|
||||||
|
"júl",
|
||||||
|
"aug",
|
||||||
|
"szept",
|
||||||
|
"okt",
|
||||||
|
"nov",
|
||||||
|
"dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"hétfő",
|
||||||
|
"kedd",
|
||||||
|
"szerda",
|
||||||
|
"csütörtök",
|
||||||
|
"péntek",
|
||||||
|
"szombat",
|
||||||
|
"vasárnap"
|
||||||
|
],
|
||||||
|
"shortDays": [
|
||||||
|
"H",
|
||||||
|
"K",
|
||||||
|
"Sze",
|
||||||
|
"Cs",
|
||||||
|
"P",
|
||||||
|
"Szo",
|
||||||
|
"V"
|
||||||
|
],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Exportálás SVG-be",
|
||||||
|
"exportToPNG": "Exportálás PNG-be",
|
||||||
|
"exportToCSV": "Exportálás CSV-be",
|
||||||
|
"menu": "Fő ajánlat",
|
||||||
|
"download": "SVG letöltése",
|
||||||
|
"selection": "Kiválasztás",
|
||||||
|
"selectionZoom": "Nagyító kiválasztása",
|
||||||
|
"zoomIn": "Nagyítás",
|
||||||
|
"zoomOut": "Kicsinyítés",
|
||||||
|
"pan": "Képcsúsztatás",
|
||||||
|
"reset": "Nagyító visszaállítása"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "hy",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Հունվար",
|
||||||
|
"Փետրվար",
|
||||||
|
"Մարտ",
|
||||||
|
"Ապրիլ",
|
||||||
|
"Մայիս",
|
||||||
|
"Հունիս",
|
||||||
|
"Հուլիս",
|
||||||
|
"Օգոստոս",
|
||||||
|
"Սեպտեմբեր",
|
||||||
|
"Հոկտեմբեր",
|
||||||
|
"Նոյեմբեր",
|
||||||
|
"Դեկտեմբեր"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Հնվ",
|
||||||
|
"Փտվ",
|
||||||
|
"Մրտ",
|
||||||
|
"Ապր",
|
||||||
|
"Մյս",
|
||||||
|
"Հնս",
|
||||||
|
"Հլիս",
|
||||||
|
"Օգս",
|
||||||
|
"Սեպ",
|
||||||
|
"Հոկ",
|
||||||
|
"Նոյ",
|
||||||
|
"Դեկ"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Կիրակի",
|
||||||
|
"Երկուշաբթի",
|
||||||
|
"Երեքշաբթի",
|
||||||
|
"Չորեքշաբթի",
|
||||||
|
"Հինգշաբթի",
|
||||||
|
"Ուրբաթ",
|
||||||
|
"Շաբաթ"
|
||||||
|
],
|
||||||
|
"shortDays": ["Կիր", "Երկ", "Երք", "Չրք", "Հնգ", "Ուրբ", "Շբթ"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Բեռնել SVG",
|
||||||
|
"exportToPNG": "Բեռնել PNG",
|
||||||
|
"exportToCSV": "Բեռնել CSV",
|
||||||
|
"menu": "Մենյու",
|
||||||
|
"selection": "Ընտրված",
|
||||||
|
"selectionZoom": "Ընտրված հատվածի խոշորացում",
|
||||||
|
"zoomIn": "Խոշորացնել",
|
||||||
|
"zoomOut": "Մանրացնել",
|
||||||
|
"pan": "Տեղափոխում",
|
||||||
|
"reset": "Բերել սկզբնական վիճակի"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"name": "id",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januari",
|
||||||
|
"Februari",
|
||||||
|
"Maret",
|
||||||
|
"April",
|
||||||
|
"Mei",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"Agustus",
|
||||||
|
"September",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"Desember"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Mei",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Agu",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Des"
|
||||||
|
],
|
||||||
|
"days": ["Minggu", "Senin", "Selasa", "Rabu", "kamis", "Jumat", "Sabtu"],
|
||||||
|
"shortDays": ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Unduh SVG",
|
||||||
|
"exportToPNG": "Unduh PNG",
|
||||||
|
"exportToCSV": "Unduh CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Pilihan",
|
||||||
|
"selectionZoom": "Perbesar Pilihan",
|
||||||
|
"zoomIn": "Perbesar",
|
||||||
|
"zoomOut": "Perkecil",
|
||||||
|
"pan": "Geser",
|
||||||
|
"reset": "Atur Ulang Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "it",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Gennaio",
|
||||||
|
"Febbraio",
|
||||||
|
"Marzo",
|
||||||
|
"Aprile",
|
||||||
|
"Maggio",
|
||||||
|
"Giugno",
|
||||||
|
"Luglio",
|
||||||
|
"Agosto",
|
||||||
|
"Settembre",
|
||||||
|
"Ottobre",
|
||||||
|
"Novembre",
|
||||||
|
"Dicembre"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Gen",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Mag",
|
||||||
|
"Giu",
|
||||||
|
"Lug",
|
||||||
|
"Ago",
|
||||||
|
"Set",
|
||||||
|
"Ott",
|
||||||
|
"Nov",
|
||||||
|
"Dic"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Domenica",
|
||||||
|
"Lunedì",
|
||||||
|
"Martedì",
|
||||||
|
"Mercoledì",
|
||||||
|
"Giovedì",
|
||||||
|
"Venerdì",
|
||||||
|
"Sabato"
|
||||||
|
],
|
||||||
|
"shortDays": ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Scarica SVG",
|
||||||
|
"exportToPNG": "Scarica PNG",
|
||||||
|
"exportToCSV": "Scarica CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Selezione",
|
||||||
|
"selectionZoom": "Seleziona Zoom",
|
||||||
|
"zoomIn": "Zoom In",
|
||||||
|
"zoomOut": "Zoom Out",
|
||||||
|
"pan": "Sposta",
|
||||||
|
"reset": "Reimposta Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ja",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"1月",
|
||||||
|
"2月",
|
||||||
|
"3月",
|
||||||
|
"4月",
|
||||||
|
"5月",
|
||||||
|
"6月",
|
||||||
|
"7月",
|
||||||
|
"8月",
|
||||||
|
"9月",
|
||||||
|
"10月",
|
||||||
|
"11月",
|
||||||
|
"12月"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"1月",
|
||||||
|
"2月",
|
||||||
|
"3月",
|
||||||
|
"4月",
|
||||||
|
"5月",
|
||||||
|
"6月",
|
||||||
|
"7月",
|
||||||
|
"8月",
|
||||||
|
"9月",
|
||||||
|
"10月",
|
||||||
|
"11月",
|
||||||
|
"12月"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"日曜日",
|
||||||
|
"月曜日",
|
||||||
|
"火曜日",
|
||||||
|
"水曜日",
|
||||||
|
"木曜日",
|
||||||
|
"金曜日",
|
||||||
|
"土曜日"
|
||||||
|
],
|
||||||
|
"shortDays": ["日", "月", "火", "水", "木", "金", "土"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "SVGダウンロード",
|
||||||
|
"exportToPNG": "PNGダウンロード",
|
||||||
|
"exportToCSV": "CSVダウンロード",
|
||||||
|
"menu": "メニュー",
|
||||||
|
"selection": "選択",
|
||||||
|
"selectionZoom": "選択ズーム",
|
||||||
|
"zoomIn": "拡大",
|
||||||
|
"zoomOut": "縮小",
|
||||||
|
"pan": "パン",
|
||||||
|
"reset": "ズームリセット"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ka",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"იანვარი",
|
||||||
|
"თებერვალი",
|
||||||
|
"მარტი",
|
||||||
|
"აპრილი",
|
||||||
|
"მაისი",
|
||||||
|
"ივნისი",
|
||||||
|
"ივლისი",
|
||||||
|
"აგვისტო",
|
||||||
|
"სექტემბერი",
|
||||||
|
"ოქტომბერი",
|
||||||
|
"ნოემბერი",
|
||||||
|
"დეკემბერი"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"იან",
|
||||||
|
"თებ",
|
||||||
|
"მარ",
|
||||||
|
"აპრ",
|
||||||
|
"მაი",
|
||||||
|
"ივნ",
|
||||||
|
"ივლ",
|
||||||
|
"აგვ",
|
||||||
|
"სექ",
|
||||||
|
"ოქტ",
|
||||||
|
"ნოე",
|
||||||
|
"დეკ"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"კვირა",
|
||||||
|
"ორშაბათი",
|
||||||
|
"სამშაბათი",
|
||||||
|
"ოთხშაბათი",
|
||||||
|
"ხუთშაბათი",
|
||||||
|
"პარასკევი",
|
||||||
|
"შაბათი"
|
||||||
|
],
|
||||||
|
"shortDays": ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "გადმოქაჩე SVG",
|
||||||
|
"exportToPNG": "გადმოქაჩე PNG",
|
||||||
|
"exportToCSV": "გადმოქაჩე CSV",
|
||||||
|
"menu": "მენიუ",
|
||||||
|
"selection": "არჩევა",
|
||||||
|
"selectionZoom": "არჩეულის გადიდება",
|
||||||
|
"zoomIn": "გადიდება",
|
||||||
|
"zoomOut": "დაპატარაება",
|
||||||
|
"pan": "გადაჩოჩება",
|
||||||
|
"reset": "გადიდების გაუქმება"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ko",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"1월",
|
||||||
|
"2월",
|
||||||
|
"3월",
|
||||||
|
"4월",
|
||||||
|
"5월",
|
||||||
|
"6월",
|
||||||
|
"7월",
|
||||||
|
"8월",
|
||||||
|
"9월",
|
||||||
|
"10월",
|
||||||
|
"11월",
|
||||||
|
"12월"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"1월",
|
||||||
|
"2월",
|
||||||
|
"3월",
|
||||||
|
"4월",
|
||||||
|
"5월",
|
||||||
|
"6월",
|
||||||
|
"7월",
|
||||||
|
"8월",
|
||||||
|
"9월",
|
||||||
|
"10월",
|
||||||
|
"11월",
|
||||||
|
"12월"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"일요일",
|
||||||
|
"월요일",
|
||||||
|
"화요일",
|
||||||
|
"수요일",
|
||||||
|
"목요일",
|
||||||
|
"금요일",
|
||||||
|
"토요일"
|
||||||
|
],
|
||||||
|
"shortDays": ["일", "월", "화", "수", "목", "금", "토"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "SVG 다운로드",
|
||||||
|
"exportToPNG": "PNG 다운로드",
|
||||||
|
"exportToCSV": "CSV 다운로드",
|
||||||
|
"menu": "메뉴",
|
||||||
|
"selection": "선택",
|
||||||
|
"selectionZoom": "선택영역 확대",
|
||||||
|
"zoomIn": "확대",
|
||||||
|
"zoomOut": "축소",
|
||||||
|
"pan": "패닝",
|
||||||
|
"reset": "원래대로"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "lt",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Sausis",
|
||||||
|
"Vasaris",
|
||||||
|
"Kovas",
|
||||||
|
"Balandis",
|
||||||
|
"Gegužė",
|
||||||
|
"Birželis",
|
||||||
|
"Liepa",
|
||||||
|
"Rugpjūtis",
|
||||||
|
"Rugsėjis",
|
||||||
|
"Spalis",
|
||||||
|
"Lapkritis",
|
||||||
|
"Gruodis"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Sau",
|
||||||
|
"Vas",
|
||||||
|
"Kov",
|
||||||
|
"Bal",
|
||||||
|
"Geg",
|
||||||
|
"Bir",
|
||||||
|
"Lie",
|
||||||
|
"Rgp",
|
||||||
|
"Rgs",
|
||||||
|
"Spl",
|
||||||
|
"Lap",
|
||||||
|
"Grd"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Sekmadienis",
|
||||||
|
"Pirmadienis",
|
||||||
|
"Antradienis",
|
||||||
|
"Trečiadienis",
|
||||||
|
"Ketvirtadienis",
|
||||||
|
"Penktadienis",
|
||||||
|
"Šeštadienis"
|
||||||
|
],
|
||||||
|
"shortDays": ["Sk", "Per", "An", "Tr", "Kt", "Pn", "Št"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Atsisiųsti SVG",
|
||||||
|
"exportToPNG": "Atsisiųsti PNG",
|
||||||
|
"exportToCSV": "Atsisiųsti CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Pasirinkimas",
|
||||||
|
"selectionZoom": "Zoom: Pasirinkimas",
|
||||||
|
"zoomIn": "Zoom: Priartinti",
|
||||||
|
"zoomOut": "Zoom: Atitolinti",
|
||||||
|
"pan": "Perkėlimas",
|
||||||
|
"reset": "Atstatyti"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
"name": "lv",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"janvāris",
|
||||||
|
"februāris",
|
||||||
|
"marts",
|
||||||
|
"aprīlis",
|
||||||
|
"maijs",
|
||||||
|
"jūnijs",
|
||||||
|
"jūlijs",
|
||||||
|
"augusts",
|
||||||
|
"septembris",
|
||||||
|
"oktobris",
|
||||||
|
"novembris",
|
||||||
|
"decembris"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"janv",
|
||||||
|
"febr",
|
||||||
|
"marts",
|
||||||
|
"apr",
|
||||||
|
"maijs",
|
||||||
|
"jūn",
|
||||||
|
"jūl",
|
||||||
|
"aug",
|
||||||
|
"sept",
|
||||||
|
"okt",
|
||||||
|
"nov",
|
||||||
|
"dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"svētdiena",
|
||||||
|
"pirmdiena",
|
||||||
|
"otrdiena",
|
||||||
|
"trešdiena",
|
||||||
|
"ceturtdiena",
|
||||||
|
"piektdiena",
|
||||||
|
"sestdiena"
|
||||||
|
],
|
||||||
|
"shortDays": [
|
||||||
|
"Sv",
|
||||||
|
"P",
|
||||||
|
"O",
|
||||||
|
"T",
|
||||||
|
"C",
|
||||||
|
"P",
|
||||||
|
"S"
|
||||||
|
],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Lejuplādēt SVG",
|
||||||
|
"exportToPNG": "Lejuplādēt PNG",
|
||||||
|
"exportToCSV": "Lejuplādēt CSV",
|
||||||
|
"menu": "Izvēlne",
|
||||||
|
"selection": "Atlase",
|
||||||
|
"selectionZoom": "Pietuvināt atlasi",
|
||||||
|
"zoomIn": "Pietuvināt",
|
||||||
|
"zoomOut": "Attālināt",
|
||||||
|
"pan": "Pārvietoties diagrammā",
|
||||||
|
"reset": "Atiestatīt pietuvinājumu"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "nb",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januar",
|
||||||
|
"Februar",
|
||||||
|
"Mars",
|
||||||
|
"April",
|
||||||
|
"Mai",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"Desember"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Mai",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Des"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Søndag",
|
||||||
|
"Mandag",
|
||||||
|
"Tirsdag",
|
||||||
|
"Onsdag",
|
||||||
|
"Torsdag",
|
||||||
|
"Fredag",
|
||||||
|
"Lørdag"
|
||||||
|
],
|
||||||
|
"shortDays": ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Last ned SVG",
|
||||||
|
"exportToPNG": "Last ned PNG",
|
||||||
|
"exportToCSV": "Last ned CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Velg",
|
||||||
|
"selectionZoom": "Zoom: Velg",
|
||||||
|
"zoomIn": "Zoome inn",
|
||||||
|
"zoomOut": "Zoome ut",
|
||||||
|
"pan": "Skyving",
|
||||||
|
"reset": "Start på nytt"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "nl",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januari",
|
||||||
|
"Februari",
|
||||||
|
"Maart",
|
||||||
|
"April",
|
||||||
|
"Mei",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"Augustus",
|
||||||
|
"September",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mrt",
|
||||||
|
"Apr",
|
||||||
|
"Mei",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Zondag",
|
||||||
|
"Maandag",
|
||||||
|
"Dinsdag",
|
||||||
|
"Woensdag",
|
||||||
|
"Donderdag",
|
||||||
|
"Vrijdag",
|
||||||
|
"Zaterdag"
|
||||||
|
],
|
||||||
|
"shortDays": ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Download SVG",
|
||||||
|
"exportToPNG": "Download PNG",
|
||||||
|
"exportToCSV": "Download CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Selectie",
|
||||||
|
"selectionZoom": "Zoom selectie",
|
||||||
|
"zoomIn": "Zoom in",
|
||||||
|
"zoomOut": "Zoom out",
|
||||||
|
"pan": "Verplaatsen",
|
||||||
|
"reset": "Standaardwaarden"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "pl",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Styczeń",
|
||||||
|
"Luty",
|
||||||
|
"Marzec",
|
||||||
|
"Kwiecień",
|
||||||
|
"Maj",
|
||||||
|
"Czerwiec",
|
||||||
|
"Lipiec",
|
||||||
|
"Sierpień",
|
||||||
|
"Wrzesień",
|
||||||
|
"Październik",
|
||||||
|
"Listopad",
|
||||||
|
"Grudzień"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Sty",
|
||||||
|
"Lut",
|
||||||
|
"Mar",
|
||||||
|
"Kwi",
|
||||||
|
"Maj",
|
||||||
|
"Cze",
|
||||||
|
"Lip",
|
||||||
|
"Sie",
|
||||||
|
"Wrz",
|
||||||
|
"Paź",
|
||||||
|
"Lis",
|
||||||
|
"Gru"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Niedziela",
|
||||||
|
"Poniedziałek",
|
||||||
|
"Wtorek",
|
||||||
|
"Środa",
|
||||||
|
"Czwartek",
|
||||||
|
"Piątek",
|
||||||
|
"Sobota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Nd", "Pn", "Wt", "Śr", "Cz", "Pt", "Sb"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Pobierz SVG",
|
||||||
|
"exportToPNG": "Pobierz PNG",
|
||||||
|
"exportToCSV": "Pobierz CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Wybieranie",
|
||||||
|
"selectionZoom": "Zoom: Wybieranie",
|
||||||
|
"zoomIn": "Zoom: Przybliż",
|
||||||
|
"zoomOut": "Zoom: Oddal",
|
||||||
|
"pan": "Przesuwanie",
|
||||||
|
"reset": "Resetuj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "pt-br",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Janeiro",
|
||||||
|
"Fevereiro",
|
||||||
|
"Março",
|
||||||
|
"Abril",
|
||||||
|
"Maio",
|
||||||
|
"Junho",
|
||||||
|
"Julho",
|
||||||
|
"Agosto",
|
||||||
|
"Setembro",
|
||||||
|
"Outubro",
|
||||||
|
"Novembro",
|
||||||
|
"Dezembro"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Fev",
|
||||||
|
"Mar",
|
||||||
|
"Abr",
|
||||||
|
"Mai",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Ago",
|
||||||
|
"Set",
|
||||||
|
"Out",
|
||||||
|
"Nov",
|
||||||
|
"Dez"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Domingo",
|
||||||
|
"Segunda",
|
||||||
|
"Terça",
|
||||||
|
"Quarta",
|
||||||
|
"Quinta",
|
||||||
|
"Sexta",
|
||||||
|
"Sábado"
|
||||||
|
],
|
||||||
|
"shortDays": ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sab"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Baixar SVG",
|
||||||
|
"exportToPNG": "Baixar PNG",
|
||||||
|
"exportToCSV": "Baixar CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Selecionar",
|
||||||
|
"selectionZoom": "Selecionar Zoom",
|
||||||
|
"zoomIn": "Aumentar",
|
||||||
|
"zoomOut": "Diminuir",
|
||||||
|
"pan": "Navegação",
|
||||||
|
"reset": "Reiniciar Zoom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "pt",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Janeiro",
|
||||||
|
"Fevereiro",
|
||||||
|
"Março",
|
||||||
|
"Abril",
|
||||||
|
"Maio",
|
||||||
|
"Junho",
|
||||||
|
"Julho",
|
||||||
|
"Agosto",
|
||||||
|
"Setembro",
|
||||||
|
"Outubro",
|
||||||
|
"Novembro",
|
||||||
|
"Dezembro"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Fev",
|
||||||
|
"Mar",
|
||||||
|
"Abr",
|
||||||
|
"Mai",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Ag",
|
||||||
|
"Set",
|
||||||
|
"Out",
|
||||||
|
"Nov",
|
||||||
|
"Dez"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Domingo",
|
||||||
|
"Segunda-feira",
|
||||||
|
"Terça-feira",
|
||||||
|
"Quarta-feira",
|
||||||
|
"Quinta-feira",
|
||||||
|
"Sexta-feira",
|
||||||
|
"Sábado"
|
||||||
|
],
|
||||||
|
"shortDays": ["Do", "Se", "Te", "Qa", "Qi", "Sx", "Sa"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Baixar SVG",
|
||||||
|
"exportToPNG": "Baixar PNG",
|
||||||
|
"exportToCSV": "Baixar CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Selecionar",
|
||||||
|
"selectionZoom": "Zoom: Selecionar",
|
||||||
|
"zoomIn": "Zoom: Aumentar",
|
||||||
|
"zoomOut": "Zoom: Diminuir",
|
||||||
|
"pan": "Deslocamento",
|
||||||
|
"reset": "Redefinir"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "rs",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januar",
|
||||||
|
"Februar",
|
||||||
|
"Mart",
|
||||||
|
"April",
|
||||||
|
"Maj",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Avgust",
|
||||||
|
"Septembar",
|
||||||
|
"Oktobar",
|
||||||
|
"Novembar",
|
||||||
|
"Decembar"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Maj",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Avg",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Nedelja",
|
||||||
|
"Ponedeljak",
|
||||||
|
"Utorak",
|
||||||
|
"Sreda",
|
||||||
|
"Četvrtak",
|
||||||
|
"Petak",
|
||||||
|
"Subota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Preuzmi SVG",
|
||||||
|
"exportToPNG": "Preuzmi PNG",
|
||||||
|
"exportToCSV": "Preuzmi CSV",
|
||||||
|
"menu": "Meni",
|
||||||
|
"selection": "Odabir",
|
||||||
|
"selectionZoom": "Odabirno povećanje",
|
||||||
|
"zoomIn": "Uvećajte prikaz",
|
||||||
|
"zoomOut": "Umanjite prikaz",
|
||||||
|
"pan": "Pomeranje",
|
||||||
|
"reset": "Resetuj prikaz"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ru",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Январь",
|
||||||
|
"Февраль",
|
||||||
|
"Март",
|
||||||
|
"Апрель",
|
||||||
|
"Май",
|
||||||
|
"Июнь",
|
||||||
|
"Июль",
|
||||||
|
"Август",
|
||||||
|
"Сентябрь",
|
||||||
|
"Октябрь",
|
||||||
|
"Ноябрь",
|
||||||
|
"Декабрь"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Янв",
|
||||||
|
"Фев",
|
||||||
|
"Мар",
|
||||||
|
"Апр",
|
||||||
|
"Май",
|
||||||
|
"Июн",
|
||||||
|
"Июл",
|
||||||
|
"Авг",
|
||||||
|
"Сен",
|
||||||
|
"Окт",
|
||||||
|
"Ноя",
|
||||||
|
"Дек"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Воскресенье",
|
||||||
|
"Понедельник",
|
||||||
|
"Вторник",
|
||||||
|
"Среда",
|
||||||
|
"Четверг",
|
||||||
|
"Пятница",
|
||||||
|
"Суббота"
|
||||||
|
],
|
||||||
|
"shortDays": ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Сохранить SVG",
|
||||||
|
"exportToPNG": "Сохранить PNG",
|
||||||
|
"exportToCSV": "Сохранить CSV",
|
||||||
|
"menu": "Меню",
|
||||||
|
"selection": "Выбор",
|
||||||
|
"selectionZoom": "Выбор с увеличением",
|
||||||
|
"zoomIn": "Увеличить",
|
||||||
|
"zoomOut": "Уменьшить",
|
||||||
|
"pan": "Перемещение",
|
||||||
|
"reset": "Сбросить увеличение"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "se",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januari",
|
||||||
|
"Februari",
|
||||||
|
"Mars",
|
||||||
|
"April",
|
||||||
|
"Maj",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"Augusti",
|
||||||
|
"September",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Maj",
|
||||||
|
"Juni",
|
||||||
|
"Juli",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Söndag",
|
||||||
|
"Måndag",
|
||||||
|
"Tisdag",
|
||||||
|
"Onsdag",
|
||||||
|
"Torsdag",
|
||||||
|
"Fredag",
|
||||||
|
"Lördag"
|
||||||
|
],
|
||||||
|
"shortDays": ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Ladda SVG",
|
||||||
|
"exportToPNG": "Ladda PNG",
|
||||||
|
"exportToCSV": "Ladda CSV",
|
||||||
|
"menu": "Meny",
|
||||||
|
"selection": "Selektion",
|
||||||
|
"selectionZoom": "Val av zoom",
|
||||||
|
"zoomIn": "Zooma in",
|
||||||
|
"zoomOut": "Zooma ut",
|
||||||
|
"pan": "Panorering",
|
||||||
|
"reset": "Återställ zoomning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "sk",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Január",
|
||||||
|
"Február",
|
||||||
|
"Marec",
|
||||||
|
"Apríl",
|
||||||
|
"Máj",
|
||||||
|
"Jún",
|
||||||
|
"Júl",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"Október",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Máj",
|
||||||
|
"Jún",
|
||||||
|
"Júl",
|
||||||
|
"Aug",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Nedeľa",
|
||||||
|
"Pondelok",
|
||||||
|
"Utorok",
|
||||||
|
"Streda",
|
||||||
|
"Štvrtok",
|
||||||
|
"Piatok",
|
||||||
|
"Sobota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Ne", "Po", "Ut", "St", "Št", "Pi", "So"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Stiahnuť SVG",
|
||||||
|
"exportToPNG": "Stiahnuť PNG",
|
||||||
|
"exportToCSV": "Stiahnuť CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Vyberanie",
|
||||||
|
"selectionZoom": "Zoom: Vyberanie",
|
||||||
|
"zoomIn": "Zoom: Priblížiť",
|
||||||
|
"zoomOut": "Zoom: Vzdialiť",
|
||||||
|
"pan": "Presúvanie",
|
||||||
|
"reset": "Resetovať"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "sl",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Januar",
|
||||||
|
"Februar",
|
||||||
|
"Marec",
|
||||||
|
"April",
|
||||||
|
"Maj",
|
||||||
|
"Junij",
|
||||||
|
"Julij",
|
||||||
|
"Avgust",
|
||||||
|
"Septemer",
|
||||||
|
"Oktober",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Feb",
|
||||||
|
"Mar",
|
||||||
|
"Apr",
|
||||||
|
"Maj",
|
||||||
|
"Jun",
|
||||||
|
"Jul",
|
||||||
|
"Avg",
|
||||||
|
"Sep",
|
||||||
|
"Okt",
|
||||||
|
"Nov",
|
||||||
|
"Dec"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Nedelja",
|
||||||
|
"Ponedeljek",
|
||||||
|
"Torek",
|
||||||
|
"Sreda",
|
||||||
|
"Četrtek",
|
||||||
|
"Petek",
|
||||||
|
"Sobota"
|
||||||
|
],
|
||||||
|
"shortDays": ["Ne", "Po", "To", "Sr", "Če", "Pe", "So"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Prenesi SVG",
|
||||||
|
"exportToPNG": "Prenesi PNG",
|
||||||
|
"exportToCSV": "Prenesi CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Izbiranje",
|
||||||
|
"selectionZoom": "Zoom: Izbira",
|
||||||
|
"zoomIn": "Zoom: Približaj",
|
||||||
|
"zoomOut": "Zoom: Oddalji",
|
||||||
|
"pan": "Pomikanje",
|
||||||
|
"reset": "Resetiraj"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "sq",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Janar",
|
||||||
|
"Shkurt",
|
||||||
|
"Mars",
|
||||||
|
"Prill",
|
||||||
|
"Maj",
|
||||||
|
"Qershor",
|
||||||
|
"Korrik",
|
||||||
|
"Gusht",
|
||||||
|
"Shtator",
|
||||||
|
"Tetor",
|
||||||
|
"Nëntor",
|
||||||
|
"Dhjetor"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Jan",
|
||||||
|
"Shk",
|
||||||
|
"Mar",
|
||||||
|
"Pr",
|
||||||
|
"Maj",
|
||||||
|
"Qer",
|
||||||
|
"Korr",
|
||||||
|
"Gush",
|
||||||
|
"Sht",
|
||||||
|
"Tet",
|
||||||
|
"Nën",
|
||||||
|
"Dhj"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"e Dielë",
|
||||||
|
"e Hënë",
|
||||||
|
"e Martë",
|
||||||
|
"e Mërkurë",
|
||||||
|
"e Enjte",
|
||||||
|
"e Premte",
|
||||||
|
"e Shtunë"
|
||||||
|
],
|
||||||
|
"shortDays": ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Sht"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Shkarko SVG",
|
||||||
|
"exportToPNG": "Shkarko PNG",
|
||||||
|
"exportToCSV": "Shkarko CSV",
|
||||||
|
"menu": "Menu",
|
||||||
|
"selection": "Seleksiono",
|
||||||
|
"selectionZoom": "Seleksiono Zmadhim",
|
||||||
|
"zoomIn": "Zmadho",
|
||||||
|
"zoomOut": "Zvogëlo",
|
||||||
|
"pan": "Spostoje",
|
||||||
|
"reset": "Rikthe dimensionin"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "th",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"มกราคม",
|
||||||
|
"กุมภาพันธ์",
|
||||||
|
"มีนาคม",
|
||||||
|
"เมษายน",
|
||||||
|
"พฤษภาคม",
|
||||||
|
"มิถุนายน",
|
||||||
|
"กรกฎาคม",
|
||||||
|
"สิงหาคม",
|
||||||
|
"กันยายน",
|
||||||
|
"ตุลาคม",
|
||||||
|
"พฤศจิกายน",
|
||||||
|
"ธันวาคม"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"ม.ค.",
|
||||||
|
"ก.พ.",
|
||||||
|
"มี.ค.",
|
||||||
|
"เม.ย.",
|
||||||
|
"พ.ค.",
|
||||||
|
"มิ.ย.",
|
||||||
|
"ก.ค.",
|
||||||
|
"ส.ค.",
|
||||||
|
"ก.ย.",
|
||||||
|
"ต.ค.",
|
||||||
|
"พ.ย.",
|
||||||
|
"ธ.ค."
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"อาทิตย์",
|
||||||
|
"จันทร์",
|
||||||
|
"อังคาร",
|
||||||
|
"พุธ",
|
||||||
|
"พฤหัสบดี",
|
||||||
|
"ศุกร์",
|
||||||
|
"เสาร์"
|
||||||
|
],
|
||||||
|
"shortDays": ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "ดาวน์โหลด SVG",
|
||||||
|
"exportToPNG": "ดาวน์โหลด PNG",
|
||||||
|
"exportToCSV": "ดาวน์โหลด CSV",
|
||||||
|
"menu": "เมนู",
|
||||||
|
"selection": "เลือก",
|
||||||
|
"selectionZoom": "เลือกจุดที่จะซูม",
|
||||||
|
"zoomIn": "ซูมเข้า",
|
||||||
|
"zoomOut": "ซูมออก",
|
||||||
|
"pan": "ปรากฎว่า",
|
||||||
|
"reset": "รีเซ็ตการซูม"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "tr",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Ocak",
|
||||||
|
"Şubat",
|
||||||
|
"Mart",
|
||||||
|
"Nisan",
|
||||||
|
"Mayıs",
|
||||||
|
"Haziran",
|
||||||
|
"Temmuz",
|
||||||
|
"Ağustos",
|
||||||
|
"Eylül",
|
||||||
|
"Ekim",
|
||||||
|
"Kasım",
|
||||||
|
"Aralık"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Oca",
|
||||||
|
"Şub",
|
||||||
|
"Mar",
|
||||||
|
"Nis",
|
||||||
|
"May",
|
||||||
|
"Haz",
|
||||||
|
"Tem",
|
||||||
|
"Ağu",
|
||||||
|
"Eyl",
|
||||||
|
"Eki",
|
||||||
|
"Kas",
|
||||||
|
"Ara"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Pazar",
|
||||||
|
"Pazartesi",
|
||||||
|
"Salı",
|
||||||
|
"Çarşamba",
|
||||||
|
"Perşembe",
|
||||||
|
"Cuma",
|
||||||
|
"Cumartesi"
|
||||||
|
],
|
||||||
|
"shortDays": ["Paz", "Pzt", "Sal", "Çar", "Per", "Cum", "Cmt"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "SVG İndir",
|
||||||
|
"exportToPNG": "PNG İndir",
|
||||||
|
"exportToCSV": "CSV İndir",
|
||||||
|
"menu": "Menü",
|
||||||
|
"selection": "Seçim",
|
||||||
|
"selectionZoom": "Seçim Yakınlaştır",
|
||||||
|
"zoomIn": "Yakınlaştır",
|
||||||
|
"zoomOut": "Uzaklaştır",
|
||||||
|
"pan": "Kaydır",
|
||||||
|
"reset": "Yakınlaştırmayı Sıfırla"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "ua",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"Січень",
|
||||||
|
"Лютий",
|
||||||
|
"Березень",
|
||||||
|
"Квітень",
|
||||||
|
"Травень",
|
||||||
|
"Червень",
|
||||||
|
"Липень",
|
||||||
|
"Серпень",
|
||||||
|
"Вересень",
|
||||||
|
"Жовтень",
|
||||||
|
"Листопад",
|
||||||
|
"Грудень"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"Січ",
|
||||||
|
"Лют",
|
||||||
|
"Бер",
|
||||||
|
"Кві",
|
||||||
|
"Тра",
|
||||||
|
"Чер",
|
||||||
|
"Лип",
|
||||||
|
"Сер",
|
||||||
|
"Вер",
|
||||||
|
"Жов",
|
||||||
|
"Лис",
|
||||||
|
"Гру"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"Неділя",
|
||||||
|
"Понеділок",
|
||||||
|
"Вівторок",
|
||||||
|
"Середа",
|
||||||
|
"Четвер",
|
||||||
|
"П'ятниця",
|
||||||
|
"Субота"
|
||||||
|
],
|
||||||
|
"shortDays": ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "Зберегти SVG",
|
||||||
|
"exportToPNG": "Зберегти PNG",
|
||||||
|
"exportToCSV": "Зберегти CSV",
|
||||||
|
"menu": "Меню",
|
||||||
|
"selection": "Вибір",
|
||||||
|
"selectionZoom": "Вибір із збільшенням",
|
||||||
|
"zoomIn": "Збільшити",
|
||||||
|
"zoomOut": "Зменшити",
|
||||||
|
"pan": "Переміщення",
|
||||||
|
"reset": "Скинути збільшення"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "zh-cn",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"一月",
|
||||||
|
"二月",
|
||||||
|
"三月",
|
||||||
|
"四月",
|
||||||
|
"五月",
|
||||||
|
"六月",
|
||||||
|
"七月",
|
||||||
|
"八月",
|
||||||
|
"九月",
|
||||||
|
"十月",
|
||||||
|
"十一月",
|
||||||
|
"十二月"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"一月",
|
||||||
|
"二月",
|
||||||
|
"三月",
|
||||||
|
"四月",
|
||||||
|
"五月",
|
||||||
|
"六月",
|
||||||
|
"七月",
|
||||||
|
"八月",
|
||||||
|
"九月",
|
||||||
|
"十月",
|
||||||
|
"十一月",
|
||||||
|
"十二月"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"星期天",
|
||||||
|
"星期一",
|
||||||
|
"星期二",
|
||||||
|
"星期三",
|
||||||
|
"星期四",
|
||||||
|
"星期五",
|
||||||
|
"星期六"
|
||||||
|
],
|
||||||
|
"shortDays": ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "下载 SVG",
|
||||||
|
"exportToPNG": "下载 PNG",
|
||||||
|
"exportToCSV": "下载 CSV",
|
||||||
|
"menu": "菜单",
|
||||||
|
"selection": "选择",
|
||||||
|
"selectionZoom": "选择缩放",
|
||||||
|
"zoomIn": "放大",
|
||||||
|
"zoomOut": "缩小",
|
||||||
|
"pan": "平移",
|
||||||
|
"reset": "重置缩放"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"name": "zh-tw",
|
||||||
|
"options": {
|
||||||
|
"months": [
|
||||||
|
"一月",
|
||||||
|
"二月",
|
||||||
|
"三月",
|
||||||
|
"四月",
|
||||||
|
"五月",
|
||||||
|
"六月",
|
||||||
|
"七月",
|
||||||
|
"八月",
|
||||||
|
"九月",
|
||||||
|
"十月",
|
||||||
|
"十一月",
|
||||||
|
"十二月"
|
||||||
|
],
|
||||||
|
"shortMonths": [
|
||||||
|
"一月",
|
||||||
|
"二月",
|
||||||
|
"三月",
|
||||||
|
"四月",
|
||||||
|
"五月",
|
||||||
|
"六月",
|
||||||
|
"七月",
|
||||||
|
"八月",
|
||||||
|
"九月",
|
||||||
|
"十月",
|
||||||
|
"十一月",
|
||||||
|
"十二月"
|
||||||
|
],
|
||||||
|
"days": [
|
||||||
|
"星期日",
|
||||||
|
"星期一",
|
||||||
|
"星期二",
|
||||||
|
"星期三",
|
||||||
|
"星期四",
|
||||||
|
"星期五",
|
||||||
|
"星期六"
|
||||||
|
],
|
||||||
|
"shortDays": ["週日", "週一", "週二", "週三", "週四", "週五", "週六"],
|
||||||
|
"toolbar": {
|
||||||
|
"exportToSVG": "下載 SVG",
|
||||||
|
"exportToPNG": "下載 PNG",
|
||||||
|
"exportToCSV": "下載 CSV",
|
||||||
|
"menu": "菜單",
|
||||||
|
"selection": "選擇",
|
||||||
|
"selectionZoom": "選擇縮放",
|
||||||
|
"zoomIn": "放大",
|
||||||
|
"zoomOut": "縮小",
|
||||||
|
"pan": "平移",
|
||||||
|
"reset": "重置縮放"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,185 @@
|
||||||
|
/*!
|
||||||
|
* JavaScript Cookie v2.2.0
|
||||||
|
* https://github.com/js-cookie/js-cookie
|
||||||
|
*
|
||||||
|
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
||||||
|
* Released under the MIT license
|
||||||
|
*/
|
||||||
|
;(function (factory) {
|
||||||
|
var registeredInModuleLoader = false;
|
||||||
|
|
||||||
|
if (typeof define === 'function' && define.amd) {
|
||||||
|
define(factory);
|
||||||
|
|
||||||
|
registeredInModuleLoader = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof exports === 'object') {
|
||||||
|
module.exports = factory();
|
||||||
|
|
||||||
|
registeredInModuleLoader = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!registeredInModuleLoader) {
|
||||||
|
var OldCookies = window.Cookies;
|
||||||
|
var api = window.Cookies = factory();
|
||||||
|
|
||||||
|
api.noConflict = function () {
|
||||||
|
window.Cookies = OldCookies;
|
||||||
|
|
||||||
|
return api;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}(function () {
|
||||||
|
function extend () {
|
||||||
|
var i = 0;
|
||||||
|
var result = {};
|
||||||
|
|
||||||
|
for (; i < arguments.length; i++) {
|
||||||
|
var attributes = arguments[ i ];
|
||||||
|
|
||||||
|
for (var key in attributes) {
|
||||||
|
result[key] = attributes[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function init (converter) {
|
||||||
|
function api (key, value, attributes) {
|
||||||
|
var result;
|
||||||
|
|
||||||
|
if (typeof document === 'undefined') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write
|
||||||
|
if (arguments.length > 1) {
|
||||||
|
attributes = extend({
|
||||||
|
path: '/'
|
||||||
|
}, api.defaults, attributes);
|
||||||
|
|
||||||
|
if (typeof attributes.expires === 'number') {
|
||||||
|
var expires = new Date();
|
||||||
|
|
||||||
|
expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
|
||||||
|
|
||||||
|
attributes.expires = expires;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We're using "expires" because "max-age" is not supported by IE
|
||||||
|
attributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';
|
||||||
|
|
||||||
|
try {
|
||||||
|
result = JSON.stringify(value);
|
||||||
|
|
||||||
|
if (/^[\{\[]/.test(result)) {
|
||||||
|
value = result;
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
|
||||||
|
if (!converter.write) {
|
||||||
|
value = encodeURIComponent(String(value))
|
||||||
|
.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
|
||||||
|
} else {
|
||||||
|
value = converter.write(value, key);
|
||||||
|
}
|
||||||
|
|
||||||
|
key = encodeURIComponent(String(key));
|
||||||
|
key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
|
||||||
|
key = key.replace(/[\(\)]/g, escape);
|
||||||
|
|
||||||
|
var stringifiedAttributes = '';
|
||||||
|
|
||||||
|
for (var attributeName in attributes) {
|
||||||
|
if (!attributes[attributeName]) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
stringifiedAttributes += '; ' + attributeName;
|
||||||
|
|
||||||
|
if (attributes[attributeName] === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
stringifiedAttributes += '=' + attributes[attributeName];
|
||||||
|
}
|
||||||
|
|
||||||
|
return (document.cookie = key + '=' + value + stringifiedAttributes);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read
|
||||||
|
if (!key) {
|
||||||
|
result = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
// To prevent the for loop in the first place assign an empty array
|
||||||
|
// in case there are no cookies at all. Also prevents odd result when
|
||||||
|
// calling "get()"
|
||||||
|
var cookies = document.cookie ? document.cookie.split('; ') : [];
|
||||||
|
var rdecode = /(%[0-9A-Z]{2})+/g;
|
||||||
|
var i = 0;
|
||||||
|
|
||||||
|
for (; i < cookies.length; i++) {
|
||||||
|
var parts = cookies[i].split('=');
|
||||||
|
var cookie = parts.slice(1).join('=');
|
||||||
|
|
||||||
|
if (!this.json && cookie.charAt(0) === '"') {
|
||||||
|
cookie = cookie.slice(1, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
var name = parts[0].replace(rdecode, decodeURIComponent);
|
||||||
|
|
||||||
|
cookie = converter.read ?
|
||||||
|
converter.read(cookie, name) : converter(cookie, name) ||
|
||||||
|
cookie.replace(rdecode, decodeURIComponent);
|
||||||
|
|
||||||
|
if (this.json) {
|
||||||
|
try {
|
||||||
|
cookie = JSON.parse(cookie);
|
||||||
|
} catch (e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (key === name) {
|
||||||
|
result = cookie;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!key) {
|
||||||
|
result[name] = cookie;
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
api.set = api;
|
||||||
|
|
||||||
|
api.get = function (key) {
|
||||||
|
return api.call(api, key);
|
||||||
|
};
|
||||||
|
|
||||||
|
api.getJSON = function () {
|
||||||
|
return api.apply({
|
||||||
|
json: true
|
||||||
|
}, [].slice.call(arguments));
|
||||||
|
};
|
||||||
|
|
||||||
|
api.defaults = {};
|
||||||
|
|
||||||
|
api.remove = function (key, attributes) {
|
||||||
|
api(key, '', extend(attributes, {
|
||||||
|
expires: -1
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
api.withConverter = init;
|
||||||
|
|
||||||
|
return api;
|
||||||
|
}
|
||||||
|
|
||||||
|
return init(function () {});
|
||||||
|
}));
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
||||||
|
{"/livewire.js":"/livewire.js?id=de3fca26689cb5a39af4"}
|
||||||
|
|
@ -0,0 +1,39 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: "Quicksand";
|
||||||
|
src: url("../fonts/Light/Quicksand-Light.woff") format("woff"), url("../fonts/Light/Quicksand-Light.ttf") format("truetype");
|
||||||
|
font-weight: 300;
|
||||||
|
font-display: "auto";
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Quicksand";
|
||||||
|
src: url("../fonts/Regular/Quicksand-Regular.woff") format("woff"), url("../fonts/Regular/Quicksand-Regular.ttf") format("truetype");
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: "auto";
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Quicksand";
|
||||||
|
src: url("../fonts/Medium/Quicksand-Medium.woff") format("woff"), url("../fonts/Medium/Quicksand-Medium.ttf") format("truetype");
|
||||||
|
font-weight: 500;
|
||||||
|
font-display: "auto";
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Quicksand";
|
||||||
|
src: url("../fonts/Semibold/Quicksand-SemiBold.woff") format("woff"), url("../fonts/Semibold/Quicksand-SemiBold.ttf") format("truetype");
|
||||||
|
font-weight: 600;
|
||||||
|
font-display: "auto";
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Quicksand";
|
||||||
|
src: url("../fonts/Bold/Quicksand-Bold.woff") format("woff"), url("../fonts/Bold/Quicksand-Bold.ttf") format("truetype");
|
||||||
|
font-weight: 700;
|
||||||
|
font-display: "auto";
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,45 @@
|
||||||
|
var staticCacheName = "pwa-v" + new Date().getTime();
|
||||||
|
var filesToCache = [
|
||||||
|
'/img/pwa/akaunting-192x192.png',
|
||||||
|
'/img/pwa/akaunting-512x512.png'
|
||||||
|
];
|
||||||
|
|
||||||
|
/*
|
||||||
|
// Cache on install
|
||||||
|
self.addEventListener("install", event => {
|
||||||
|
this.skipWaiting();
|
||||||
|
event.waitUntil(
|
||||||
|
caches.open(staticCacheName)
|
||||||
|
.then(cache => {
|
||||||
|
return cache.addAll(filesToCache);
|
||||||
|
})
|
||||||
|
)
|
||||||
|
});
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
// Clear cache on activate
|
||||||
|
self.addEventListener('activate', event => {
|
||||||
|
event.waitUntil(
|
||||||
|
caches.keys().then(cacheNames => {
|
||||||
|
return Promise.all(
|
||||||
|
cacheNames
|
||||||
|
.filter(cacheName => (cacheName.startsWith("pwa-")))
|
||||||
|
.filter(cacheName => (cacheName !== staticCacheName))
|
||||||
|
.map(cacheName => caches.delete(cacheName))
|
||||||
|
);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});*/
|
||||||
|
|
||||||
|
// Serve from Cache
|
||||||
|
self.addEventListener("fetch", event => {
|
||||||
|
event.respondWith(
|
||||||
|
caches.match(event.request)
|
||||||
|
.then(response => {
|
||||||
|
return response || fetch(event.request);
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
return caches.match('offline');
|
||||||
|
})
|
||||||
|
)
|
||||||
|
});
|
||||||
|
|
@ -16,22 +16,22 @@
|
||||||
|
|
||||||
<x-layouts.pwa.head />
|
<x-layouts.pwa.head />
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/vue-html-editor.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/vue-html-editor.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -308,6 +308,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
||||||
|
|
|
||||||
|
|
@ -16,20 +16,20 @@
|
||||||
|
|
||||||
<x-layouts.pwa.head />
|
<x-layouts.pwa.head />
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
||||||
|
|
|
||||||
|
|
@ -17,18 +17,18 @@
|
||||||
<x-layouts.pwa.head />
|
<x-layouts.pwa.head />
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,9 @@
|
||||||
|
|
||||||
<base href="{{ config('app.url') . '/' }}">
|
<base href="{{ config('app.url') . '/' }}">
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,19 +19,19 @@
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/vue-html-editor.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/vue-html-editor.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,18 +19,18 @@
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -264,6 +264,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
||||||
|
|
|
||||||
|
|
@ -16,21 +16,21 @@
|
||||||
|
|
||||||
<x-layouts.pwa.head />
|
<x-layouts.pwa.head />
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<!-- Livewire -->
|
<!-- Livewire -->
|
||||||
|
|
|
||||||
|
|
@ -16,21 +16,21 @@
|
||||||
|
|
||||||
<x-layouts.pwa.head />
|
<x-layouts.pwa.head />
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ asset('/css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/custom_loading.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
|
|
||||||
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
<script src="{{ asset('/vendor/alpinejs/alpine.min.js') }}"></script>
|
||||||
|
|
|
||||||
|
|
@ -15,17 +15,17 @@
|
||||||
<base href="{{ config('app.url') . '/' }}">
|
<base href="{{ config('app.url') . '/' }}">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- Favicon -->
|
||||||
<link rel="icon" href="{{ asset('/img/favicon.ico') }}" type="image/png">
|
<link rel="icon" href="{{ asset('img/favicon.ico') }}" type="image/png">
|
||||||
|
|
||||||
<!--Icons-->
|
<!--Icons-->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Font -->
|
<!-- Font -->
|
||||||
<link rel="stylesheet" href="{{ asset('/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
<!-- Css -->
|
<!-- Css -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/element.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/element.css?v=' . version('short')) }}" type="text/css">
|
||||||
<link rel="stylesheet" href="{{ asset('/css/app.css?v=' . version('short')) }}" type="text/css">
|
<link rel="stylesheet" href="{{ asset('css/app.css?v=' . version('short')) }}" type="text/css">
|
||||||
|
|
||||||
@stack('css')
|
@stack('css')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,5 +23,6 @@
|
||||||
|
|
||||||
@stack('body_scripts')
|
@stack('body_scripts')
|
||||||
|
|
||||||
|
<script src="{{ asset('/vendor/livewire/livewire.js') }}"></script>
|
||||||
@livewireScripts
|
@livewireScripts
|
||||||
@stack('scripts_end')
|
@stack('scripts_end')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue