';
- html += cell;
- }
- while (dowCnt < this.o.weekStart + 7){
- html += '
'+dates[this.o.language].daysMin[(dowCnt++)%7]+'
';
- }
- html += '
';
- this.picker.find('.datepicker-days thead').append(html);
- },
-
- fillMonths: function(){
- var html = '',
- i = 0;
- while (i < 12){
- html += ''+dates[this.o.language].monthsShort[i++]+'';
- }
- this.picker.find('.datepicker-months td').html(html);
- },
-
- setRange: function(range){
- if (!range || !range.length)
- delete this.range;
- else
- this.range = $.map(range, function(d){
- return d.valueOf();
- });
- this.fill();
- },
-
- getClassNames: function(date){
- var cls = [],
- year = this.viewDate.getUTCFullYear(),
- month = this.viewDate.getUTCMonth(),
- today = new Date();
- if (date.getUTCFullYear() < year || (date.getUTCFullYear() === year && date.getUTCMonth() < month)){
- cls.push('old');
- }
- else if (date.getUTCFullYear() > year || (date.getUTCFullYear() === year && date.getUTCMonth() > month)){
- cls.push('new');
- }
- if (this.focusDate && date.valueOf() === this.focusDate.valueOf())
- cls.push('focused');
- // Compare internal UTC date with local today, not UTC today
- if (this.o.todayHighlight &&
- date.getUTCFullYear() === today.getFullYear() &&
- date.getUTCMonth() === today.getMonth() &&
- date.getUTCDate() === today.getDate()){
- cls.push('today');
- }
- if (this.dates.contains(date) !== -1)
- cls.push('active');
- if (date.valueOf() < this.o.startDate || date.valueOf() > this.o.endDate ||
- $.inArray(date.getUTCDay(), this.o.daysOfWeekDisabled) !== -1){
- cls.push('disabled');
- }
- if (this.o.datesDisabled.length > 0 &&
- $.grep(this.o.datesDisabled, function(d){
- return isUTCEquals(date, d); }).length > 0) {
- cls.push('disabled', 'disabled-date');
- }
-
- if (this.range){
- if (date > this.range[0] && date < this.range[this.range.length-1]){
- cls.push('range');
- }
- if ($.inArray(date.valueOf(), this.range) !== -1){
- cls.push('selected');
- }
- }
- return cls;
- },
-
- fill: function(){
- var d = new Date(this.viewDate),
- year = d.getUTCFullYear(),
- month = d.getUTCMonth(),
- startYear = this.o.startDate !== -Infinity ? this.o.startDate.getUTCFullYear() : -Infinity,
- startMonth = this.o.startDate !== -Infinity ? this.o.startDate.getUTCMonth() : -Infinity,
- endYear = this.o.endDate !== Infinity ? this.o.endDate.getUTCFullYear() : Infinity,
- endMonth = this.o.endDate !== Infinity ? this.o.endDate.getUTCMonth() : Infinity,
- todaytxt = dates[this.o.language].today || dates['en'].today || '',
- cleartxt = dates[this.o.language].clear || dates['en'].clear || '',
- tooltip;
- if (isNaN(year) || isNaN(month))
- return;
- this.picker.find('.datepicker-days thead .datepicker-switch')
- .text(dates[this.o.language].months[month]+' '+year);
- this.picker.find('tfoot .today')
- .text(todaytxt)
- .toggle(this.o.todayBtn !== false);
- this.picker.find('tfoot .clear')
- .text(cleartxt)
- .toggle(this.o.clearBtn !== false);
- this.updateNavArrows();
- this.fillMonths();
- var prevMonth = UTCDate(year, month-1, 28),
- day = DPGlobal.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
- prevMonth.setUTCDate(day);
- prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.o.weekStart + 7)%7);
- var nextMonth = new Date(prevMonth);
- nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
- nextMonth = nextMonth.valueOf();
- var html = [];
- var clsName;
- while (prevMonth.valueOf() < nextMonth){
- if (prevMonth.getUTCDay() === this.o.weekStart){
- html.push('
');
- if (this.o.calendarWeeks){
- // ISO 8601: First week contains first thursday.
- // ISO also states week starts on Monday, but we can be more abstract here.
- var
- // Start of current week: based on weekstart/current date
- ws = new Date(+prevMonth + (this.o.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
- // Thursday of this week
- th = new Date(Number(ws) + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
- // First Thursday of year, year from thursday
- yth = new Date(Number(yth = UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
- // Calendar week: ms between thursdays, div ms per day, div 7 days
- calWeek = (th - yth) / 864e5 / 7 + 1;
- html.push('
'+ calWeek +'
');
-
- }
- }
- clsName = this.getClassNames(prevMonth);
- clsName.push('day');
-
- if (this.o.beforeShowDay !== $.noop){
- var before = this.o.beforeShowDay(this._utc_to_local(prevMonth));
- if (before === undefined)
- before = {};
- else if (typeof(before) === 'boolean')
- before = {enabled: before};
- else if (typeof(before) === 'string')
- before = {classes: before};
- if (before.enabled === false)
- clsName.push('disabled');
- if (before.classes)
- clsName = clsName.concat(before.classes.split(/\s+/));
- if (before.tooltip)
- tooltip = before.tooltip;
- }
-
- clsName = $.unique(clsName);
- html.push('
",a.fn.datepicker.DPGlobal=q,a.fn.datepicker.noConflict=function(){return a.fn.datepicker=l,this},a.fn.datepicker.version="1.4.0",a(document).on("focus.datepicker.data-api click.datepicker.data-api",'[data-provide="datepicker"]',function(b){var c=a(this);c.data("datepicker")||(b.preventDefault(),m.call(c,"show"))}),a(function(){m.call(a('[data-provide="datepicker-inline"]'))})}(window.jQuery);
+!function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam","Son"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa","So"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.da={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag","Søndag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør","Søn"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø","Sø"],months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"I Dag",clear:"Nulstil"}}(jQuery);
+!function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado","Domingo"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb","Dom"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa","Do"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",clear:"Limpar"}}(jQuery);
+!function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag","zondag"],daysShort:["zo","ma","di","wo","do","vr","za","zo"],daysMin:["zo","ma","di","wo","do","vr","za","zo"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi","dimanche"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam.","dim."],daysMin:["d","l","ma","me","j","v","s","d"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Domenica"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab","Dom"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa","Do"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis","Sekmadienis"],daysShort:["S","Pr","A","T","K","Pn","Š","S"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št","Sk"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",weekStart:1}}(jQuery);
+!function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb","Dom"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa","Do"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
+!function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag","Söndag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör","Sön"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö","Sö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery);
/*!
* typeahead.js 0.9.3
* https://github.com/twitter/typeahead
diff --git a/resources/lang/lt/pagination.php b/resources/lang/lt/pagination.php
index eb9be3baae..d2ba5375c3 100644
--- a/resources/lang/lt/pagination.php
+++ b/resources/lang/lt/pagination.php
@@ -1,20 +1,19 @@
- '« Previous',
+ 'previous' => '« Ankstesnis',
+ 'next' => 'Sekantis »',
- 'next' => 'Next »',
-
-);
\ No newline at end of file
+];
diff --git a/resources/lang/lt/reminders.php b/resources/lang/lt/reminders.php
index ad2262124d..05af271289 100644
--- a/resources/lang/lt/reminders.php
+++ b/resources/lang/lt/reminders.php
@@ -1,24 +1,21 @@
"Passwords must be at least six characters and match the confirmation.",
-
- "user" => "We can't find a user with that e-mail address.",
-
- "token" => "This password reset token is invalid.",
-
- "sent" => "Password reminder sent!",
-
-);
\ No newline at end of file
+ "password" => "Slaptažodis turi būti bent šešių simbolių ir sutapti su patvirtinimu.",
+ "user" => "Vartotojas su tokiu el. pašu nerastas.",
+ "token" => "Šis slaptažodžio raktas yra neteisingas.",
+ "sent" => "Naujo slaptažodžio nustatymo nuoroda išsiųsta",
+ "reset" => "Nustatytas naujas slaptažodis!",
+];
diff --git a/resources/lang/lt/validation.php b/resources/lang/lt/validation.php
index 1c12d36aa4..7a76d1c22a 100644
--- a/resources/lang/lt/validation.php
+++ b/resources/lang/lt/validation.php
@@ -1,103 +1,108 @@
"The :attribute must be accepted.",
- "active_url" => "The :attribute is not a valid URL.",
- "after" => "The :attribute must be a date after :date.",
- "alpha" => "The :attribute may only contain letters.",
- "alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
- "alpha_num" => "The :attribute may only contain letters and numbers.",
- "array" => "The :attribute must be an array.",
- "before" => "The :attribute must be a date before :date.",
- "between" => array(
- "numeric" => "The :attribute must be between :min - :max.",
- "file" => "The :attribute must be between :min - :max kilobytes.",
- "string" => "The :attribute must be between :min - :max characters.",
- "array" => "The :attribute must have between :min - :max items.",
- ),
- "confirmed" => "The :attribute confirmation does not match.",
- "date" => "The :attribute is not a valid date.",
- "date_format" => "The :attribute does not match the format :format.",
- "different" => "The :attribute and :other must be different.",
- "digits" => "The :attribute must be :digits digits.",
- "digits_between" => "The :attribute must be between :min and :max digits.",
- "email" => "The :attribute format is invalid.",
- "exists" => "The selected :attribute is invalid.",
- "image" => "The :attribute must be an image.",
- "in" => "The selected :attribute is invalid.",
- "integer" => "The :attribute must be an integer.",
- "ip" => "The :attribute must be a valid IP address.",
- "max" => array(
- "numeric" => "The :attribute may not be greater than :max.",
- "file" => "The :attribute may not be greater than :max kilobytes.",
- "string" => "The :attribute may not be greater than :max characters.",
- "array" => "The :attribute may not have more than :max items.",
- ),
- "mimes" => "The :attribute must be a file of type: :values.",
- "min" => array(
- "numeric" => "The :attribute must be at least :min.",
- "file" => "The :attribute must be at least :min kilobytes.",
- "string" => "The :attribute must be at least :min characters.",
- "array" => "The :attribute must have at least :min items.",
- ),
- "not_in" => "The selected :attribute is invalid.",
- "numeric" => "The :attribute must be a number.",
- "regex" => "The :attribute format is invalid.",
- "required" => "The :attribute field is required.",
- "required_if" => "The :attribute field is required when :other is :value.",
- "required_with" => "The :attribute field is required when :values is present.",
- "required_without" => "The :attribute field is required when :values is not present.",
- "same" => "The :attribute and :other must match.",
- "size" => array(
- "numeric" => "The :attribute must be :size.",
- "file" => "The :attribute must be :size kilobytes.",
- "string" => "The :attribute must be :size characters.",
- "array" => "The :attribute must contain :size items.",
- ),
- "unique" => "The :attribute has already been taken.",
- "url" => "The :attribute format is invalid.",
-
- "positive" => "The :attribute must be greater than zero.",
- "has_credit" => "The client does not have enough credit.",
- "notmasked" => "The values are masked",
- "less_than" => 'The :attribute must be less than :value',
-
- /*
- |--------------------------------------------------------------------------
- | Custom Validation Language Lines
- |--------------------------------------------------------------------------
- |
- | Here you may specify custom validation messages for attributes using the
- | convention "attribute.rule" to name the lines. This makes it quick to
- | specify a specific custom language line for a given attribute rule.
- |
- */
+ "accepted" => "Laukas :attribute turi būti priimtas.",
+ "active_url" => "Laukas :attribute nėra galiojantis internetinis adresas.",
+ "after" => "Laukelyje :attribute turi būti data po :date.",
+ "alpha" => "Laukas :attribute gali turėti tik raides.",
+ "alpha_dash" => "Laukas :attribute gali turėti tik raides, skaičius ir brūkšnelius.",
+ "alpha_num" => "Laukas :attribute gali turėti tik raides ir skaičius.",
+ "array" => "Laukas :attribute turi būti masyvas.",
+ "before" => "Laukas :attribute turi būti data prieš :date.",
+ "between" => [
+ "numeric" => "Lauko :attribute reikšmė turi būti tarp :min ir :max.",
+ "file" => "Failo dydis lauke :attribute turi būti tarp :min ir :max kilobaitų.",
+ "string" => "Simbolių skaičius lauke :attribute turi būti tarp :min ir :max.",
+ "array" => "Elementų skaičius lauke :attribute turi turėti nuo :min iki :max.",
+ ],
+ "boolean" => "Lauko reikšmė :attribute turi būti 'taip' arba 'ne'.",
+ "confirmed" => "Lauko :attribute patvirtinimas nesutampa.",
+ "date" => "Lauko :attribute reikšmė nėra galiojanti data.",
+ "date_format" => "Lauko :attribute reikšmė neatitinka formato :format.",
+ "different" => "Laukų :attribute ir :other reikšmės turi skirtis.",
+ "digits" => "Laukas :attribute turi būti sudarytas iš :digits skaitmenų.",
+ "digits_between" => "Laukas :attribute tuti turėti nuo :min iki :max skaitmenų.",
+ "email" => "Lauko :attribute reikšmė turi būti galiojantis el. pašto adresas.",
+ "filled" => "Laukas :attribute turi būti užpildytas.",
+ "exists" => "Pasirinkta negaliojanti :attribute reikšmė.",
+ "image" => "Lauko :attribute reikšmė turi būti paveikslėlis.",
+ "in" => "Pasirinkta negaliojanti :attribute reikšmė.",
+ "integer" => "Lauko :attribute reikšmė turi būti veikasis skaičius.",
+ "ip" => "Lauko :attribute reikšmė turi būti galiojantis IP adresas.",
+ "max" => [
+ "numeric" => "Lauko :attribute reikšmė negali būti didesnė nei :max.",
+ "file" => "Failo dydis lauke :attribute reikšmė negali būti didesnė nei :max kilobaitų.",
+ "string" => "Simbolių kiekis lauke :attribute reikšmė negali būti didesnė nei :max simbolių.",
+ "array" => "Elementų kiekis lauke :attribute negali turėti daugiau nei :max elementų.",
+ ],
+ "mimes" => "Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.",
+ "min" => [
+ "numeric" => "Lauko :attribute reikšmė turi būti ne mažesnė nei :min.",
+ "file" => "Failo dydis lauke :attribute turi būti ne mažesnis nei :min kilobaitų.",
+ "string" => "Simbolių kiekis lauke :attribute turi būti ne mažiau nei :min.",
+ "array" => "Elementų kiekis lauke :attribute turi būti ne mažiau nei :min.",
+ ],
+ "not_in" => "Pasirinkta negaliojanti reikšmė :attribute.",
+ "numeric" => "Lauko :attribute reikšmė turi būti skaičius.",
+ "regex" => "Negaliojantis lauko :attribute formatas.",
+ "required" => "Privaloma užpildyti lauką :attribute.",
+ "required_if" => "Privaloma užpildyti lauką :attribute kai :other yra :value.",
+ "required_with" => "Privaloma užpildyti lauką :attribute kai pateikta :values.",
+ "required_with_all" => "Privaloma užpildyti lauką :attribute kai pateikta :values.",
+ "required_without" => "Privaloma užpildyti lauką :attribute kai nepateikta :values.",
+ "required_without_all" => "Privaloma užpildyti lauką :attribute kai nepateikta nei viena iš reikšmių :values.",
+ "same" => "Laukai :attribute ir :other turi sutapti.",
+ "size" => [
+ "numeric" => "Lauko :attribute reikšmė turi būti :size.",
+ "file" => "Failo dydis lauke :attribute turi būti :size kilobaitai.",
+ "string" => "Simbolių skaičius lauke :attribute turi būti :size.",
+ "array" => "Elementų kiekis lauke :attribute turi būti :size.",
+ ],
+ "string" => "The :attribute must be a string.",
+ "timezone" => "Lauko :attribute reikšmė turi būti galiojanti laiko zona.",
+ "unique" => "Tokia :attribute reikšmė jau pasirinkta.",
+ "url" => "Negaliojantis lauko :attribute formatas.",
- 'custom' => array(),
+ /*
+ |--------------------------------------------------------------------------
+ | Pasirinktiniai patvirtinimo kalbos eilutės
+ |--------------------------------------------------------------------------
+ |
+ | Čia galite nurodyti pasirinktinius patvirtinimo pranešimus, naudodami
+ | konvenciją "attribute.rule" eilučių pavadinimams. Tai leidžia greitai
+ | nurodyti konkrečią pasirinktinę kalbos eilutę tam tikrai atributo taisyklei.
+ |
+ */
- /*
- |--------------------------------------------------------------------------
- | Custom Validation Attributes
- |--------------------------------------------------------------------------
- |
- | The following language lines are used to swap attribute place-holders
- | with something more reader friendly such as E-Mail Address instead
- | of "email". This simply helps us make messages a little cleaner.
- |
- */
+ 'custom' => [
+ 'attribute-name' => [
+ 'rule-name' => 'custom-message',
+ ],
+ ],
- 'attributes' => array(),
+ /*
+ |--------------------------------------------------------------------------
+ | Pasirinktiniai patvirtinimo atributai
+ |--------------------------------------------------------------------------
+ |
+ | Sekančios kalbos eilutės naudojamos pakeisti vietos žymes
+ | kuo nors labiau priimtinu skaitytojui (pvz. "El.Pašto Adresas" vietoj
+ | "email". TTai tiesiog padeda mums padaryti žinutes truputi aiškesnėmis.
+ |
+ */
-);
+ 'attributes' => [],
+
+];
diff --git a/resources/views/emails/auth/reminder.blade.php b/resources/views/emails/auth/reminder.blade.php
index 2976327b5d..bb68353b70 100644
--- a/resources/views/emails/auth/reminder.blade.php
+++ b/resources/views/emails/auth/reminder.blade.php
@@ -1,5 +1,5 @@
-
+
diff --git a/resources/views/emails/invoice_viewed_html.blade.php b/resources/views/emails/invoice_viewed_html.blade.php
index 3a0aaa975b..957b6bff8e 100644
--- a/resources/views/emails/invoice_viewed_html.blade.php
+++ b/resources/views/emails/invoice_viewed_html.blade.php
@@ -1,5 +1,5 @@
-
+
diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php
index 0b99c519e4..59a486405d 100644
--- a/resources/views/master.blade.php
+++ b/resources/views/master.blade.php
@@ -1,5 +1,5 @@
-
+
{{ isset($title) ? ($title . ' | Invoice Ninja') : ('Invoice Ninja | ' . trans('texts.app_title')) }} |
@@ -18,8 +18,8 @@
-
-
+
+
@@ -53,6 +53,10 @@
'sSearch': ''
}
} );
+
+ $.extend( true, $.fn.datepicker.defaults, {
+ language:'{{App::getLocale()}}'
+ });
diff --git a/resources/views/setup.blade.php b/resources/views/setup.blade.php
index 060cf4d22e..17beb526da 100644
--- a/resources/views/setup.blade.php
+++ b/resources/views/setup.blade.php
@@ -1,5 +1,5 @@
-
+
Invoice Ninja | Setup