Merge branch 'master' of https://github.com/brkcvn/akaunting into code-clean
This commit is contained in:
commit
4b2d12eb98
@ -199,6 +199,8 @@ abstract class Report
|
|||||||
|
|
||||||
$chart->setType('bar')
|
$chart->setType('bar')
|
||||||
->setOptions($options)
|
->setOptions($options)
|
||||||
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setLabels(array_values($this->dates))
|
->setLabels(array_values($this->dates))
|
||||||
->setDataset($this->tables[$table_key], 'column', array_values($this->footer_totals[$table_key]));
|
->setDataset($this->tables[$table_key], 'column', array_values($this->footer_totals[$table_key]));
|
||||||
|
|
||||||
@ -246,6 +248,8 @@ abstract class Report
|
|||||||
|
|
||||||
$chart->setType('donut')
|
$chart->setType('donut')
|
||||||
->setOptions($options)
|
->setOptions($options)
|
||||||
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setLabels(array_values($labels))
|
->setLabels(array_values($labels))
|
||||||
->setColors(array_values($colors))
|
->setColors(array_values($colors))
|
||||||
->setDataset($this->tables[$table_key], 'donut', array_values($values));
|
->setDataset($this->tables[$table_key], 'donut', array_values($values));
|
||||||
@ -300,8 +304,8 @@ abstract class Report
|
|||||||
|
|
||||||
public function setChartLabelFormatter()
|
public function setChartLabelFormatter()
|
||||||
{
|
{
|
||||||
$this->chart['bar']['yaxis']['labels']['formatter'] = $this->getFormatLabel();
|
$this->chart['bar']['yaxis']['labels']['formatter'] = $this->getChartLabelFormatter();
|
||||||
$this->chart['donut']['yaxis']['labels']['formatter'] = $this->getFormatLabel('percent');
|
$this->chart['donut']['yaxis']['labels']['formatter'] = $this->getChartLabelFormatter('percent');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setYear()
|
public function setYear()
|
||||||
|
@ -68,7 +68,7 @@ class CreateBankingDocumentTransaction extends Job implements ShouldCreate
|
|||||||
|
|
||||||
$this->request['company_id'] = $this->model->company_id;
|
$this->request['company_id'] = $this->model->company_id;
|
||||||
$this->request['currency_code'] = isset($this->request['currency_code']) ? $this->request['currency_code'] : $this->model->currency_code;
|
$this->request['currency_code'] = isset($this->request['currency_code']) ? $this->request['currency_code'] : $this->model->currency_code;
|
||||||
$this->request['paid_at'] = isset($this->request['paid_at']) ? $this->request['paid_at'] : Date::now()->format('Y-m-d');
|
$this->request['paid_at'] = isset($this->request['paid_at']) ? $this->request['paid_at'] : Date::now()->toDateTimeString();
|
||||||
$this->request['currency_rate'] = config('money.' . $currency_code . '.rate');
|
$this->request['currency_rate'] = config('money.' . $currency_code . '.rate');
|
||||||
$this->request['account_id'] = isset($this->request['account_id']) ? $this->request['account_id'] : setting('default.account');
|
$this->request['account_id'] = isset($this->request['account_id']) ? $this->request['account_id'] : setting('default.account');
|
||||||
$this->request['document_id'] = isset($this->request['document_id']) ? $this->request['document_id'] : $this->model->id;
|
$this->request['document_id'] = isset($this->request['document_id']) ? $this->request['document_id'] : $this->model->id;
|
||||||
|
@ -67,7 +67,7 @@ class UpdateBankingDocumentTransaction extends Job implements ShouldUpdate
|
|||||||
|
|
||||||
$this->request['company_id'] = $this->model->company_id;
|
$this->request['company_id'] = $this->model->company_id;
|
||||||
$this->request['currency_code'] = isset($this->request['currency_code']) ? $this->request['currency_code'] : $this->model->currency_code;
|
$this->request['currency_code'] = isset($this->request['currency_code']) ? $this->request['currency_code'] : $this->model->currency_code;
|
||||||
$this->request['paid_at'] = isset($this->request['paid_at']) ? $this->request['paid_at'] : Date::now()->format('Y-m-d');
|
$this->request['paid_at'] = isset($this->request['paid_at']) ? $this->request['paid_at'] : Date::now()->toDateTimeString();
|
||||||
$this->request['currency_rate'] = config('money.' . $currency_code . '.rate');
|
$this->request['currency_rate'] = config('money.' . $currency_code . '.rate');
|
||||||
$this->request['account_id'] = isset($this->request['account_id']) ? $this->request['account_id'] : setting('default.account');
|
$this->request['account_id'] = isset($this->request['account_id']) ? $this->request['account_id'] : setting('default.account');
|
||||||
$this->request['document_id'] = isset($this->request['document_id']) ? $this->request['document_id'] : $this->model->id;
|
$this->request['document_id'] = isset($this->request['document_id']) ? $this->request['document_id'] : $this->model->id;
|
||||||
|
@ -19,14 +19,14 @@ trait Charts
|
|||||||
'values' => [],
|
'values' => [],
|
||||||
];
|
];
|
||||||
|
|
||||||
public function addToDonut($color, $label, $value)
|
public function addToDonutChart($color, $label, $value)
|
||||||
{
|
{
|
||||||
$this->donut['colors'][] = $color;
|
$this->donut['colors'][] = $color;
|
||||||
$this->donut['labels'][] = $label;
|
$this->donut['labels'][] = $label;
|
||||||
$this->donut['values'][] = (int) $value;
|
$this->donut['values'][] = (int) $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addMoneyToDonut($color, $amount, $description = '')
|
public function addMoneyToDonutChart($color, $amount, $description = '')
|
||||||
{
|
{
|
||||||
$label = money($amount, setting('default.currency'), true)->formatForHumans();
|
$label = money($amount, setting('default.currency'), true)->formatForHumans();
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ trait Charts
|
|||||||
$label .= ' - ' . $description;
|
$label .= ' - ' . $description;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->addToDonut($color, $label, $amount);
|
$this->addToDonutChart($color, $label, $amount);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getDonutChart($name, $width = '100%', $height = 300, $limit = 10)
|
public function getDonutChart($name, $width = '100%', $height = 300, $limit = 10)
|
||||||
@ -60,6 +60,8 @@ trait Charts
|
|||||||
$chart->setType('donut')
|
$chart->setType('donut')
|
||||||
->setWidth($width)
|
->setWidth($width)
|
||||||
->setHeight($height)
|
->setHeight($height)
|
||||||
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setLabels(array_values($labels))
|
->setLabels(array_values($labels))
|
||||||
->setColors(array_values($colors))
|
->setColors(array_values($colors))
|
||||||
->setDataset($name, 'donut', array_values($values));
|
->setDataset($name, 'donut', array_values($values));
|
||||||
@ -67,7 +69,7 @@ trait Charts
|
|||||||
return $chart;
|
return $chart;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addToBar($color, $label, $value)
|
public function addToBarChart($color, $label, $value)
|
||||||
{
|
{
|
||||||
$this->bar['colors'][] = $color;
|
$this->bar['colors'][] = $color;
|
||||||
$this->bar['labels'][] = $label;
|
$this->bar['labels'][] = $label;
|
||||||
@ -81,6 +83,8 @@ trait Charts
|
|||||||
$chart->setType('bar')
|
$chart->setType('bar')
|
||||||
->setWidth($width)
|
->setWidth($width)
|
||||||
->setHeight($height)
|
->setHeight($height)
|
||||||
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setLabels(array_values($this->bar['labels']))
|
->setLabels(array_values($this->bar['labels']))
|
||||||
->setColors($this->bar['colors']);
|
->setColors($this->bar['colors']);
|
||||||
|
|
||||||
@ -91,7 +95,7 @@ trait Charts
|
|||||||
return $chart;
|
return $chart;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getFormatLabel($type = 'money', $position = null)
|
public function getChartLabelFormatter($type = 'money', $position = null)
|
||||||
{
|
{
|
||||||
$label = '';
|
$label = '';
|
||||||
$decimal_mark = str_replace("'", "\\'", config('money.' . setting('default.currency') . '.decimal_mark'));
|
$decimal_mark = str_replace("'", "\\'", config('money.' . setting('default.currency') . '.decimal_mark'));
|
||||||
@ -165,4 +169,62 @@ trait Charts
|
|||||||
|
|
||||||
return $label;
|
return $label;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getDefaultLocaleOfChart(): string
|
||||||
|
{
|
||||||
|
$default = 'en';
|
||||||
|
|
||||||
|
$short = language()->getShortCode();
|
||||||
|
$long = language()->getLongCode();
|
||||||
|
|
||||||
|
$short_path = public_path('vendor/apexcharts/locales/' . $short . '.json');
|
||||||
|
$long_path = public_path('vendor/apexcharts/locales/' . $long . '.json');
|
||||||
|
|
||||||
|
if (is_file($short_path)) {
|
||||||
|
return $short;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (is_file($long_path)) {
|
||||||
|
return $long;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $default;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLocaleTranslationOfChart(?string $locale = null): array
|
||||||
|
{
|
||||||
|
$translations = [];
|
||||||
|
|
||||||
|
$user_locale = $locale ?: $this->getDefaultLocaleOfChart();
|
||||||
|
|
||||||
|
$locales = ($user_locale == 'en') ? [$user_locale] : [$user_locale, 'en'];
|
||||||
|
|
||||||
|
foreach ($locales as $loc) {
|
||||||
|
$translations[] = json_decode(
|
||||||
|
file_get_contents(
|
||||||
|
public_path('vendor/apexcharts/locales/' . $loc . '.json')
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $translations;
|
||||||
|
}
|
||||||
|
|
||||||
|
// @deprecated version 3.0.0
|
||||||
|
public function addToDonut($color, $label, $value)
|
||||||
|
{
|
||||||
|
$this->addToDonutChart($color, $label, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
// @deprecated version 3.0.0
|
||||||
|
public function addMoneyToDonut($color, $amount, $description = '')
|
||||||
|
{
|
||||||
|
$this->addMoneyToDonutChart($color, $amount, $description);
|
||||||
|
}
|
||||||
|
|
||||||
|
// @deprecated version 3.0.0
|
||||||
|
public function addToBar($color, $label, $value)
|
||||||
|
{
|
||||||
|
$this->addToBarChart($color, $label, $value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,39 +34,21 @@ class CashFlow extends Widget
|
|||||||
{
|
{
|
||||||
$this->setFilter();
|
$this->setFilter();
|
||||||
|
|
||||||
$labels = $this->getLabels();
|
|
||||||
|
|
||||||
$income = array_values($this->calculateTotals('income'));
|
$income = array_values($this->calculateTotals('income'));
|
||||||
$expense = array_values($this->calculateTotals('expense'));
|
$expense = array_values($this->calculateTotals('expense'));
|
||||||
$profit = array_values($this->calculateProfit($income, $expense));
|
$profit = array_values($this->calculateProfit($income, $expense));
|
||||||
|
|
||||||
$colors = $this->getColors();
|
|
||||||
|
|
||||||
$options = [
|
|
||||||
'chart' => [
|
|
||||||
'stacked' => true,
|
|
||||||
],
|
|
||||||
'plotOptions' => [
|
|
||||||
'bar' => [
|
|
||||||
'columnWidth' => '40%',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
'legend' => [
|
|
||||||
'position' => 'top',
|
|
||||||
],
|
|
||||||
'yaxis' => [
|
|
||||||
'labels' => [
|
|
||||||
'formatter' => $this->getFormatLabel(),
|
|
||||||
],
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
$chart = new Chart();
|
$chart = new Chart();
|
||||||
|
|
||||||
$chart->setType('line')
|
$chart->setType('line')
|
||||||
->setOptions($options)
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
->setLabels(array_values($labels))
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setColors($colors)
|
->setStacked(true)
|
||||||
|
->setBar(['columnWidth' => '40%'])
|
||||||
|
->setLegendPosition('top')
|
||||||
|
->setYaxisLabels(['formatter' => $this->getChartLabelFormatter()])
|
||||||
|
->setLabels(array_values($this->getLabels()))
|
||||||
|
->setColors($this->getColors())
|
||||||
->setDataset(trans('general.incoming'), 'column', $income)
|
->setDataset(trans('general.incoming'), 'column', $income)
|
||||||
->setDataset(trans('general.outgoing'), 'column', $expense)
|
->setDataset(trans('general.outgoing'), 'column', $expense)
|
||||||
->setDataset(trans_choice('general.profits', 1), 'line', $profit);
|
->setDataset(trans_choice('general.profits', 1), 'line', $profit);
|
||||||
|
@ -22,7 +22,7 @@ class ExpensesByCategory extends Widget
|
|||||||
$amount += $transaction->getAmountConvertedToDefault();
|
$amount += $transaction->getAmountConvertedToDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
$this->addMoneyToDonut($category->colorHexCode, $amount, $category->name);
|
$this->addMoneyToDonutChart($category->colorHexCode, $amount, $category->name);
|
||||||
});
|
});
|
||||||
|
|
||||||
$chart = $this->getDonutChart(trans_choice('general.expenses', 2), '100%', 300, 6);
|
$chart = $this->getDonutChart(trans_choice('general.expenses', 2), '100%', 300, 6);
|
||||||
|
@ -31,37 +31,18 @@ class ProfitLoss extends Widget
|
|||||||
{
|
{
|
||||||
$this->setFilter();
|
$this->setFilter();
|
||||||
|
|
||||||
$labels = $this->getLabels();
|
|
||||||
|
|
||||||
$income = $this->getIncome();
|
|
||||||
|
|
||||||
$expense = $this->getExpense();
|
|
||||||
|
|
||||||
$colors = $this->getColors();
|
|
||||||
|
|
||||||
$chart = new Chart();
|
$chart = new Chart();
|
||||||
|
|
||||||
$options = [
|
|
||||||
'legend' => [
|
|
||||||
'position' => 'top',
|
|
||||||
'markers' => [
|
|
||||||
'radius' => '12',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
|
|
||||||
'yaxis' => [
|
|
||||||
'labels' => [
|
|
||||||
'formatter' => $this->getFormatLabel(),
|
|
||||||
],
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
$chart->setType('bar')
|
$chart->setType('bar')
|
||||||
->setOptions($options)
|
->setDefaultLocale($this->getDefaultLocaleOfChart())
|
||||||
->setLabels(array_values($labels))
|
->setLocales($this->getLocaleTranslationOfChart())
|
||||||
->setColors($colors)
|
->setLegendPosition('top')
|
||||||
->setDataset(trans_choice('general.incomes', 1), 'column', array_values($income))
|
->setLegendMarkers(['radius' => '12'])
|
||||||
->setDataset(trans_choice('general.expenses', 1), 'column', array_values($expense));
|
->setYaxisLabels(['formatter' => $this->getChartLabelFormatter()])
|
||||||
|
->setLabels(array_values($this->getLabels()))
|
||||||
|
->setColors($this->getColors())
|
||||||
|
->setDataset(trans_choice('general.incomes', 1), 'column', array_values($this->getIncome()))
|
||||||
|
->setDataset(trans_choice('general.expenses', 1), 'column', array_values($this->getExpense()));
|
||||||
|
|
||||||
return $this->view('widgets.bar_chart', [
|
return $this->view('widgets.bar_chart', [
|
||||||
'chart' => $chart,
|
'chart' => $chart,
|
||||||
|
7
presets.js
vendored
7
presets.js
vendored
@ -211,6 +211,10 @@ module.exports = {
|
|||||||
'0%': { boxShadow: '0 28px 0 -28px #ffffff' },
|
'0%': { boxShadow: '0 28px 0 -28px #ffffff' },
|
||||||
'100%': { boxShadow: '0 28px 0 #ffffff' },
|
'100%': { boxShadow: '0 28px 0 #ffffff' },
|
||||||
},
|
},
|
||||||
|
submit_second: {
|
||||||
|
'0%': { boxShadow: '0 28px 0 -28px #55588b' },
|
||||||
|
'100%': { boxShadow: '0 28px 0 #55588b' },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
animation: {
|
animation: {
|
||||||
@ -218,7 +222,8 @@ module.exports = {
|
|||||||
pulsate_transparent: 'pulsate_transparent 1500ms ease infinite;',
|
pulsate_transparent: 'pulsate_transparent 1500ms ease infinite;',
|
||||||
pulsate: 'pulsate 1500ms ease infinite;',
|
pulsate: 'pulsate 1500ms ease infinite;',
|
||||||
spin: 'spin 1000ms infinite',
|
spin: 'spin 1000ms infinite',
|
||||||
submit: 'submit 0.7s ease alternate infinite'
|
submit: 'submit 0.7s ease alternate infinite',
|
||||||
|
submit_second: 'submit_second 0.7s ease alternate infinite'
|
||||||
},
|
},
|
||||||
|
|
||||||
transitionProperty: {
|
transitionProperty: {
|
||||||
|
80
public/css/app.css
vendored
80
public/css/app.css
vendored
@ -9981,6 +9981,34 @@ input[type="date"]::-webkit-inner-spin-button,
|
|||||||
-webkit-animation: submit 0.7s ease alternate infinite;
|
-webkit-animation: submit 0.7s ease alternate infinite;
|
||||||
animation: submit 0.7s ease alternate infinite;
|
animation: submit 0.7s ease alternate infinite;
|
||||||
}
|
}
|
||||||
|
@-webkit-keyframes submit_second{
|
||||||
|
|
||||||
|
0%{
|
||||||
|
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
}
|
||||||
|
|
||||||
|
100%{
|
||||||
|
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||||
|
box-shadow: 0 28px 0 #55588b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes submit_second{
|
||||||
|
|
||||||
|
0%{
|
||||||
|
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
}
|
||||||
|
|
||||||
|
100%{
|
||||||
|
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||||
|
box-shadow: 0 28px 0 #55588b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.animate-submit_second{
|
||||||
|
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
}
|
||||||
.cursor-auto{
|
.cursor-auto{
|
||||||
cursor: auto;
|
cursor: auto;
|
||||||
}
|
}
|
||||||
@ -47306,6 +47334,27 @@ body{
|
|||||||
animation: submit 0.7s ease alternate infinite;
|
animation: submit 0.7s ease alternate infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes submit_second{
|
||||||
|
|
||||||
|
0%{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
}
|
||||||
|
|
||||||
|
100%{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||||
|
box-shadow: 0 28px 0 #55588b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.before\:animate-submit_second::before{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
}
|
||||||
|
|
||||||
.before\:rounded-full::before{
|
.before\:rounded-full::before{
|
||||||
content: var(--tw-content);
|
content: var(--tw-content);
|
||||||
border-radius: 9999px;
|
border-radius: 9999px;
|
||||||
@ -47441,6 +47490,27 @@ body{
|
|||||||
animation: submit 0.7s ease alternate infinite;
|
animation: submit 0.7s ease alternate infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes submit_second{
|
||||||
|
|
||||||
|
0%{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
box-shadow: 0 28px 0 -28px #55588b;
|
||||||
|
}
|
||||||
|
|
||||||
|
100%{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-box-shadow: 0 28px 0 #55588b;
|
||||||
|
box-shadow: 0 28px 0 #55588b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.after\:animate-submit_second::after{
|
||||||
|
content: var(--tw-content);
|
||||||
|
-webkit-animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
animation: submit_second 0.7s ease alternate infinite;
|
||||||
|
}
|
||||||
|
|
||||||
.after\:rounded-full::after{
|
.after\:rounded-full::after{
|
||||||
content: var(--tw-content);
|
content: var(--tw-content);
|
||||||
border-radius: 9999px;
|
border-radius: 9999px;
|
||||||
@ -47693,6 +47763,16 @@ body{
|
|||||||
background-color: rgb(197 217 186 / var(--tw-bg-opacity));
|
background-color: rgb(197 217 186 / var(--tw-bg-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disabled\:bg-gray-300:disabled{
|
||||||
|
--tw-bg-opacity: 1;
|
||||||
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
.disabled\:bg-gray-100:disabled{
|
||||||
|
--tw-bg-opacity: 1;
|
||||||
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
||||||
|
}
|
||||||
|
|
||||||
.disabled\:opacity-50:disabled{
|
.disabled\:opacity-50:disabled{
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
8
public/vendor/apexcharts/apexcharts.js
vendored
8
public/vendor/apexcharts/apexcharts.js
vendored
File diff suppressed because one or more lines are too long
63
public/vendor/apexcharts/locales/ar.json
vendored
Normal file
63
public/vendor/apexcharts/locales/ar.json
vendored
Normal file
@ -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": "إعادة التعيين"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ca.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ca.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/cs.json
vendored
Normal file
55
public/vendor/apexcharts/locales/cs.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/de.json
vendored
Normal file
55
public/vendor/apexcharts/locales/de.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/el.json
vendored
Normal file
55
public/vendor/apexcharts/locales/el.json
vendored
Normal file
@ -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": "Επαναφορά μεγένθυνσης"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/en.json
vendored
Normal file
55
public/vendor/apexcharts/locales/en.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/es.json
vendored
Normal file
55
public/vendor/apexcharts/locales/es.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
63
public/vendor/apexcharts/locales/et.json
vendored
Normal file
63
public/vendor/apexcharts/locales/et.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/fa.json
vendored
Normal file
55
public/vendor/apexcharts/locales/fa.json
vendored
Normal file
@ -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": "بازنشانی بزرگنمایی"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/fi.json
vendored
Normal file
55
public/vendor/apexcharts/locales/fi.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/fr.json
vendored
Normal file
55
public/vendor/apexcharts/locales/fr.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/he.json
vendored
Normal file
55
public/vendor/apexcharts/locales/he.json
vendored
Normal file
@ -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": "איפוס תצוגה"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/hi.json
vendored
Normal file
55
public/vendor/apexcharts/locales/hi.json
vendored
Normal file
@ -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": "फिर से कायम करना"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/hr.json
vendored
Normal file
55
public/vendor/apexcharts/locales/hr.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
64
public/vendor/apexcharts/locales/hu.json
vendored
Normal file
64
public/vendor/apexcharts/locales/hu.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/hy.json
vendored
Normal file
55
public/vendor/apexcharts/locales/hy.json
vendored
Normal file
@ -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": "Բերել սկզբնական վիճակի"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
47
public/vendor/apexcharts/locales/id.json
vendored
Normal file
47
public/vendor/apexcharts/locales/id.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/it.json
vendored
Normal file
55
public/vendor/apexcharts/locales/it.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ja.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ja.json
vendored
Normal file
@ -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": "ズームリセット"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ka.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ka.json
vendored
Normal file
@ -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": "გადიდების გაუქმება"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ko.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ko.json
vendored
Normal file
@ -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": "원래대로"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/lt.json
vendored
Normal file
55
public/vendor/apexcharts/locales/lt.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
64
public/vendor/apexcharts/locales/lv.json
vendored
Normal file
64
public/vendor/apexcharts/locales/lv.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
55
public/vendor/apexcharts/locales/nb.json
vendored
Normal file
55
public/vendor/apexcharts/locales/nb.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/nl.json
vendored
Normal file
55
public/vendor/apexcharts/locales/nl.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/pl.json
vendored
Normal file
55
public/vendor/apexcharts/locales/pl.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/pt-br.json
vendored
Normal file
55
public/vendor/apexcharts/locales/pt-br.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/pt.json
vendored
Normal file
55
public/vendor/apexcharts/locales/pt.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/rs.json
vendored
Normal file
55
public/vendor/apexcharts/locales/rs.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ru.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ru.json
vendored
Normal file
@ -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": "Сбросить увеличение"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/se.json
vendored
Normal file
55
public/vendor/apexcharts/locales/se.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/sk.json
vendored
Normal file
55
public/vendor/apexcharts/locales/sk.json
vendored
Normal file
@ -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ť"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/sl.json
vendored
Normal file
55
public/vendor/apexcharts/locales/sl.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/sq.json
vendored
Normal file
55
public/vendor/apexcharts/locales/sq.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/th.json
vendored
Normal file
55
public/vendor/apexcharts/locales/th.json
vendored
Normal file
@ -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": "รีเซ็ตการซูม"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/tr.json
vendored
Normal file
55
public/vendor/apexcharts/locales/tr.json
vendored
Normal file
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/ua.json
vendored
Normal file
55
public/vendor/apexcharts/locales/ua.json
vendored
Normal file
@ -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": "Скинути збільшення"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/zh-cn.json
vendored
Normal file
55
public/vendor/apexcharts/locales/zh-cn.json
vendored
Normal file
@ -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": "重置缩放"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
55
public/vendor/apexcharts/locales/zh-tw.json
vendored
Normal file
55
public/vendor/apexcharts/locales/zh-tw.json
vendored
Normal file
@ -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": "重置縮放"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -55,8 +55,16 @@
|
|||||||
<img :src="image_src" class="absolute top-0 right-2" alt="" />
|
<img :src="image_src" class="absolute top-0 right-2" alt="" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<base-button class="flex items-center justify-center text-base rounded-lg disabled:opacity-50 relative m-auto bottom-48 bg-white hover:bg-gray-100 text-purple rounded-md py-3 px-5 font-semibold btn-default" @click="finish()">
|
<base-button
|
||||||
{{ translations.finish.create_first_invoice }}
|
class="relative flex items-center justify-center text-base rounded-lg m-auto bottom-48 bg-white hover:bg-gray-100 text-purple py-3 px-5 font-semibold disabled:bg-gray-100 "
|
||||||
|
:disabled="anchor_loading"
|
||||||
|
@click="finish()"
|
||||||
|
>
|
||||||
|
<i v-if="anchor_loading" class="animate-submit_second delay-[0.28s] absolute w-2 h-2 rounded-full left-0 right-0 -top-2.5 m-auto before:absolute before:w-2 before:h-2 before:rounded-full before:animate-submit_second before:delay-[0.14s] after:absolute after:w-2 after:h-2 after:rounded-full after:animate-submit_second before:-left-3.5 after:-right-3.5 after:delay-[0.42s]"></i>
|
||||||
|
|
||||||
|
<span :class="[{'opacity-0': anchor_loading}]">
|
||||||
|
{{ translations.finish.create_first_invoice }}
|
||||||
|
</span>
|
||||||
</base-button>
|
</base-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -93,6 +101,7 @@ export default {
|
|||||||
active: 3,
|
active: 3,
|
||||||
route_url: url,
|
route_url: url,
|
||||||
image_src: app_url + "/public/img/wizard-modules.png",
|
image_src: app_url + "/public/img/wizard-modules.png",
|
||||||
|
anchor_loading: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -124,6 +133,7 @@ export default {
|
|||||||
|
|
||||||
finish() {
|
finish() {
|
||||||
window.location.href = url + "/sales/invoices/create";
|
window.location.href = url + "/sales/invoices/create";
|
||||||
|
this.anchor_loading = true;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
{{ $button['text'] }}
|
{{ $button['text'] }}
|
||||||
|
|
||||||
@if (! empty($button['active_badge']))
|
@if (! empty($button['active_badge']))
|
||||||
<div class="absolute w-7 h-7 opacity-100 z-20 -top-1.5 -right-8">
|
<div class="absolute w-7 h-7 opacity-100 z-10 -top-1.5 -right-8">
|
||||||
<div class="absolute w-5 h-5 left-0 top-1 border border-gray-100 rounded-full animate-pulsate_transparent bg-white"></div>
|
<div class="absolute w-5 h-5 left-0 top-1 border border-gray-100 rounded-full animate-pulsate_transparent bg-white"></div>
|
||||||
<div class="absolute w-2 h-2 top-2.5 left-1.5 rounded-full bg-green-400"></div>
|
<div class="absolute w-2 h-2 top-2.5 left-1.5 rounded-full bg-green-400"></div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user