mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
Merge branch '3.2.0' into 'dev'
3.2.0 See merge request TheGamecraft/c-cms!29
This commit is contained in:
@@ -1,29 +1,70 @@
|
|||||||
image: php:7.2
|
image: registry.gitlab.com/thegamecraft/c-cms:latest
|
||||||
|
|
||||||
cache:
|
services:
|
||||||
paths:
|
- mysql:5.7
|
||||||
- vendor/
|
|
||||||
|
|
||||||
before_script:
|
variables:
|
||||||
- apt-get update -qq && apt-get install -y -qq sshpass
|
MYSQL_DATABASE: homestead
|
||||||
- apt-get install zip unzip
|
MYSQL_ROOT_PASSWORD: secret
|
||||||
- apt-get install git -yqq
|
DB_HOST: mysql
|
||||||
- curl -sS https://getcomposer.org/installer | php
|
DB_USERNAME: root
|
||||||
- php composer.phar install
|
|
||||||
- mv composer.phar /usr/local/bin/composer
|
|
||||||
|
|
||||||
deploy_stage:
|
stages:
|
||||||
|
- build
|
||||||
|
- deploy
|
||||||
|
- deploy
|
||||||
|
|
||||||
|
build:
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- cp .env.example .env
|
||||||
|
- composer install
|
||||||
|
- php artisan key:generate
|
||||||
|
|
||||||
|
deploy_697:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
environment: Staging
|
script:
|
||||||
|
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
|
|
||||||
|
- ~/.composer/vendor/bin/envoy run deploy_697 --commit="$CI_COMMIT_SHA"
|
||||||
|
environment:
|
||||||
|
name: escadron697
|
||||||
|
url: http://escadron697.ca
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
deploy_736:
|
||||||
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- sshpass -V
|
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||||
- export SSHPASS=$USER_PASS
|
- eval $(ssh-agent -s)
|
||||||
- chmod -R 777 storage
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
- chmod -R 777 bootstrap
|
- mkdir -p ~/.ssh
|
||||||
- composer update
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
- sshpass -e scp -o stricthostkeychecking=no -r . admin@54.39.97.124:/var/www/website/C697
|
|
||||||
- sshpass -e scp -o stricthostkeychecking=no -r . admin@54.39.97.124:/var/www/website/C736
|
- ~/.composer/vendor/bin/envoy run deploy_736 --commit="$CI_COMMIT_SHA"
|
||||||
- sshpass -e ssh -t admin@54.39.97.124 "cd /var/www/website/C697 && php artisan migrate"
|
environment:
|
||||||
- sshpass -e ssh -t admin@54.39.97.124 "cd /var/www/website/C736 && php artisan migrate"
|
name: escadron736
|
||||||
|
url: http://736.exvps.ca
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
||||||
|
deploy_dev:
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
|
||||||
|
|
||||||
|
- ~/.composer/vendor/bin/envoy run deploy_736 --commit="$CI_COMMIT_SHA"
|
||||||
|
environment:
|
||||||
|
name: dev
|
||||||
|
url: http://dev.exvps.ca
|
||||||
|
only:
|
||||||
|
- dev
|
||||||
23
Dockerfile
Normal file
23
Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Set the base image for subsequent instructions
|
||||||
|
FROM php:7.2
|
||||||
|
|
||||||
|
# Update packages
|
||||||
|
RUN apt-get update
|
||||||
|
|
||||||
|
# Install PHP and composer dependencies
|
||||||
|
RUN apt-get install -qq git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev autoconf libc-dev pkg-config
|
||||||
|
|
||||||
|
# Clear out the local repository of retrieved package files
|
||||||
|
RUN apt-get clean
|
||||||
|
|
||||||
|
# Install needed extensions
|
||||||
|
# Here you can install any other extension that you need during the test and deployment process
|
||||||
|
RUN docker-php-ext-install pdo_mysql zip
|
||||||
|
|
||||||
|
RUN pecl install mcrypt-1.0.1
|
||||||
|
|
||||||
|
# Install Composer
|
||||||
|
RUN curl --silent --show-error https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
||||||
|
|
||||||
|
# Install Laravel Envoy
|
||||||
|
RUN composer global require "laravel/envoy"
|
||||||
135
Envoy.blade.php
Normal file
135
Envoy.blade.php
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
@servers(['web' => 'deployer@vps188754.vps.ovh.ca'])
|
||||||
|
|
||||||
|
@setup
|
||||||
|
$repository = 'git@gitlab.com:TheGamecraft/c-cms.git';
|
||||||
|
$release = date('YmdHis');
|
||||||
|
|
||||||
|
$releases_dir_697 = '/var/www/c-cms/escadron697/releases';
|
||||||
|
$app_dir_697 = '/var/www/c-cms/escadron697';
|
||||||
|
$new_release_dir_697 = $releases_dir_697 .'/'. $release;
|
||||||
|
|
||||||
|
$releases_dir_736 = '/var/www/c-cms/escadron736/releases';
|
||||||
|
$app_dir_736 = '/var/www/c-cms/escadron736';
|
||||||
|
$new_release_dir_736 = $releases_dir_736 .'/'. $release;
|
||||||
|
|
||||||
|
$releases_dir_dev = '/var/www/c-cms/dev/releases';
|
||||||
|
$app_dir_dev = '/var/www/c-cms/dev';
|
||||||
|
$new_release_dir_dev = $releases_dir_dev .'/'. $release;
|
||||||
|
@endsetup
|
||||||
|
|
||||||
|
@story('deploy_697')
|
||||||
|
clone_repository_697
|
||||||
|
run_composer_697
|
||||||
|
update_symlinks_697
|
||||||
|
@endstory
|
||||||
|
|
||||||
|
@story('deploy_736')
|
||||||
|
clone_repository_736
|
||||||
|
run_composer_736
|
||||||
|
update_symlinks_736
|
||||||
|
@endstory
|
||||||
|
|
||||||
|
@story('deploy_dev')
|
||||||
|
clone_repository_dev
|
||||||
|
run_composer_dev
|
||||||
|
update_symlinks_dev
|
||||||
|
@endstory
|
||||||
|
|
||||||
|
@task('clone_repository_697')
|
||||||
|
echo 'Cloning repository'
|
||||||
|
[ -d {{ $releases_dir_697 }} ] || mkdir {{ $releases_dir_697 }}
|
||||||
|
git clone --depth 1 {{ $repository }} {{ $new_release_dir_697 }}
|
||||||
|
cd {{ $new_release_dir_697 }}
|
||||||
|
git reset --hard {{ $commit }}
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('run_composer_697')
|
||||||
|
echo "Starting deployment ({{ $release }})"
|
||||||
|
cd {{ $new_release_dir_697 }}
|
||||||
|
composer install --prefer-dist --no-scripts -q -o
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('update_symlinks_697')
|
||||||
|
echo "Linking storage directory"
|
||||||
|
rm -rf {{ $new_release_dir_697 }}/storage
|
||||||
|
ln -nfs {{ $app_dir_697 }}/storage {{ $new_release_dir_697 }}/storage
|
||||||
|
|
||||||
|
echo 'Linking .env file'
|
||||||
|
ln -nfs {{ $app_dir_697 }}/.env {{ $new_release_dir_697 }}/.env
|
||||||
|
|
||||||
|
echo 'Linking current release'
|
||||||
|
ln -nfs {{ $new_release_dir_697 }} {{ $app_dir_697 }}/current
|
||||||
|
|
||||||
|
echo 'Setting permission'
|
||||||
|
chmod -R 777 {{ $app_dir_697 }}/current/bootstrap/
|
||||||
|
|
||||||
|
echo 'Migrate DB'
|
||||||
|
cd {{ $app_dir_697 }}/current/
|
||||||
|
php artisan migrate
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('clone_repository_736')
|
||||||
|
echo 'Cloning repository'
|
||||||
|
[ -d {{ $releases_dir_736 }} ] || mkdir {{ $releases_dir_736 }}
|
||||||
|
git clone --depth 1 {{ $repository }} {{ $new_release_dir_736 }}
|
||||||
|
cd {{ $new_release_dir_736 }}
|
||||||
|
git reset --hard {{ $commit }}
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('run_composer_736')
|
||||||
|
echo "Starting deployment ({{ $release }})"
|
||||||
|
cd {{ $new_release_dir_736 }}
|
||||||
|
composer install --prefer-dist --no-scripts -q -o
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('update_symlinks_736')
|
||||||
|
echo "Linking storage directory"
|
||||||
|
rm -rf {{ $new_release_dir_736 }}/storage
|
||||||
|
ln -nfs {{ $app_dir_736 }}/storage {{ $new_release_dir_736 }}/storage
|
||||||
|
|
||||||
|
echo 'Linking .env file'
|
||||||
|
ln -nfs {{ $app_dir_736 }}/.env {{ $new_release_dir_736 }}/.env
|
||||||
|
|
||||||
|
echo 'Linking current release'
|
||||||
|
ln -nfs {{ $new_release_dir_736 }} {{ $app_dir_736 }}/current
|
||||||
|
|
||||||
|
echo 'Setting permission'
|
||||||
|
chmod -R 777 {{ $app_dir_736 }}/current/bootstrap/
|
||||||
|
|
||||||
|
echo 'Migrate DB'
|
||||||
|
cd {{ $app_dir_736 }}/current/
|
||||||
|
php artisan migrate
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('clone_repository_dev')
|
||||||
|
echo 'Cloning repository'
|
||||||
|
[ -d {{ $releases_dir_dev }} ] || mkdir {{ $releases_dir_dev }}
|
||||||
|
git clone --depth 1 --branch dev {{ $repository }} {{ $new_release_dir_dev }}
|
||||||
|
cd {{ $new_release_dir_dev }}
|
||||||
|
git reset --hard {{ $commit }}
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('run_composer_dev')
|
||||||
|
echo "Starting deployment ({{ $release }})"
|
||||||
|
cd {{ $new_release_dir_dev }}
|
||||||
|
composer install --prefer-dist --no-scripts -q -o
|
||||||
|
@endtask
|
||||||
|
|
||||||
|
@task('update_symlinks_dev')
|
||||||
|
echo "Linking storage directory"
|
||||||
|
rm -rf {{ $new_release_dir_dev }}/storage
|
||||||
|
ln -nfs {{ $app_dir_dev }}/storage {{ $new_release_dir_dev }}/storage
|
||||||
|
|
||||||
|
echo 'Linking .env file'
|
||||||
|
ln -nfs {{ $app_dir_dev }}/.env {{ $new_release_dir_dev }}/.env
|
||||||
|
|
||||||
|
echo 'Linking current release'
|
||||||
|
ln -nfs {{ $new_release_dir_dev }} {{ $app_dir_dev }}/current
|
||||||
|
|
||||||
|
echo 'Setting permission'
|
||||||
|
chmod -R 777 {{ $app_dir_dev }}/current/bootstrap/
|
||||||
|
|
||||||
|
echo 'Migrate DB'
|
||||||
|
cd {{ $app_dir_dev }}/current/
|
||||||
|
php artisan migrate
|
||||||
|
@endtask
|
||||||
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2018 Mathieu Lagace
|
Copyright (c) 2019 Mathieu Lagace
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@@ -133,9 +133,13 @@ class CalendarController extends Controller
|
|||||||
case 'volunteer':
|
case 'volunteer':
|
||||||
echo '<div class="row" style="color:#DF0174;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-handshake-o fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
echo '<div class="row" style="color:#DF0174;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-handshake-o fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'other':
|
||||||
|
echo '<div class="row" style="color:#DF0174;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-handshake-o fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
echo '<div class="row" style="color:#0B615E;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
echo '<div class="row" style="color:'.\App\ComplementaryActivity::find($activity->type)->calendar_color.';"><span class="fa-stack fa-lg col-md-2">'.\App\ComplementaryActivity::find($activity->type)->calendar_icon.'</span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
@@ -366,7 +370,11 @@ class CalendarController extends Controller
|
|||||||
$UserList = User::all();
|
$UserList = User::all();
|
||||||
$LocalList = Local::all();
|
$LocalList = Local::all();
|
||||||
|
|
||||||
return view('admin.calendar.calendar_add' ,['RequestDate' => $date, 'Userslist' => $UserList, 'LocalsList' => $LocalList]);
|
return view('admin.calendar.calendar_add' ,[
|
||||||
|
'RequestDate' => $date,
|
||||||
|
'Userslist' => $UserList,
|
||||||
|
'LocalsList' => $LocalList,
|
||||||
|
'ComplementaryActivity' => \App\ComplementaryActivity::all()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function edit($id)
|
public function edit($id)
|
||||||
@@ -737,4 +745,10 @@ class CalendarController extends Controller
|
|||||||
|
|
||||||
return $filtered_classes;
|
return $filtered_classes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function show()
|
||||||
|
{
|
||||||
|
$date = request('date');
|
||||||
|
return view('admin.calendar.modal.show',['schedules' => \App\Schedule::all()->where('date',$date),'date' => $date]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ class ComplementaryActivityController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
return view('public.activity');
|
return view('admin.configs.activity',['configs' => \App\Config::all(),'activities' => \App\ComplementaryActivity::all()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -24,7 +24,7 @@ class ComplementaryActivityController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function create()
|
public function create()
|
||||||
{
|
{
|
||||||
//
|
return view('admin.configs.activity-add');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -33,9 +33,38 @@ class ComplementaryActivityController extends Controller
|
|||||||
* @param \Illuminate\Http\Request $request
|
* @param \Illuminate\Http\Request $request
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function store(Request $request)
|
public function store()
|
||||||
{
|
{
|
||||||
//
|
$activity = new ComplementaryActivity();
|
||||||
|
|
||||||
|
$activity->name = request('name');
|
||||||
|
$activity->admin_desc = request('admin_desc');
|
||||||
|
$activity->public_body = 'Veuillez modifier le text de description publique par défaut';
|
||||||
|
$activity->calendar_color = request('calendar_color');
|
||||||
|
$activity->calendar_icon = request('calendar_icon');
|
||||||
|
$activity->begin_time = request('begin_time');
|
||||||
|
$activity->end_time = request('end_time');
|
||||||
|
$activity->location = request('location');
|
||||||
|
if(request('is_mandatory') == 'on')
|
||||||
|
{
|
||||||
|
$activity->is_mandatory = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activity->is_mandatory = false;
|
||||||
|
}
|
||||||
|
if(request('is_promoted') == 'on')
|
||||||
|
{
|
||||||
|
$activity->is_promoted = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activity->is_promoted = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$activity->save();
|
||||||
|
|
||||||
|
return redirect('/admin/config/activity')->with('status','Activité ajouté avec succes');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -55,9 +84,9 @@ class ComplementaryActivityController extends Controller
|
|||||||
* @param \App\ComplementaryActivity $complementaryActivity
|
* @param \App\ComplementaryActivity $complementaryActivity
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function edit(ComplementaryActivity $complementaryActivity)
|
public function edit($id)
|
||||||
{
|
{
|
||||||
//
|
return view('admin.configs.activity-edit',['activity' => \App\ComplementaryActivity::find($id)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -67,9 +96,37 @@ class ComplementaryActivityController extends Controller
|
|||||||
* @param \App\ComplementaryActivity $complementaryActivity
|
* @param \App\ComplementaryActivity $complementaryActivity
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function update(Request $request, ComplementaryActivity $complementaryActivity)
|
public function update($id)
|
||||||
{
|
{
|
||||||
//
|
$activity = ComplementaryActivity::find($id);
|
||||||
|
|
||||||
|
$activity->name = request('name');
|
||||||
|
$activity->admin_desc = request('admin_desc');
|
||||||
|
$activity->calendar_color = request('calendar_color');
|
||||||
|
$activity->calendar_icon = request('calendar_icon');
|
||||||
|
$activity->begin_time = request('begin_time');
|
||||||
|
$activity->end_time = request('end_time');
|
||||||
|
$activity->location = request('location');
|
||||||
|
if(request('is_mandatory') == 'on')
|
||||||
|
{
|
||||||
|
$activity->is_mandatory = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activity->is_mandatory = false;
|
||||||
|
}
|
||||||
|
if(request('is_promoted') == 'on')
|
||||||
|
{
|
||||||
|
$activity->is_promoted = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$activity->is_promoted = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$activity->save();
|
||||||
|
|
||||||
|
return redirect('/admin/config/activity')->with('success','Modification sauvegarder avec succes');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -78,8 +135,12 @@ class ComplementaryActivityController extends Controller
|
|||||||
* @param \App\ComplementaryActivity $complementaryActivity
|
* @param \App\ComplementaryActivity $complementaryActivity
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function destroy(ComplementaryActivity $complementaryActivity)
|
public function destroy()
|
||||||
{
|
{
|
||||||
//
|
$id = request('id');
|
||||||
|
|
||||||
|
$activity = ComplementaryActivity::find($id);
|
||||||
|
|
||||||
|
$activity->delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class PublicController extends Controller
|
|||||||
{
|
{
|
||||||
return view('public.index',[
|
return view('public.index',[
|
||||||
'news' => \App\News::all()->sortByDesc('created_at')->take(3),
|
'news' => \App\News::all()->sortByDesc('created_at')->take(3),
|
||||||
'activities' => \App\ComplementaryActivity::all(),
|
'activities' => \App\ComplementaryActivity::all()->where('is_promoted','1'),
|
||||||
'pictures' => \App\Picture::all()->sortByDesc('created_at')->take(\App\Config::getData('nb_activity_public'))
|
'pictures' => \App\Picture::all()->sortByDesc('created_at')->take(\App\Config::getData('nb_activity_public'))
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,125 @@ namespace App\Http\Controllers;
|
|||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use \App\Schedule;
|
use \App\Schedule;
|
||||||
|
use function GuzzleHttp\json_encode;
|
||||||
|
|
||||||
class ScheduleController extends Controller
|
class ScheduleController extends Controller
|
||||||
{
|
{
|
||||||
//
|
public function index()
|
||||||
|
{
|
||||||
|
return view('admin.configs.schedule',['configs' => \App\Config::all()]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update()
|
||||||
|
{
|
||||||
|
$configs = ['admin_periode_nb'];
|
||||||
|
|
||||||
|
foreach ($configs as $config) {
|
||||||
|
$c = \App\Config::all()->where('name',$config)->first();
|
||||||
|
$c->data = [request($config)];
|
||||||
|
$c->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
$new_admin_periode_begin = [];
|
||||||
|
$new_admin_periode_end = [];
|
||||||
|
for ($i=1; $i <= request('admin_periode_nb'); $i++) {
|
||||||
|
if(request('admin_periode_begin_'.$i))
|
||||||
|
{
|
||||||
|
$new_admin_periode_begin[$i] = request('admin_periode_begin_'.$i);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$new_admin_periode_begin[$i] = "00:00";
|
||||||
|
}
|
||||||
|
if(request('admin_periode_end_'.$i))
|
||||||
|
{
|
||||||
|
$new_admin_periode_end[$i] = request('admin_periode_end_'.$i);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$new_admin_periode_end[$i] = "00:00";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$temp = \App\Config::all()->where('name','admin_periode_begin')->first();
|
||||||
|
$temp->data = $new_admin_periode_begin;
|
||||||
|
$temp->save();
|
||||||
|
|
||||||
|
$temp = \App\Config::all()->where('name','admin_periode_end')->first();
|
||||||
|
$temp->data = $new_admin_periode_end;
|
||||||
|
$temp->save();
|
||||||
|
|
||||||
|
return redirect('/admin/config/schedule')->with('success','Modification sauvegarder avec succes !');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function apiIndex()
|
||||||
|
{
|
||||||
|
$schedules = Schedule::all();
|
||||||
|
$activity = \App\ComplementaryActivity::all();
|
||||||
|
|
||||||
|
$events = [];
|
||||||
|
|
||||||
|
foreach ($schedules as $schedule) {
|
||||||
|
$color = 'blue';
|
||||||
|
switch ($schedule->type) {
|
||||||
|
case 'regular':
|
||||||
|
$color = 'orange';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'pilotage':
|
||||||
|
$color = '#58D3F7';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'drill':
|
||||||
|
$color = 'blue';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'music':
|
||||||
|
$color = 'green';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'biathlon':
|
||||||
|
$color = 'red';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'marksmanship':
|
||||||
|
$color = 'grey';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'founding':
|
||||||
|
$color = '#00FF40';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'volunteer':
|
||||||
|
$color = '#DF0174';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'other':
|
||||||
|
$color = '#DF0174';
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
if ($activity->find($schedule->type)) {
|
||||||
|
$color = $activity->find($schedule->type)->calendar_color;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
};
|
||||||
|
|
||||||
|
$event = [
|
||||||
|
'title' => $schedule->data['event_name'],
|
||||||
|
'start' => $schedule->date.'T'.$schedule->data['event_begin_time'],
|
||||||
|
'end' => $schedule->date.'T'.$schedule->data['event_end_time'],
|
||||||
|
'color' => $color,
|
||||||
|
'id' => $schedule->id
|
||||||
|
];
|
||||||
|
array_push($events,$event);
|
||||||
|
}
|
||||||
|
|
||||||
|
return json_encode($events);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function loadModal($id)
|
||||||
|
{
|
||||||
|
return view('public.modal.schedule',['event' => \App\Schedule::find($id)]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -208,7 +208,7 @@ class UserController extends Controller
|
|||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
||||||
return back()->with('status', 'Votre avatar a été mis à jour !');
|
return back()->with('success', 'Votre avatar a été mis à jour !');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function UserAvatar()
|
public function UserAvatar()
|
||||||
@@ -229,7 +229,7 @@ class UserController extends Controller
|
|||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
||||||
return back()->with('status', 'Modification enregistré');
|
return back()->with('success', 'Modification enregistré');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function UserAdress()
|
public function UserAdress()
|
||||||
@@ -245,6 +245,6 @@ class UserController extends Controller
|
|||||||
|
|
||||||
$user->save();
|
$user->save();
|
||||||
|
|
||||||
return back()->with('status', 'Modification enregistré');
|
return back()->with('success', 'Modification enregistré');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ class CreateComplementaryActivitiesTable extends Migration
|
|||||||
$table->string('name');
|
$table->string('name');
|
||||||
$table->text('public_body');
|
$table->text('public_body');
|
||||||
$table->text('admin_desc');
|
$table->text('admin_desc');
|
||||||
|
$table->string('calendar_color')->default('blue');
|
||||||
|
$table->string('calendar_icon')->default('<i class="fa fa-question-circle"></i>');
|
||||||
$table->string('begin_time')->default('12:00');
|
$table->string('begin_time')->default('12:00');
|
||||||
$table->string('end_time')->default('13:00');
|
$table->string('end_time')->default('13:00');
|
||||||
$table->string('location')->default('Escadron');
|
$table->string('location')->default('Escadron');
|
||||||
|
|||||||
@@ -12,18 +12,83 @@ class ComplementaryActivitiesSeeder extends Seeder
|
|||||||
public function run()
|
public function run()
|
||||||
{
|
{
|
||||||
DB::table('complementary_activities')->insert([
|
DB::table('complementary_activities')->insert([
|
||||||
|
[
|
||||||
|
'name' => 'Soirée d\'instruction régulière',
|
||||||
|
'calendar_color' => 'orange',
|
||||||
|
'calendar_icon' => '<i class="fas fa-book"></i>',
|
||||||
|
'begin_time' => '18:30',
|
||||||
|
'end_time' => '21:45',
|
||||||
|
'Location' => 'Escadron',
|
||||||
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'Congé',
|
||||||
|
'calendar_color' => 'red',
|
||||||
|
'calendar_icon' => '<i class="fa fa-times"></i>',
|
||||||
|
'begin_time' => '00:01',
|
||||||
|
'end_time' => '23:59',
|
||||||
|
'Location' => 'Escadron',
|
||||||
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'Financement',
|
||||||
|
'calendar_color' => 'light-green',
|
||||||
|
'calendar_icon' => '<i class="fa fa-usd"></i>',
|
||||||
|
'begin_time' => '00:01',
|
||||||
|
'end_time' => '23:59',
|
||||||
|
'Location' => 'Escadron',
|
||||||
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'Bénévolat',
|
||||||
|
'calendar_color' => 'green',
|
||||||
|
'calendar_icon' => '<i class="fa fa-handshake-o "></i>',
|
||||||
|
'begin_time' => '00:01',
|
||||||
|
'end_time' => '23:59',
|
||||||
|
'Location' => 'Escadron',
|
||||||
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'Autre',
|
||||||
|
'calendar_color' => 'purple',
|
||||||
|
'calendar_icon' => '<i class="fa fa-circle "></i>',
|
||||||
|
'begin_time' => '00:01',
|
||||||
|
'end_time' => '23:59',
|
||||||
|
'Location' => 'Escadron',
|
||||||
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'name' => 'Précidrill',
|
'name' => 'Précidrill',
|
||||||
|
'calendar_color' => 'blue',
|
||||||
|
'calendar_icon' => '<i class="fa fa-trophy"></i>',
|
||||||
|
'begin_time' => '19:00',
|
||||||
|
'end_time' => '21:00',
|
||||||
|
'Location' => 'Escadron',
|
||||||
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'Musique',
|
'name' => 'Musique',
|
||||||
|
'calendar_color' => 'gold',
|
||||||
|
'calendar_icon' => '<i class="fa fa-music"></i>',
|
||||||
|
'begin_time' => '19:00',
|
||||||
|
'end_time' => '21:00',
|
||||||
|
'Location' => 'Escadron',
|
||||||
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'name' => 'Tir de précision',
|
'name' => 'Tir de précision',
|
||||||
|
'calendar_color' => 'grey',
|
||||||
|
'calendar_icon' => '<i class="fa fa-bullseye"></i>',
|
||||||
|
'begin_time' => '19:00',
|
||||||
|
'end_time' => '21:00',
|
||||||
|
'Location' => 'Escadron',
|
||||||
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
'public_body' => 'Veuillez modifier le text de description publique par défaut',
|
||||||
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
'admin_desc' => 'Veuillez modifier la description admin par défaut',
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -187,6 +187,26 @@ class ConfigsTableSeeder extends Seeder
|
|||||||
'state' => 0,
|
'state' => 0,
|
||||||
'data' => '["https://drive.google.com/uc?export=download&id=1i1a0sjI8I3nzt4mlcLvznjqYF-12JgfQ"]'
|
'data' => '["https://drive.google.com/uc?export=download&id=1i1a0sjI8I3nzt4mlcLvznjqYF-12JgfQ"]'
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'name' => 'admin_periode_begin',
|
||||||
|
'state' => 0,
|
||||||
|
'data' => '["1" => "19:10","2" => "20:30"]'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'admin_periode_end',
|
||||||
|
'state' => 0,
|
||||||
|
'data' => '["1" => "20:10","2" => "21:20"]'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'admin_periode_nb',
|
||||||
|
'state' => 0,
|
||||||
|
'data' => '["2"]'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'name' => 'admin_level_in_schedule_nb',
|
||||||
|
'state' => 0,
|
||||||
|
'data' => '["3"]'
|
||||||
|
]
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
90
public/assets/admin/assets/scss/style.css
vendored
90
public/assets/admin/assets/scss/style.css
vendored
@@ -2237,92 +2237,4 @@ header .form-inline {
|
|||||||
.right-panel .content #bootstrap-data-table_wrapper .table td, .right-panel .content #bootstrap-data-table_wrapper .table th {
|
.right-panel .content #bootstrap-data-table_wrapper .table td, .right-panel .content #bootstrap-data-table_wrapper .table th {
|
||||||
padding: 5px; } }
|
padding: 5px; } }
|
||||||
|
|
||||||
/*# sourceMappingURL=style.css.map */
|
/*# sourceMappingURL=style.css.map */
|
||||||
|
|
||||||
.calendar{
|
|
||||||
margin-top: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar-body-column {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.calendar-container{
|
|
||||||
width: 14%;
|
|
||||||
height: 7.5rem;
|
|
||||||
text-align: center;
|
|
||||||
vertical-align: middle !important;
|
|
||||||
border: solid 1px #d9d9d9 !important;
|
|
||||||
padding: 0px !important;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
.calendar-date{
|
|
||||||
float: left;
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
.calendar-text{
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.calendar-text > div {
|
|
||||||
text-align:start;
|
|
||||||
}
|
|
||||||
.calendar_event_name {
|
|
||||||
height: 3rem;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 800px) {
|
|
||||||
.calendar-container{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.calendar-head{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.calendar-empty{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-calendar{
|
|
||||||
padding: 36px 0;
|
|
||||||
height: 7.5rem;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
.btn-calendar:hover{
|
|
||||||
background-color: #f2f2f26e;
|
|
||||||
}
|
|
||||||
.thead-dark {
|
|
||||||
color: #fff;
|
|
||||||
background-color: #212529;
|
|
||||||
border-color: #32383e;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.loader{
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.loader-bg{
|
|
||||||
width: 70px;
|
|
||||||
margin-top: 50px;
|
|
||||||
margin-bottom: 50px;
|
|
||||||
}
|
|
||||||
.loader-spinner {
|
|
||||||
position: absolute;
|
|
||||||
border: 16px solid #f3f3f3;
|
|
||||||
border-top: 16px solid #272c33;
|
|
||||||
border-radius: 50%;
|
|
||||||
width: 120px;
|
|
||||||
height: 120px;
|
|
||||||
animation: spin 2s linear infinite;
|
|
||||||
left: 0px;
|
|
||||||
right: 0px;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
top: 44px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
0% { transform: rotate(0deg); }
|
|
||||||
100% { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
.cs-notification:hover {
|
|
||||||
background-color: #F2F2F2 !important;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
20
public/assets/fullcalendar/bootstrap/LICENSE.txt
Normal file
20
public/assets/fullcalendar/bootstrap/LICENSE.txt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Copyright (c) 2019 Adam Shaw
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
8
public/assets/fullcalendar/bootstrap/README.md
Normal file
8
public/assets/fullcalendar/bootstrap/README.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
# FullCalendar Bootstrap Plugin
|
||||||
|
|
||||||
|
Bootstrap 4 theming for your calendar
|
||||||
|
|
||||||
|
[View the docs »](https://fullcalendar.io/docs/bootstrap-theme)
|
||||||
|
|
||||||
|
This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar)
|
||||||
36
public/assets/fullcalendar/bootstrap/main.css
vendored
Normal file
36
public/assets/fullcalendar/bootstrap/main.css
vendored
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
.fc.fc-bootstrap a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc.fc-bootstrap a[data-goto]:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-bootstrap hr.fc-divider {
|
||||||
|
border-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-bootstrap .fc-today.alert {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-bootstrap a.fc-event:not([href]):not([tabindex]) {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-bootstrap .fc-popover.card {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Popover
|
||||||
|
--------------------------------------------------------------------------------------------------*/
|
||||||
|
.fc-bootstrap .fc-popover .card-body {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* TimeGrid Slats (lines that run horizontally)
|
||||||
|
--------------------------------------------------------------------------------------------------*/
|
||||||
|
.fc-bootstrap .fc-time-grid .fc-slats table {
|
||||||
|
/* some themes have background color. see through to slats */
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
12
public/assets/fullcalendar/bootstrap/main.d.ts
vendored
Normal file
12
public/assets/fullcalendar/bootstrap/main.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// Generated by dts-bundle v0.7.3-fork.1
|
||||||
|
// Dependencies for this module:
|
||||||
|
// ../../../../../@fullcalendar/core
|
||||||
|
|
||||||
|
declare module '@fullcalendar/bootstrap' {
|
||||||
|
import { Theme } from '@fullcalendar/core';
|
||||||
|
export class BootstrapTheme extends Theme {
|
||||||
|
}
|
||||||
|
const _default: import("@fullcalendar/core").PluginDef;
|
||||||
|
export default _default;
|
||||||
|
}
|
||||||
|
|
||||||
83
public/assets/fullcalendar/bootstrap/main.esm.js
vendored
Normal file
83
public/assets/fullcalendar/bootstrap/main.esm.js
vendored
Normal file
@@ -0,0 +1,83 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap Plugin v4.3.0
|
||||||
|
Docs & License: https://fullcalendar.io/
|
||||||
|
(c) 2019 Adam Shaw
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { createPlugin, Theme } from '@fullcalendar/core';
|
||||||
|
|
||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
/* global Reflect, Promise */
|
||||||
|
|
||||||
|
var extendStatics = function(d, b) {
|
||||||
|
extendStatics = Object.setPrototypeOf ||
|
||||||
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||||
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||||
|
return extendStatics(d, b);
|
||||||
|
};
|
||||||
|
|
||||||
|
function __extends(d, b) {
|
||||||
|
extendStatics(d, b);
|
||||||
|
function __() { this.constructor = d; }
|
||||||
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||||
|
}
|
||||||
|
|
||||||
|
var BootstrapTheme = /** @class */ (function (_super) {
|
||||||
|
__extends(BootstrapTheme, _super);
|
||||||
|
function BootstrapTheme() {
|
||||||
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
|
}
|
||||||
|
return BootstrapTheme;
|
||||||
|
}(Theme));
|
||||||
|
BootstrapTheme.prototype.classes = {
|
||||||
|
widget: 'fc-bootstrap',
|
||||||
|
tableGrid: 'table-bordered',
|
||||||
|
tableList: 'table',
|
||||||
|
tableListHeading: 'table-active',
|
||||||
|
buttonGroup: 'btn-group',
|
||||||
|
button: 'btn btn-primary',
|
||||||
|
buttonActive: 'active',
|
||||||
|
today: 'alert alert-info',
|
||||||
|
popover: 'card card-primary',
|
||||||
|
popoverHeader: 'card-header',
|
||||||
|
popoverContent: 'card-body',
|
||||||
|
// day grid
|
||||||
|
// for left/right border color when border is inset from edges (all-day in timeGrid view)
|
||||||
|
// avoid `table` class b/c don't want margins/padding/structure. only border color.
|
||||||
|
headerRow: 'table-bordered',
|
||||||
|
dayRow: 'table-bordered',
|
||||||
|
// list view
|
||||||
|
listView: 'card card-primary'
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.baseIconClass = 'fa';
|
||||||
|
BootstrapTheme.prototype.iconClasses = {
|
||||||
|
close: 'fa-times',
|
||||||
|
prev: 'fa-chevron-left',
|
||||||
|
next: 'fa-chevron-right',
|
||||||
|
prevYear: 'fa-angle-double-left',
|
||||||
|
nextYear: 'fa-angle-double-right'
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome';
|
||||||
|
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
|
||||||
|
BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
|
||||||
|
var main = createPlugin({
|
||||||
|
themeClasses: {
|
||||||
|
bootstrap: BootstrapTheme
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default main;
|
||||||
|
export { BootstrapTheme };
|
||||||
91
public/assets/fullcalendar/bootstrap/main.js
vendored
Normal file
91
public/assets/fullcalendar/bootstrap/main.js
vendored
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap Plugin v4.3.0
|
||||||
|
Docs & License: https://fullcalendar.io/
|
||||||
|
(c) 2019 Adam Shaw
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@fullcalendar/core')) :
|
||||||
|
typeof define === 'function' && define.amd ? define(['exports', '@fullcalendar/core'], factory) :
|
||||||
|
(global = global || self, factory(global.FullCalendarBootstrap = {}, global.FullCalendar));
|
||||||
|
}(this, function (exports, core) { 'use strict';
|
||||||
|
|
||||||
|
/*! *****************************************************************************
|
||||||
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
||||||
|
this file except in compliance with the License. You may obtain a copy of the
|
||||||
|
License at http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
||||||
|
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
||||||
|
MERCHANTABLITY OR NON-INFRINGEMENT.
|
||||||
|
|
||||||
|
See the Apache Version 2.0 License for specific language governing permissions
|
||||||
|
and limitations under the License.
|
||||||
|
***************************************************************************** */
|
||||||
|
/* global Reflect, Promise */
|
||||||
|
|
||||||
|
var extendStatics = function(d, b) {
|
||||||
|
extendStatics = Object.setPrototypeOf ||
|
||||||
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||||
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||||
|
return extendStatics(d, b);
|
||||||
|
};
|
||||||
|
|
||||||
|
function __extends(d, b) {
|
||||||
|
extendStatics(d, b);
|
||||||
|
function __() { this.constructor = d; }
|
||||||
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||||
|
}
|
||||||
|
|
||||||
|
var BootstrapTheme = /** @class */ (function (_super) {
|
||||||
|
__extends(BootstrapTheme, _super);
|
||||||
|
function BootstrapTheme() {
|
||||||
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
|
}
|
||||||
|
return BootstrapTheme;
|
||||||
|
}(core.Theme));
|
||||||
|
BootstrapTheme.prototype.classes = {
|
||||||
|
widget: 'fc-bootstrap',
|
||||||
|
tableGrid: 'table-bordered',
|
||||||
|
tableList: 'table',
|
||||||
|
tableListHeading: 'table-active',
|
||||||
|
buttonGroup: 'btn-group',
|
||||||
|
button: 'btn btn-primary',
|
||||||
|
buttonActive: 'active',
|
||||||
|
today: 'alert alert-info',
|
||||||
|
popover: 'card card-primary',
|
||||||
|
popoverHeader: 'card-header',
|
||||||
|
popoverContent: 'card-body',
|
||||||
|
// day grid
|
||||||
|
// for left/right border color when border is inset from edges (all-day in timeGrid view)
|
||||||
|
// avoid `table` class b/c don't want margins/padding/structure. only border color.
|
||||||
|
headerRow: 'table-bordered',
|
||||||
|
dayRow: 'table-bordered',
|
||||||
|
// list view
|
||||||
|
listView: 'card card-primary'
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.baseIconClass = 'fa';
|
||||||
|
BootstrapTheme.prototype.iconClasses = {
|
||||||
|
close: 'fa-times',
|
||||||
|
prev: 'fa-chevron-left',
|
||||||
|
next: 'fa-chevron-right',
|
||||||
|
prevYear: 'fa-angle-double-left',
|
||||||
|
nextYear: 'fa-angle-double-right'
|
||||||
|
};
|
||||||
|
BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome';
|
||||||
|
BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
|
||||||
|
BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
|
||||||
|
var main = core.createPlugin({
|
||||||
|
themeClasses: {
|
||||||
|
bootstrap: BootstrapTheme
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
exports.BootstrapTheme = BootstrapTheme;
|
||||||
|
exports.default = main;
|
||||||
|
|
||||||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
|
||||||
|
}));
|
||||||
1
public/assets/fullcalendar/bootstrap/main.min.css
vendored
Normal file
1
public/assets/fullcalendar/bootstrap/main.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0}
|
||||||
6
public/assets/fullcalendar/bootstrap/main.min.js
vendored
Normal file
6
public/assets/fullcalendar/bootstrap/main.min.js
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
/*!
|
||||||
|
FullCalendar Bootstrap Plugin v4.3.0
|
||||||
|
Docs & License: https://fullcalendar.io/
|
||||||
|
(c) 2019 Adam Shaw
|
||||||
|
*/
|
||||||
|
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@fullcalendar/core")):"function"==typeof define&&define.amd?define(["exports","@fullcalendar/core"],t):t((e=e||self).FullCalendarBootstrap={},e.FullCalendar)}(this,function(e,t){"use strict";var o=function(e,t){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)t.hasOwnProperty(o)&&(e[o]=t[o])})(e,t)};var r=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return function(e,t){function r(){this.constructor=e}o(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}(t,e),t}(t.Theme);r.prototype.classes={widget:"fc-bootstrap",tableGrid:"table-bordered",tableList:"table",tableListHeading:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",today:"alert alert-info",popover:"card card-primary",popoverHeader:"card-header",popoverContent:"card-body",headerRow:"table-bordered",dayRow:"table-bordered",listView:"card card-primary"},r.prototype.baseIconClass="fa",r.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},r.prototype.iconOverrideOption="bootstrapFontAwesome",r.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",r.prototype.iconOverridePrefix="fa-";var a=t.createPlugin({themeClasses:{bootstrap:r}});e.BootstrapTheme=r,e.default=a,Object.defineProperty(e,"__esModule",{value:!0})});
|
||||||
33
public/assets/fullcalendar/bootstrap/package.json
Normal file
33
public/assets/fullcalendar/bootstrap/package.json
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"name": "@fullcalendar/bootstrap",
|
||||||
|
"version": "4.3.0",
|
||||||
|
"title": "FullCalendar Bootstrap Plugin",
|
||||||
|
"description": "Bootstrap 4 theming for your calendar",
|
||||||
|
"keywords": [
|
||||||
|
"calendar",
|
||||||
|
"event",
|
||||||
|
"full-sized"
|
||||||
|
],
|
||||||
|
"homepage": "https://fullcalendar.io/",
|
||||||
|
"docs": "https://fullcalendar.io/docs/bootstrap-theme",
|
||||||
|
"bugs": "https://fullcalendar.io/reporting-bugs",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/fullcalendar/fullcalendar.git",
|
||||||
|
"homepage": "https://github.com/fullcalendar/fullcalendar"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"author": {
|
||||||
|
"name": "Adam Shaw",
|
||||||
|
"email": "arshaw@arshaw.com",
|
||||||
|
"url": "http://arshaw.com/"
|
||||||
|
},
|
||||||
|
"copyright": "2019 Adam Shaw",
|
||||||
|
"peerDependencies": {
|
||||||
|
"@fullcalendar/core": "~4.3.0"
|
||||||
|
},
|
||||||
|
"main": "main.js",
|
||||||
|
"module": "main.esm.js",
|
||||||
|
"unpkg": "main.min.js",
|
||||||
|
"types": "main.d.ts"
|
||||||
|
}
|
||||||
20
public/assets/fullcalendar/core/LICENSE.txt
Normal file
20
public/assets/fullcalendar/core/LICENSE.txt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Copyright (c) 2019 Adam Shaw
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
8
public/assets/fullcalendar/core/README.md
Normal file
8
public/assets/fullcalendar/core/README.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
# FullCalendar Core Package
|
||||||
|
|
||||||
|
Provides core functionality, including the Calendar class
|
||||||
|
|
||||||
|
[View the docs »](https://fullcalendar.io/docs/initialize-es6)
|
||||||
|
|
||||||
|
This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar)
|
||||||
1348
public/assets/fullcalendar/core/locales-all.js
vendored
Normal file
1348
public/assets/fullcalendar/core/locales-all.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/assets/fullcalendar/core/locales-all.min.js
vendored
Normal file
1
public/assets/fullcalendar/core/locales-all.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
30
public/assets/fullcalendar/core/locales/af.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/af.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.af = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var af = {
|
||||||
|
code: "af",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Vorige",
|
||||||
|
next: "Volgende",
|
||||||
|
today: "Vandag",
|
||||||
|
year: "Jaar",
|
||||||
|
month: "Maand",
|
||||||
|
week: "Week",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
allDayHtml: "Heeldag",
|
||||||
|
eventLimitText: "Addisionele",
|
||||||
|
noEventsMessage: "Daar is geen gebeurtenisse nie"
|
||||||
|
};
|
||||||
|
|
||||||
|
return af;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-dz.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-dz.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-dz'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arDz = {
|
||||||
|
code: "ar-dz",
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 4 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arDz;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-kw.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-kw.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-kw'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arKw = {
|
||||||
|
code: "ar-kw",
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 12 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arKw;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-ly.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-ly.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ly'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arLy = {
|
||||||
|
code: "ar-ly",
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arLy;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-ma.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-ma.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ma'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arMa = {
|
||||||
|
code: "ar-ma",
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arMa;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-sa.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-sa.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-sa'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arSa = {
|
||||||
|
code: "ar-sa",
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arSa;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar-tn.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar-tn.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-tn'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var arTn = {
|
||||||
|
code: "ar-tn",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return arTn;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/ar.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/ar.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ar = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ar = {
|
||||||
|
code: "ar",
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "السابق",
|
||||||
|
next: "التالي",
|
||||||
|
today: "اليوم",
|
||||||
|
month: "شهر",
|
||||||
|
week: "أسبوع",
|
||||||
|
day: "يوم",
|
||||||
|
list: "أجندة"
|
||||||
|
},
|
||||||
|
weekLabel: "أسبوع",
|
||||||
|
allDayText: "اليوم كله",
|
||||||
|
eventLimitText: "أخرى",
|
||||||
|
noEventsMessage: "أي أحداث لعرض"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ar;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/bg.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/bg.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bg = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var bg = {
|
||||||
|
code: "bg",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "назад",
|
||||||
|
next: "напред",
|
||||||
|
today: "днес",
|
||||||
|
month: "Месец",
|
||||||
|
week: "Седмица",
|
||||||
|
day: "Ден",
|
||||||
|
list: "График"
|
||||||
|
},
|
||||||
|
allDayText: "Цял ден",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+още " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Няма събития за показване"
|
||||||
|
};
|
||||||
|
|
||||||
|
return bg;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/bs.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/bs.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bs = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var bs = {
|
||||||
|
code: "bs",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Prošli",
|
||||||
|
next: "Sljedeći",
|
||||||
|
today: "Danas",
|
||||||
|
month: "Mjesec",
|
||||||
|
week: "Sedmica",
|
||||||
|
day: "Dan",
|
||||||
|
list: "Raspored"
|
||||||
|
},
|
||||||
|
weekLabel: "Sed",
|
||||||
|
allDayText: "Cijeli dan",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ još " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nema događaja za prikazivanje"
|
||||||
|
};
|
||||||
|
|
||||||
|
return bs;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/ca.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/ca.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ca = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ca = {
|
||||||
|
code: "ca",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Anterior",
|
||||||
|
next: "Següent",
|
||||||
|
today: "Avui",
|
||||||
|
month: "Mes",
|
||||||
|
week: "Setmana",
|
||||||
|
day: "Dia",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Set",
|
||||||
|
allDayText: "Tot el dia",
|
||||||
|
eventLimitText: "més",
|
||||||
|
noEventsMessage: "No hi ha esdeveniments per mostrar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ca;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/cs.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/cs.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.cs = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var cs = {
|
||||||
|
code: "cs",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Dříve",
|
||||||
|
next: "Později",
|
||||||
|
today: "Nyní",
|
||||||
|
month: "Měsíc",
|
||||||
|
week: "Týden",
|
||||||
|
day: "Den",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Týd",
|
||||||
|
allDayText: "Celý den",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+další: " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Žádné akce k zobrazení"
|
||||||
|
};
|
||||||
|
|
||||||
|
return cs;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/da.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/da.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.da = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var da = {
|
||||||
|
code: "da",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Forrige",
|
||||||
|
next: "Næste",
|
||||||
|
today: "I dag",
|
||||||
|
month: "Måned",
|
||||||
|
week: "Uge",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Uge",
|
||||||
|
allDayText: "Hele dagen",
|
||||||
|
eventLimitText: "flere",
|
||||||
|
noEventsMessage: "Ingen arrangementer at vise"
|
||||||
|
};
|
||||||
|
|
||||||
|
return da;
|
||||||
|
|
||||||
|
}));
|
||||||
33
public/assets/fullcalendar/core/locales/de.js
vendored
Normal file
33
public/assets/fullcalendar/core/locales/de.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.de = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var de = {
|
||||||
|
code: "de",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Zurück",
|
||||||
|
next: "Vor",
|
||||||
|
today: "Heute",
|
||||||
|
year: "Jahr",
|
||||||
|
month: "Monat",
|
||||||
|
week: "Woche",
|
||||||
|
day: "Tag",
|
||||||
|
list: "Terminübersicht"
|
||||||
|
},
|
||||||
|
weekLabel: "KW",
|
||||||
|
allDayText: "Ganztägig",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ weitere " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Keine Ereignisse anzuzeigen"
|
||||||
|
};
|
||||||
|
|
||||||
|
return de;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/el.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/el.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.el = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var el = {
|
||||||
|
code: "el",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Προηγούμενος",
|
||||||
|
next: "Επόμενος",
|
||||||
|
today: "Σήμερα",
|
||||||
|
month: "Μήνας",
|
||||||
|
week: "Εβδομάδα",
|
||||||
|
day: "Ημέρα",
|
||||||
|
list: "Ατζέντα"
|
||||||
|
},
|
||||||
|
weekLabel: "Εβδ",
|
||||||
|
allDayText: "Ολοήμερο",
|
||||||
|
eventLimitText: "περισσότερα",
|
||||||
|
noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί"
|
||||||
|
};
|
||||||
|
|
||||||
|
return el;
|
||||||
|
|
||||||
|
}));
|
||||||
17
public/assets/fullcalendar/core/locales/en-au.js
vendored
Normal file
17
public/assets/fullcalendar/core/locales/en-au.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-au'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var enAu = {
|
||||||
|
code: "en-au",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return enAu;
|
||||||
|
|
||||||
|
}));
|
||||||
17
public/assets/fullcalendar/core/locales/en-gb.js
vendored
Normal file
17
public/assets/fullcalendar/core/locales/en-gb.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-gb'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var enGb = {
|
||||||
|
code: "en-gb",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return enGb;
|
||||||
|
|
||||||
|
}));
|
||||||
17
public/assets/fullcalendar/core/locales/en-nz.js
vendored
Normal file
17
public/assets/fullcalendar/core/locales/en-nz.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-nz'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var enNz = {
|
||||||
|
code: "en-nz",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return enNz;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/es-us.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/es-us.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['es-us'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var esUs = {
|
||||||
|
code: "es",
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Ant",
|
||||||
|
next: "Sig",
|
||||||
|
today: "Hoy",
|
||||||
|
month: "Mes",
|
||||||
|
week: "Semana",
|
||||||
|
day: "Día",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayHtml: "Todo<br/>el día",
|
||||||
|
eventLimitText: "más",
|
||||||
|
noEventsMessage: "No hay eventos para mostrar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return esUs;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/es.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/es.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.es = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var es = {
|
||||||
|
code: "es",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Ant",
|
||||||
|
next: "Sig",
|
||||||
|
today: "Hoy",
|
||||||
|
month: "Mes",
|
||||||
|
week: "Semana",
|
||||||
|
day: "Día",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayHtml: "Todo<br/>el día",
|
||||||
|
eventLimitText: "más",
|
||||||
|
noEventsMessage: "No hay eventos para mostrar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return es;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/et.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/et.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.et = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var et = {
|
||||||
|
code: "et",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Eelnev",
|
||||||
|
next: "Järgnev",
|
||||||
|
today: "Täna",
|
||||||
|
month: "Kuu",
|
||||||
|
week: "Nädal",
|
||||||
|
day: "Päev",
|
||||||
|
list: "Päevakord"
|
||||||
|
},
|
||||||
|
weekLabel: "näd",
|
||||||
|
allDayText: "Kogu päev",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ veel " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Kuvamiseks puuduvad sündmused"
|
||||||
|
};
|
||||||
|
|
||||||
|
return et;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/eu.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/eu.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.eu = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var eu = {
|
||||||
|
code: "eu",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Aur",
|
||||||
|
next: "Hur",
|
||||||
|
today: "Gaur",
|
||||||
|
month: "Hilabetea",
|
||||||
|
week: "Astea",
|
||||||
|
day: "Eguna",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "As",
|
||||||
|
allDayHtml: "Egun<br/>osoa",
|
||||||
|
eventLimitText: "gehiago",
|
||||||
|
noEventsMessage: "Ez dago ekitaldirik erakusteko"
|
||||||
|
};
|
||||||
|
|
||||||
|
return eu;
|
||||||
|
|
||||||
|
}));
|
||||||
33
public/assets/fullcalendar/core/locales/fa.js
vendored
Normal file
33
public/assets/fullcalendar/core/locales/fa.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fa = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var fa = {
|
||||||
|
code: "fa",
|
||||||
|
week: {
|
||||||
|
dow: 6,
|
||||||
|
doy: 12 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "قبلی",
|
||||||
|
next: "بعدی",
|
||||||
|
today: "امروز",
|
||||||
|
month: "ماه",
|
||||||
|
week: "هفته",
|
||||||
|
day: "روز",
|
||||||
|
list: "برنامه"
|
||||||
|
},
|
||||||
|
weekLabel: "هف",
|
||||||
|
allDayText: "تمام روز",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "بیش از " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "هیچ رویدادی به نمایش"
|
||||||
|
};
|
||||||
|
|
||||||
|
return fa;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/fi.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/fi.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fi = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var fi = {
|
||||||
|
code: "fi",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Edellinen",
|
||||||
|
next: "Seuraava",
|
||||||
|
today: "Tänään",
|
||||||
|
month: "Kuukausi",
|
||||||
|
week: "Viikko",
|
||||||
|
day: "Päivä",
|
||||||
|
list: "Tapahtumat"
|
||||||
|
},
|
||||||
|
weekLabel: "Vk",
|
||||||
|
allDayText: "Koko päivä",
|
||||||
|
eventLimitText: "lisää",
|
||||||
|
noEventsMessage: "Ei näytettäviä tapahtumia"
|
||||||
|
};
|
||||||
|
|
||||||
|
return fi;
|
||||||
|
|
||||||
|
}));
|
||||||
27
public/assets/fullcalendar/core/locales/fr-ca.js
vendored
Normal file
27
public/assets/fullcalendar/core/locales/fr-ca.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ca'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var frCa = {
|
||||||
|
code: "fr",
|
||||||
|
buttonText: {
|
||||||
|
prev: "Précédent",
|
||||||
|
next: "Suivant",
|
||||||
|
today: "Aujourd'hui",
|
||||||
|
year: "Année",
|
||||||
|
month: "Mois",
|
||||||
|
week: "Semaine",
|
||||||
|
day: "Jour",
|
||||||
|
list: "Mon planning"
|
||||||
|
},
|
||||||
|
weekLabel: "Sem.",
|
||||||
|
allDayHtml: "Toute la<br/>journée",
|
||||||
|
eventLimitText: "en plus",
|
||||||
|
noEventsMessage: "Aucun événement à afficher"
|
||||||
|
};
|
||||||
|
|
||||||
|
return frCa;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/fr-ch.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/fr-ch.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ch'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var frCh = {
|
||||||
|
code: "fr-ch",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Précédent",
|
||||||
|
next: "Suivant",
|
||||||
|
today: "Courant",
|
||||||
|
year: "Année",
|
||||||
|
month: "Mois",
|
||||||
|
week: "Semaine",
|
||||||
|
day: "Jour",
|
||||||
|
list: "Mon planning"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayHtml: "Toute la<br/>journée",
|
||||||
|
eventLimitText: "en plus",
|
||||||
|
noEventsMessage: "Aucun événement à afficher"
|
||||||
|
};
|
||||||
|
|
||||||
|
return frCh;
|
||||||
|
|
||||||
|
}));
|
||||||
31
public/assets/fullcalendar/core/locales/fr.js
vendored
Normal file
31
public/assets/fullcalendar/core/locales/fr.js
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fr = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var fr = {
|
||||||
|
code: "fr",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Précédent",
|
||||||
|
next: "Suivant",
|
||||||
|
today: "Aujourd'hui",
|
||||||
|
year: "Année",
|
||||||
|
month: "Mois",
|
||||||
|
week: "Semaine",
|
||||||
|
day: "Jour",
|
||||||
|
list: "Mon planning"
|
||||||
|
},
|
||||||
|
weekLabel: "Sem.",
|
||||||
|
allDayHtml: "Toute la<br/>journée",
|
||||||
|
eventLimitText: "en plus",
|
||||||
|
noEventsMessage: "Aucun événement à afficher"
|
||||||
|
};
|
||||||
|
|
||||||
|
return fr;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/gl.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/gl.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.gl = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var gl = {
|
||||||
|
code: "gl",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Ant",
|
||||||
|
next: "Seg",
|
||||||
|
today: "Hoxe",
|
||||||
|
month: "Mes",
|
||||||
|
week: "Semana",
|
||||||
|
day: "Día",
|
||||||
|
list: "Axenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayHtml: "Todo<br/>o día",
|
||||||
|
eventLimitText: "máis",
|
||||||
|
noEventsMessage: "Non hai eventos para amosar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return gl;
|
||||||
|
|
||||||
|
}));
|
||||||
27
public/assets/fullcalendar/core/locales/he.js
vendored
Normal file
27
public/assets/fullcalendar/core/locales/he.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.he = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var he = {
|
||||||
|
code: "he",
|
||||||
|
dir: 'rtl',
|
||||||
|
buttonText: {
|
||||||
|
prev: "הקודם",
|
||||||
|
next: "הבא",
|
||||||
|
today: "היום",
|
||||||
|
month: "חודש",
|
||||||
|
week: "שבוע",
|
||||||
|
day: "יום",
|
||||||
|
list: "סדר יום"
|
||||||
|
},
|
||||||
|
allDayText: "כל היום",
|
||||||
|
eventLimitText: "אחר",
|
||||||
|
noEventsMessage: "אין אירועים להצגה",
|
||||||
|
weekLabel: "שבוע"
|
||||||
|
};
|
||||||
|
|
||||||
|
return he;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/hi.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/hi.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hi = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var hi = {
|
||||||
|
code: "hi",
|
||||||
|
week: {
|
||||||
|
dow: 0,
|
||||||
|
doy: 6 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "पिछला",
|
||||||
|
next: "अगला",
|
||||||
|
today: "आज",
|
||||||
|
month: "महीना",
|
||||||
|
week: "सप्ताह",
|
||||||
|
day: "दिन",
|
||||||
|
list: "कार्यसूची"
|
||||||
|
},
|
||||||
|
weekLabel: "हफ्ता",
|
||||||
|
allDayText: "सभी दिन",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+अधिक " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "कोई घटनाओं को प्रदर्शित करने के लिए"
|
||||||
|
};
|
||||||
|
|
||||||
|
return hi;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/hr.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/hr.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hr = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var hr = {
|
||||||
|
code: "hr",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Prijašnji",
|
||||||
|
next: "Sljedeći",
|
||||||
|
today: "Danas",
|
||||||
|
month: "Mjesec",
|
||||||
|
week: "Tjedan",
|
||||||
|
day: "Dan",
|
||||||
|
list: "Raspored"
|
||||||
|
},
|
||||||
|
weekLabel: "Tje",
|
||||||
|
allDayText: "Cijeli dan",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ još " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nema događaja za prikaz"
|
||||||
|
};
|
||||||
|
|
||||||
|
return hr;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/hu.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/hu.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hu = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var hu = {
|
||||||
|
code: "hu",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "vissza",
|
||||||
|
next: "előre",
|
||||||
|
today: "ma",
|
||||||
|
month: "Hónap",
|
||||||
|
week: "Hét",
|
||||||
|
day: "Nap",
|
||||||
|
list: "Napló"
|
||||||
|
},
|
||||||
|
weekLabel: "Hét",
|
||||||
|
allDayText: "Egész nap",
|
||||||
|
eventLimitText: "további",
|
||||||
|
noEventsMessage: "Nincs megjeleníthető esemény"
|
||||||
|
};
|
||||||
|
|
||||||
|
return hu;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/id.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/id.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.id = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var id = {
|
||||||
|
code: "id",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "mundur",
|
||||||
|
next: "maju",
|
||||||
|
today: "hari ini",
|
||||||
|
month: "Bulan",
|
||||||
|
week: "Minggu",
|
||||||
|
day: "Hari",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Mg",
|
||||||
|
allDayHtml: "Sehari<br/>penuh",
|
||||||
|
eventLimitText: "lebih",
|
||||||
|
noEventsMessage: "Tidak ada acara untuk ditampilkan"
|
||||||
|
};
|
||||||
|
|
||||||
|
return id;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/is.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/is.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.is = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var is = {
|
||||||
|
code: "is",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Fyrri",
|
||||||
|
next: "Næsti",
|
||||||
|
today: "Í dag",
|
||||||
|
month: "Mánuður",
|
||||||
|
week: "Vika",
|
||||||
|
day: "Dagur",
|
||||||
|
list: "Dagskrá"
|
||||||
|
},
|
||||||
|
weekLabel: "Vika",
|
||||||
|
allDayHtml: "Allan<br/>daginn",
|
||||||
|
eventLimitText: "meira",
|
||||||
|
noEventsMessage: "Engir viðburðir til að sýna"
|
||||||
|
};
|
||||||
|
|
||||||
|
return is;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/it.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/it.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.it = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var it = {
|
||||||
|
code: "it",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Prec",
|
||||||
|
next: "Succ",
|
||||||
|
today: "Oggi",
|
||||||
|
month: "Mese",
|
||||||
|
week: "Settimana",
|
||||||
|
day: "Giorno",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayHtml: "Tutto il<br/>giorno",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+altri " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Non ci sono eventi da visualizzare"
|
||||||
|
};
|
||||||
|
|
||||||
|
return it;
|
||||||
|
|
||||||
|
}));
|
||||||
28
public/assets/fullcalendar/core/locales/ja.js
vendored
Normal file
28
public/assets/fullcalendar/core/locales/ja.js
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ja = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ja = {
|
||||||
|
code: "ja",
|
||||||
|
buttonText: {
|
||||||
|
prev: "前",
|
||||||
|
next: "次",
|
||||||
|
today: "今日",
|
||||||
|
month: "月",
|
||||||
|
week: "週",
|
||||||
|
day: "日",
|
||||||
|
list: "予定リスト"
|
||||||
|
},
|
||||||
|
weekLabel: "週",
|
||||||
|
allDayText: "終日",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "他 " + n + " 件";
|
||||||
|
},
|
||||||
|
noEventsMessage: "表示する予定はありません"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ja;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/ka.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/ka.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ka = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ka = {
|
||||||
|
code: "ka",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "წინა",
|
||||||
|
next: "შემდეგი",
|
||||||
|
today: "დღეს",
|
||||||
|
month: "თვე",
|
||||||
|
week: "კვირა",
|
||||||
|
day: "დღე",
|
||||||
|
list: "დღის წესრიგი"
|
||||||
|
},
|
||||||
|
weekLabel: "კვ",
|
||||||
|
allDayText: "მთელი დღე",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ კიდევ " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "ღონისძიებები არ არის"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ka;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/kk.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/kk.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.kk = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var kk = {
|
||||||
|
code: "kk",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Алдыңғы",
|
||||||
|
next: "Келесі",
|
||||||
|
today: "Бүгін",
|
||||||
|
month: "Ай",
|
||||||
|
week: "Апта",
|
||||||
|
day: "Күн",
|
||||||
|
list: "Күн тәртібі"
|
||||||
|
},
|
||||||
|
weekLabel: "Не",
|
||||||
|
allDayText: "Күні бойы",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ тағы " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Көрсету үшін оқиғалар жоқ"
|
||||||
|
};
|
||||||
|
|
||||||
|
return kk;
|
||||||
|
|
||||||
|
}));
|
||||||
26
public/assets/fullcalendar/core/locales/ko.js
vendored
Normal file
26
public/assets/fullcalendar/core/locales/ko.js
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ko = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ko = {
|
||||||
|
code: "ko",
|
||||||
|
buttonText: {
|
||||||
|
prev: "이전달",
|
||||||
|
next: "다음달",
|
||||||
|
today: "오늘",
|
||||||
|
month: "월",
|
||||||
|
week: "주",
|
||||||
|
day: "일",
|
||||||
|
list: "일정목록"
|
||||||
|
},
|
||||||
|
weekLabel: "주",
|
||||||
|
allDayText: "종일",
|
||||||
|
eventLimitText: "개",
|
||||||
|
noEventsMessage: "일정이 없습니다"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ko;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/lb.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/lb.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lb = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var lb = {
|
||||||
|
code: "lb",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Zréck",
|
||||||
|
next: "Weider",
|
||||||
|
today: "Haut",
|
||||||
|
month: "Mount",
|
||||||
|
week: "Woch",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Terminiwwersiicht"
|
||||||
|
},
|
||||||
|
weekLabel: "W",
|
||||||
|
allDayText: "Ganzen Dag",
|
||||||
|
eventLimitText: "méi",
|
||||||
|
noEventsMessage: "Nee Evenementer ze affichéieren"
|
||||||
|
};
|
||||||
|
|
||||||
|
return lb;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/lt.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/lt.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lt = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var lt = {
|
||||||
|
code: "lt",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Atgal",
|
||||||
|
next: "Pirmyn",
|
||||||
|
today: "Šiandien",
|
||||||
|
month: "Mėnuo",
|
||||||
|
week: "Savaitė",
|
||||||
|
day: "Diena",
|
||||||
|
list: "Darbotvarkė"
|
||||||
|
},
|
||||||
|
weekLabel: "SAV",
|
||||||
|
allDayText: "Visą dieną",
|
||||||
|
eventLimitText: "daugiau",
|
||||||
|
noEventsMessage: "Nėra įvykių rodyti"
|
||||||
|
};
|
||||||
|
|
||||||
|
return lt;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/lv.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/lv.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lv = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var lv = {
|
||||||
|
code: "lv",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Iepr.",
|
||||||
|
next: "Nāk.",
|
||||||
|
today: "Šodien",
|
||||||
|
month: "Mēnesis",
|
||||||
|
week: "Nedēļa",
|
||||||
|
day: "Diena",
|
||||||
|
list: "Dienas kārtība"
|
||||||
|
},
|
||||||
|
weekLabel: "Ned.",
|
||||||
|
allDayText: "Visu dienu",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+vēl " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nav notikumu"
|
||||||
|
};
|
||||||
|
|
||||||
|
return lv;
|
||||||
|
|
||||||
|
}));
|
||||||
28
public/assets/fullcalendar/core/locales/mk.js
vendored
Normal file
28
public/assets/fullcalendar/core/locales/mk.js
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.mk = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var mk = {
|
||||||
|
code: "mk",
|
||||||
|
buttonText: {
|
||||||
|
prev: "претходно",
|
||||||
|
next: "следно",
|
||||||
|
today: "Денес",
|
||||||
|
month: "Месец",
|
||||||
|
week: "Недела",
|
||||||
|
day: "Ден",
|
||||||
|
list: "График"
|
||||||
|
},
|
||||||
|
weekLabel: "Сед",
|
||||||
|
allDayText: "Цел ден",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+повеќе " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Нема настани за прикажување"
|
||||||
|
};
|
||||||
|
|
||||||
|
return mk;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/ms.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/ms.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ms = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ms = {
|
||||||
|
code: "ms",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Sebelum",
|
||||||
|
next: "Selepas",
|
||||||
|
today: "hari ini",
|
||||||
|
month: "Bulan",
|
||||||
|
week: "Minggu",
|
||||||
|
day: "Hari",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Mg",
|
||||||
|
allDayText: "Sepanjang hari",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "masih ada " + n + " acara";
|
||||||
|
},
|
||||||
|
noEventsMessage: "Tiada peristiwa untuk dipaparkan"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ms;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/nb.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/nb.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nb = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var nb = {
|
||||||
|
code: "nb",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Forrige",
|
||||||
|
next: "Neste",
|
||||||
|
today: "I dag",
|
||||||
|
month: "Måned",
|
||||||
|
week: "Uke",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Uke",
|
||||||
|
allDayText: "Hele dagen",
|
||||||
|
eventLimitText: "til",
|
||||||
|
noEventsMessage: "Ingen hendelser å vise"
|
||||||
|
};
|
||||||
|
|
||||||
|
return nb;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/nl.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/nl.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nl = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var nl = {
|
||||||
|
code: "nl",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Voorgaand",
|
||||||
|
next: "Volgende",
|
||||||
|
today: "Vandaag",
|
||||||
|
year: "Jaar",
|
||||||
|
month: "Maand",
|
||||||
|
week: "Week",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
allDayText: "Hele dag",
|
||||||
|
eventLimitText: "extra",
|
||||||
|
noEventsMessage: "Geen evenementen om te laten zien"
|
||||||
|
};
|
||||||
|
|
||||||
|
return nl;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/nn.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/nn.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nn = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var nn = {
|
||||||
|
code: "nn",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Førre",
|
||||||
|
next: "Neste",
|
||||||
|
today: "I dag",
|
||||||
|
month: "Månad",
|
||||||
|
week: "Veke",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Veke",
|
||||||
|
allDayText: "Heile dagen",
|
||||||
|
eventLimitText: "til",
|
||||||
|
noEventsMessage: "Ingen hendelser å vise"
|
||||||
|
};
|
||||||
|
|
||||||
|
return nn;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/pl.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/pl.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pl = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var pl = {
|
||||||
|
code: "pl",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Poprzedni",
|
||||||
|
next: "Następny",
|
||||||
|
today: "Dziś",
|
||||||
|
month: "Miesiąc",
|
||||||
|
week: "Tydzień",
|
||||||
|
day: "Dzień",
|
||||||
|
list: "Plan dnia"
|
||||||
|
},
|
||||||
|
weekLabel: "Tydz",
|
||||||
|
allDayText: "Cały dzień",
|
||||||
|
eventLimitText: "więcej",
|
||||||
|
noEventsMessage: "Brak wydarzeń do wyświetlenia"
|
||||||
|
};
|
||||||
|
|
||||||
|
return pl;
|
||||||
|
|
||||||
|
}));
|
||||||
28
public/assets/fullcalendar/core/locales/pt-br.js
vendored
Normal file
28
public/assets/fullcalendar/core/locales/pt-br.js
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['pt-br'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ptBr = {
|
||||||
|
code: "pt-br",
|
||||||
|
buttonText: {
|
||||||
|
prev: "Anterior",
|
||||||
|
next: "Próximo",
|
||||||
|
today: "Hoje",
|
||||||
|
month: "Mês",
|
||||||
|
week: "Semana",
|
||||||
|
day: "Dia",
|
||||||
|
list: "Compromissos"
|
||||||
|
},
|
||||||
|
weekLabel: "Sm",
|
||||||
|
allDayText: "dia inteiro",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "mais +" + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Não há eventos para mostrar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ptBr;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/pt.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/pt.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pt = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var pt = {
|
||||||
|
code: "pt",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Anterior",
|
||||||
|
next: "Seguinte",
|
||||||
|
today: "Hoje",
|
||||||
|
month: "Mês",
|
||||||
|
week: "Semana",
|
||||||
|
day: "Dia",
|
||||||
|
list: "Agenda"
|
||||||
|
},
|
||||||
|
weekLabel: "Sem",
|
||||||
|
allDayText: "Todo o dia",
|
||||||
|
eventLimitText: "mais",
|
||||||
|
noEventsMessage: "Não há eventos para mostrar"
|
||||||
|
};
|
||||||
|
|
||||||
|
return pt;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/ro.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/ro.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ro = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ro = {
|
||||||
|
code: "ro",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "precedentă",
|
||||||
|
next: "următoare",
|
||||||
|
today: "Azi",
|
||||||
|
month: "Lună",
|
||||||
|
week: "Săptămână",
|
||||||
|
day: "Zi",
|
||||||
|
list: "Agendă"
|
||||||
|
},
|
||||||
|
weekLabel: "Săpt",
|
||||||
|
allDayText: "Toată ziua",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+alte " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nu există evenimente de afișat"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ro;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/ru.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/ru.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ru = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var ru = {
|
||||||
|
code: "ru",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Пред",
|
||||||
|
next: "След",
|
||||||
|
today: "Сегодня",
|
||||||
|
month: "Месяц",
|
||||||
|
week: "Неделя",
|
||||||
|
day: "День",
|
||||||
|
list: "Повестка дня"
|
||||||
|
},
|
||||||
|
weekLabel: "Нед",
|
||||||
|
allDayText: "Весь день",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ ещё " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Нет событий для отображения"
|
||||||
|
};
|
||||||
|
|
||||||
|
return ru;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/sk.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/sk.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sk = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var sk = {
|
||||||
|
code: "sk",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Predchádzajúci",
|
||||||
|
next: "Nasledujúci",
|
||||||
|
today: "Dnes",
|
||||||
|
month: "Mesiac",
|
||||||
|
week: "Týždeň",
|
||||||
|
day: "Deň",
|
||||||
|
list: "Rozvrh"
|
||||||
|
},
|
||||||
|
weekLabel: "Ty",
|
||||||
|
allDayText: "Celý deň",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ďalšie: " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Žiadne akcie na zobrazenie"
|
||||||
|
};
|
||||||
|
|
||||||
|
return sk;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/sl.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/sl.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sl = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var sl = {
|
||||||
|
code: "sl",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Prejšnji",
|
||||||
|
next: "Naslednji",
|
||||||
|
today: "Trenutni",
|
||||||
|
month: "Mesec",
|
||||||
|
week: "Teden",
|
||||||
|
day: "Dan",
|
||||||
|
list: "Dnevni red"
|
||||||
|
},
|
||||||
|
weekLabel: "Teden",
|
||||||
|
allDayText: "Ves dan",
|
||||||
|
eventLimitText: "več",
|
||||||
|
noEventsMessage: "Ni dogodkov za prikaz"
|
||||||
|
};
|
||||||
|
|
||||||
|
return sl;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/sq.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/sq.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sq = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var sq = {
|
||||||
|
code: "sq",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "mbrapa",
|
||||||
|
next: "Përpara",
|
||||||
|
today: "sot",
|
||||||
|
month: "Muaj",
|
||||||
|
week: "Javë",
|
||||||
|
day: "Ditë",
|
||||||
|
list: "Listë"
|
||||||
|
},
|
||||||
|
weekLabel: "Ja",
|
||||||
|
allDayHtml: "Gjithë<br/>ditën",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+më tepër " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nuk ka evente për të shfaqur"
|
||||||
|
};
|
||||||
|
|
||||||
|
return sq;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/sr-cyrl.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/sr-cyrl.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['sr-cyrl'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var srCyrl = {
|
||||||
|
code: "sr-cyrl",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Претходна",
|
||||||
|
next: "следећи",
|
||||||
|
today: "Данас",
|
||||||
|
month: "Месец",
|
||||||
|
week: "Недеља",
|
||||||
|
day: "Дан",
|
||||||
|
list: "Планер"
|
||||||
|
},
|
||||||
|
weekLabel: "Сед",
|
||||||
|
allDayText: "Цео дан",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ још " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Нема догађаја за приказ"
|
||||||
|
};
|
||||||
|
|
||||||
|
return srCyrl;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/sr.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/sr.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sr = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var sr = {
|
||||||
|
code: "sr",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Prethodna",
|
||||||
|
next: "Sledeći",
|
||||||
|
today: "Danas",
|
||||||
|
month: "Mеsеc",
|
||||||
|
week: "Nеdеlja",
|
||||||
|
day: "Dan",
|
||||||
|
list: "Planеr"
|
||||||
|
},
|
||||||
|
weekLabel: "Sed",
|
||||||
|
allDayText: "Cеo dan",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ još " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Nеma događaja za prikaz"
|
||||||
|
};
|
||||||
|
|
||||||
|
return sr;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/sv.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/sv.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sv = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var sv = {
|
||||||
|
code: "sv",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Förra",
|
||||||
|
next: "Nästa",
|
||||||
|
today: "Idag",
|
||||||
|
month: "Månad",
|
||||||
|
week: "Vecka",
|
||||||
|
day: "Dag",
|
||||||
|
list: "Program"
|
||||||
|
},
|
||||||
|
weekLabel: "v.",
|
||||||
|
allDayText: "Heldag",
|
||||||
|
eventLimitText: "till",
|
||||||
|
noEventsMessage: "Inga händelser att visa"
|
||||||
|
};
|
||||||
|
|
||||||
|
return sv;
|
||||||
|
|
||||||
|
}));
|
||||||
25
public/assets/fullcalendar/core/locales/th.js
vendored
Normal file
25
public/assets/fullcalendar/core/locales/th.js
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.th = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var th = {
|
||||||
|
code: "th",
|
||||||
|
buttonText: {
|
||||||
|
prev: "ย้อน",
|
||||||
|
next: "ถัดไป",
|
||||||
|
today: "วันนี้",
|
||||||
|
month: "เดือน",
|
||||||
|
week: "สัปดาห์",
|
||||||
|
day: "วัน",
|
||||||
|
list: "แผนงาน"
|
||||||
|
},
|
||||||
|
allDayText: "ตลอดวัน",
|
||||||
|
eventLimitText: "เพิ่มเติม",
|
||||||
|
noEventsMessage: "ไม่มีกิจกรรมที่จะแสดง"
|
||||||
|
};
|
||||||
|
|
||||||
|
return th;
|
||||||
|
|
||||||
|
}));
|
||||||
30
public/assets/fullcalendar/core/locales/tr.js
vendored
Normal file
30
public/assets/fullcalendar/core/locales/tr.js
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.tr = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var tr = {
|
||||||
|
code: "tr",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "geri",
|
||||||
|
next: "ileri",
|
||||||
|
today: "bugün",
|
||||||
|
month: "Ay",
|
||||||
|
week: "Hafta",
|
||||||
|
day: "Gün",
|
||||||
|
list: "Ajanda"
|
||||||
|
},
|
||||||
|
weekLabel: "Hf",
|
||||||
|
allDayText: "Tüm gün",
|
||||||
|
eventLimitText: "daha fazla",
|
||||||
|
noEventsMessage: "Gösterilecek etkinlik yok"
|
||||||
|
};
|
||||||
|
|
||||||
|
return tr;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/uk.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/uk.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.uk = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var uk = {
|
||||||
|
code: "uk",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Попередній",
|
||||||
|
next: "далі",
|
||||||
|
today: "Сьогодні",
|
||||||
|
month: "Місяць",
|
||||||
|
week: "Тиждень",
|
||||||
|
day: "День",
|
||||||
|
list: "Порядок денний"
|
||||||
|
},
|
||||||
|
weekLabel: "Тиж",
|
||||||
|
allDayText: "Увесь день",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ще " + n + "...";
|
||||||
|
},
|
||||||
|
noEventsMessage: "Немає подій для відображення"
|
||||||
|
};
|
||||||
|
|
||||||
|
return uk;
|
||||||
|
|
||||||
|
}));
|
||||||
32
public/assets/fullcalendar/core/locales/vi.js
vendored
Normal file
32
public/assets/fullcalendar/core/locales/vi.js
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.vi = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var vi = {
|
||||||
|
code: "vi",
|
||||||
|
week: {
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "Trước",
|
||||||
|
next: "Tiếp",
|
||||||
|
today: "Hôm nay",
|
||||||
|
month: "Tháng",
|
||||||
|
week: "Tuần",
|
||||||
|
day: "Ngày",
|
||||||
|
list: "Lịch biểu"
|
||||||
|
},
|
||||||
|
weekLabel: "Tu",
|
||||||
|
allDayText: "Cả ngày",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "+ thêm " + n;
|
||||||
|
},
|
||||||
|
noEventsMessage: "Không có sự kiện để hiển thị"
|
||||||
|
};
|
||||||
|
|
||||||
|
return vi;
|
||||||
|
|
||||||
|
}));
|
||||||
33
public/assets/fullcalendar/core/locales/zh-cn.js
vendored
Normal file
33
public/assets/fullcalendar/core/locales/zh-cn.js
vendored
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['zh-cn'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var zhCn = {
|
||||||
|
code: "zh-cn",
|
||||||
|
week: {
|
||||||
|
// GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
|
||||||
|
dow: 1,
|
||||||
|
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||||
|
},
|
||||||
|
buttonText: {
|
||||||
|
prev: "上月",
|
||||||
|
next: "下月",
|
||||||
|
today: "今天",
|
||||||
|
month: "月",
|
||||||
|
week: "周",
|
||||||
|
day: "日",
|
||||||
|
list: "日程"
|
||||||
|
},
|
||||||
|
weekLabel: "周",
|
||||||
|
allDayText: "全天",
|
||||||
|
eventLimitText: function (n) {
|
||||||
|
return "另外 " + n + " 个";
|
||||||
|
},
|
||||||
|
noEventsMessage: "没有事件显示"
|
||||||
|
};
|
||||||
|
|
||||||
|
return zhCn;
|
||||||
|
|
||||||
|
}));
|
||||||
26
public/assets/fullcalendar/core/locales/zh-tw.js
vendored
Normal file
26
public/assets/fullcalendar/core/locales/zh-tw.js
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
(function (global, factory) {
|
||||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||||
|
typeof define === 'function' && define.amd ? define(factory) :
|
||||||
|
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['zh-tw'] = factory()));
|
||||||
|
}(this, function () { 'use strict';
|
||||||
|
|
||||||
|
var zhTw = {
|
||||||
|
code: "zh-tw",
|
||||||
|
buttonText: {
|
||||||
|
prev: "上月",
|
||||||
|
next: "下月",
|
||||||
|
today: "今天",
|
||||||
|
month: "月",
|
||||||
|
week: "週",
|
||||||
|
day: "天",
|
||||||
|
list: "活動列表"
|
||||||
|
},
|
||||||
|
weekLabel: "周",
|
||||||
|
allDayText: "整天",
|
||||||
|
eventLimitText: '顯示更多',
|
||||||
|
noEventsMessage: "没有任何活動"
|
||||||
|
};
|
||||||
|
|
||||||
|
return zhTw;
|
||||||
|
|
||||||
|
}));
|
||||||
1052
public/assets/fullcalendar/core/main.css
vendored
Normal file
1052
public/assets/fullcalendar/core/main.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2730
public/assets/fullcalendar/core/main.d.ts
vendored
Normal file
2730
public/assets/fullcalendar/core/main.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
8558
public/assets/fullcalendar/core/main.esm.js
vendored
Normal file
8558
public/assets/fullcalendar/core/main.esm.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
8717
public/assets/fullcalendar/core/main.js
vendored
Normal file
8717
public/assets/fullcalendar/core/main.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
public/assets/fullcalendar/core/main.min.css
vendored
Normal file
1
public/assets/fullcalendar/core/main.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
6
public/assets/fullcalendar/core/main.min.js
vendored
Normal file
6
public/assets/fullcalendar/core/main.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
30
public/assets/fullcalendar/core/package.json
Normal file
30
public/assets/fullcalendar/core/package.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "@fullcalendar/core",
|
||||||
|
"version": "4.3.1",
|
||||||
|
"title": "FullCalendar Core Package",
|
||||||
|
"description": "Provides core functionality, including the Calendar class",
|
||||||
|
"keywords": [
|
||||||
|
"calendar",
|
||||||
|
"event",
|
||||||
|
"full-sized"
|
||||||
|
],
|
||||||
|
"homepage": "https://fullcalendar.io/",
|
||||||
|
"docs": "https://fullcalendar.io/docs/initialize-es6",
|
||||||
|
"bugs": "https://fullcalendar.io/reporting-bugs",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/fullcalendar/fullcalendar.git",
|
||||||
|
"homepage": "https://github.com/fullcalendar/fullcalendar"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"author": {
|
||||||
|
"name": "Adam Shaw",
|
||||||
|
"email": "arshaw@arshaw.com",
|
||||||
|
"url": "http://arshaw.com/"
|
||||||
|
},
|
||||||
|
"copyright": "2019 Adam Shaw",
|
||||||
|
"main": "main.js",
|
||||||
|
"module": "main.esm.js",
|
||||||
|
"unpkg": "main.min.js",
|
||||||
|
"types": "main.d.ts"
|
||||||
|
}
|
||||||
20
public/assets/fullcalendar/daygrid/LICENSE.txt
Normal file
20
public/assets/fullcalendar/daygrid/LICENSE.txt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Copyright (c) 2019 Adam Shaw
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
8
public/assets/fullcalendar/daygrid/README.md
Normal file
8
public/assets/fullcalendar/daygrid/README.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
# FullCalendar Day Grid Plugin
|
||||||
|
|
||||||
|
Display events on Month view or DayGrid view
|
||||||
|
|
||||||
|
[View the docs »](https://fullcalendar.io/docs/month-view)
|
||||||
|
|
||||||
|
This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar)
|
||||||
78
public/assets/fullcalendar/daygrid/main.css
vendored
Normal file
78
public/assets/fullcalendar/daygrid/main.css
vendored
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
/* DayGridView
|
||||||
|
--------------------------------------------------------------------------------------------------*/
|
||||||
|
/* day row structure */
|
||||||
|
.fc-dayGridWeek-view .fc-content-skeleton,
|
||||||
|
.fc-dayGridDay-view .fc-content-skeleton {
|
||||||
|
/* there may be week numbers in these views, so no padding-top */
|
||||||
|
padding-bottom: 1em;
|
||||||
|
/* ensure a space at bottom of cell for user selecting/clicking */
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-dayGrid-view .fc-body .fc-row {
|
||||||
|
min-height: 4em;
|
||||||
|
/* ensure that all rows are at least this tall */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
|
||||||
|
.fc-row.fc-rigid {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-row.fc-rigid .fc-content-skeleton {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* week and day number styling */
|
||||||
|
.fc-day-top.fc-other-month {
|
||||||
|
opacity: 0.3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-dayGrid-view .fc-week-number,
|
||||||
|
.fc-dayGrid-view .fc-day-number {
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-dayGrid-view th.fc-week-number,
|
||||||
|
.fc-dayGrid-view th.fc-day-number {
|
||||||
|
padding: 0 2px;
|
||||||
|
/* column headers can't have as much v space */
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
|
||||||
|
float: left;
|
||||||
|
border-radius: 0 0 3px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
|
||||||
|
float: right;
|
||||||
|
border-radius: 0 0 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-dayGrid-view .fc-day-top .fc-week-number {
|
||||||
|
min-width: 1.5em;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
color: #808080;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* when week/day number have own column */
|
||||||
|
.fc-dayGrid-view td.fc-week-number {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fc-dayGrid-view td.fc-week-number > * {
|
||||||
|
/* work around the way we do column resizing and ensure a minimum width */
|
||||||
|
display: inline-block;
|
||||||
|
min-width: 1.25em;
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user