mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
Migrations + Translations + POPO (#2446)
This commit is contained in:
parent
275be96d4f
commit
f42024f84a
@ -3,8 +3,155 @@
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\Models\Traits;
|
||||
|
||||
class Account extends Model
|
||||
{
|
||||
//
|
||||
use AccountTrait;
|
||||
|
||||
protected $fillable = [
|
||||
'timezone_id',
|
||||
'currency_id',
|
||||
'name',
|
||||
'address1',
|
||||
'address2',
|
||||
'city',
|
||||
'state',
|
||||
'postal_code',
|
||||
'country_id',
|
||||
'industry_id',
|
||||
'work_phone',
|
||||
'work_email',
|
||||
'language_id',
|
||||
'vat_number',
|
||||
'id_number',
|
||||
'tax_name1',
|
||||
'tax_rate1',
|
||||
'tax_name2',
|
||||
'tax_rate2',
|
||||
'website',
|
||||
];
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function users()
|
||||
{
|
||||
return $this->hasMany(User::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function clients()
|
||||
{
|
||||
return $this->hasMany(Client::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function contacts()
|
||||
{
|
||||
return $this->hasMany(Contact::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function invoices()
|
||||
{
|
||||
return $this->hasMany(Invoice::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function account_gateways()
|
||||
{
|
||||
return $this->hasMany(AccountGateway::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function tax_rates()
|
||||
{
|
||||
return $this->hasMany(TaxRate::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||||
*/
|
||||
public function products()
|
||||
{
|
||||
return $this->hasMany(Product::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function country()
|
||||
{
|
||||
return $this->belongsTo(Country::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function timezone()
|
||||
{
|
||||
return $this->belongsTo(Timezone::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function language()
|
||||
{
|
||||
return $this->belongsTo(Language::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function currency()
|
||||
{
|
||||
return $this->belongsTo(Currency::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function industry()
|
||||
{
|
||||
return $this->belongsTo(Industry::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function payment_type()
|
||||
{
|
||||
return $this->belongsTo(PaymentType::class);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function expenses()
|
||||
{
|
||||
return $this->hasMany(Expense::class, 'account_id', 'id')->withTrashed();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function payments()
|
||||
{
|
||||
return $this->hasMany(Payment::class, 'account_id', 'id')->withTrashed();
|
||||
}
|
||||
|
||||
}
|
||||
|
10
app/Models/AccountGateway.php
Normal file
10
app/Models/AccountGateway.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class AccountGateway extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/ClientLocation.php
Normal file
10
app/Models/ClientLocation.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ClientLocation extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Country.php
Normal file
10
app/Models/Country.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Country extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Currency.php
Normal file
10
app/Models/Currency.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Currency extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Expense.php
Normal file
10
app/Models/Expense.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Expense extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Gateway.php
Normal file
10
app/Models/Gateway.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Gateway extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Industry.php
Normal file
10
app/Models/Industry.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Industry extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Invitation.php
Normal file
10
app/Models/Invitation.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Invitation extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Invoice.php
Normal file
10
app/Models/Invoice.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Invoice extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Language.php
Normal file
10
app/Models/Language.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Language extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/PaymentLibrary.php
Normal file
10
app/Models/PaymentLibrary.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PaymentLibrary extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/PaymentType.php
Normal file
10
app/Models/PaymentType.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class PaymentType extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Payments.php
Normal file
10
app/Models/Payments.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Payments extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Product.php
Normal file
10
app/Models/Product.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Product extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Task.php
Normal file
10
app/Models/Task.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Task extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/TaxRate.php
Normal file
10
app/Models/TaxRate.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TaxRate extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Models/Timezone.php
Normal file
10
app/Models/Timezone.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Timezone extends Model
|
||||
{
|
||||
//
|
||||
}
|
18
app/Models/Traits/AccountTrait.php
Normal file
18
app/Models/Traits/AccountTrait.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Traits;
|
||||
|
||||
trait AccountTrait
|
||||
{
|
||||
|
||||
public function getDisplayName()
|
||||
{
|
||||
if ($this->name) {
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
$user = $this->users()->first();
|
||||
|
||||
return $user->getDisplayName();
|
||||
}
|
||||
}
|
34
app/Models/Traits/UserTrait.php
Normal file
34
app/Models/Traits/UserTrait.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Traits;
|
||||
|
||||
trait UserTrait
|
||||
{
|
||||
|
||||
/**
|
||||
* @return mixed|string
|
||||
*/
|
||||
public function getDisplayName()
|
||||
{
|
||||
if ($this->getFullName()) {
|
||||
return $this->getFullName();
|
||||
} elseif ($this->email) {
|
||||
return $this->email;
|
||||
} else {
|
||||
return trans('texts.guest');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getFullName()
|
||||
{
|
||||
if ($this->first_name || $this->last_name) {
|
||||
return $this->first_name.' '.$this->last_name;
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
@ -9,6 +10,7 @@ use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
class User extends Authenticatable
|
||||
{
|
||||
use Notifiable;
|
||||
use SoftDeletes;
|
||||
|
||||
protected $guard = 'user';
|
||||
/**
|
||||
@ -17,7 +19,13 @@ class User extends Authenticatable
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'first_name', 'last_name', 'email', 'password',
|
||||
'first_name',
|
||||
'last_name',
|
||||
'email',
|
||||
'password',
|
||||
'phone',
|
||||
'signature',
|
||||
'avatar',
|
||||
];
|
||||
|
||||
/**
|
||||
@ -26,6 +34,32 @@ class User extends Authenticatable
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password', 'remember_token',
|
||||
'password',
|
||||
'remember_token',
|
||||
'confirmation_code',
|
||||
'oauth_user_id',
|
||||
'oauth_provider_id',
|
||||
'google_2fa_secret',
|
||||
'google_2fa_phone',
|
||||
'remember_2fa_token',
|
||||
'slack_webhook_url',
|
||||
];
|
||||
|
||||
public function user_accounts()
|
||||
{
|
||||
return $this->hasMany(UserAccount::class);
|
||||
}
|
||||
|
||||
public function contacts()
|
||||
{
|
||||
return $this->hasMany(Contact::class);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public function owns($entity)
|
||||
{
|
||||
return ! empty($entity->user_id) && $entity->user_id == $this->id;
|
||||
}
|
||||
}
|
||||
|
33
app/POPO/InvoiceItem.php
Normal file
33
app/POPO/InvoiceItem.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace App\POPO;
|
||||
|
||||
class InvoiceItem
|
||||
{
|
||||
|
||||
private $qty;
|
||||
|
||||
private $cost;
|
||||
|
||||
private $product_key;
|
||||
|
||||
private $notes;
|
||||
|
||||
private $discount;
|
||||
|
||||
private $is_amount_discount;
|
||||
|
||||
private $tax_name1;
|
||||
|
||||
private $tax_rate1;
|
||||
|
||||
private $tax_name2;
|
||||
|
||||
private $tax_rate2;
|
||||
|
||||
private $sort_id;
|
||||
|
||||
private $line_total;
|
||||
|
||||
|
||||
}
|
@ -1,155 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateUsersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('accounts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('name')->nullable();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->string('first_name')->nullable();
|
||||
$table->string('last_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('confirmation_code')->nullable();
|
||||
$table->boolean('registered')->default(false);
|
||||
$table->boolean('confirmed')->default(false);
|
||||
$table->integer('theme_id')->nullable();
|
||||
$table->smallInteger('failed_logins')->nullable();
|
||||
$table->string('referral_code')->nullable();
|
||||
$table->string('oauth_user_id')->nullable()->unique();
|
||||
$table->unsignedInteger('oauth_provider_id')->nullable()->unique();
|
||||
$table->string('google_2fa_secret')->nullable();
|
||||
$table->string('accepted_terms_version')->nullable();
|
||||
$table->string('avatar', 255)->default('');
|
||||
$table->unsignedInteger('avatar_width')->nullable();
|
||||
$table->unsignedInteger('avatar_height')->nullable();
|
||||
$table->unsignedInteger('avatar_size')->nullable();
|
||||
$table->text('signature');
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('clients', function (Blueprint $table) {
|
||||
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->string('name')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('contacts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('client_id')->index();
|
||||
$table->string('first_name')->nullable();
|
||||
$table->string('last_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('confirmation_code')->nullable();
|
||||
$table->boolean('registered')->default(false);
|
||||
$table->boolean('confirmed')->default(false);
|
||||
$table->smallInteger('failed_logins')->nullable();
|
||||
$table->string('oauth_user_id')->nullable()->unique();
|
||||
$table->unsignedInteger('oauth_provider_id')->nullable()->unique();
|
||||
$table->string('google_2fa_secret')->nullable();
|
||||
$table->string('accepted_terms_version')->nullable();
|
||||
$table->string('avatar', 255)->default('');
|
||||
$table->unsignedInteger('avatar_width')->nullable();
|
||||
$table->unsignedInteger('avatar_height')->nullable();
|
||||
$table->unsignedInteger('avatar_size')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$table->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
|
||||
Schema::create('user_accounts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('user_id')->index();
|
||||
$table->text('permissions');
|
||||
$table->boolean('is_owner');
|
||||
$table->boolean('is_admin');
|
||||
$table->boolean('is_locked'); // locks user out of account
|
||||
$table->boolean('is_default'); //default account to present to the user
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('account_gateways', function($t)
|
||||
{
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('account_id');
|
||||
$t->unsignedInteger('user_id');
|
||||
$t->unsignedInteger('gateway_id');
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
|
||||
$t->text('config');
|
||||
|
||||
$t->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
//$t->foreign('gateway_id')->references('id')->on('gateways');
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
|
||||
$t->unique( array('account_id') );
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('contacts');
|
||||
Schema::dropIfExists('clients');
|
||||
Schema::dropIfExists('account_gateways');
|
||||
Schema::dropIfExists('user_accounts');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('accounts');
|
||||
}
|
||||
|
||||
|
||||
}
|
506
database/migrations/2014_10_13_000000_create_users_table.php
Normal file
506
database/migrations/2014_10_13_000000_create_users_table.php
Normal file
@ -0,0 +1,506 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateUsersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
|
||||
Schema::create('countries', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('capital', 255)->nullable();
|
||||
$table->string('citizenship', 255)->nullable();
|
||||
$table->string('country_code', 3)->default('');
|
||||
$table->string('currency', 255)->nullable();
|
||||
$table->string('currency_code', 255)->nullable();
|
||||
$table->string('currency_sub_unit', 255)->nullable();
|
||||
$table->string('full_name', 255)->nullable();
|
||||
$table->string('iso_3166_2', 2)->default('');
|
||||
$table->string('iso_3166_3', 3)->default('');
|
||||
$table->string('name', 255)->default('');
|
||||
$table->string('region_code', 3)->default('');
|
||||
$table->string('sub_region_code', 3)->default('');
|
||||
$table->boolean('eea')->default(0);
|
||||
});
|
||||
|
||||
Schema::create('payment_types', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
});
|
||||
|
||||
Schema::create('timezones', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->string('location');
|
||||
$table->integer('utc_offset');
|
||||
});
|
||||
|
||||
Schema::create('currencies', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->string('symbol');
|
||||
$table->string('precision');
|
||||
$table->string('thousand_separator');
|
||||
$table->string('decimal_separator');
|
||||
$table->string('code');
|
||||
});
|
||||
|
||||
Schema::create('sizes', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
});
|
||||
|
||||
Schema::create('industries', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
});
|
||||
|
||||
Schema::create('gateways', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->timestamps();
|
||||
$table->string('name');
|
||||
$table->string('provider');
|
||||
$table->boolean('visible')->default(true);
|
||||
});
|
||||
|
||||
|
||||
Schema::create('accounts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('name')->nullable();
|
||||
$table->unsignedInteger('timezone_id')->nullable();
|
||||
$table->unsignedInteger('currency_id')->nullable();
|
||||
$table->string('ip');
|
||||
$table->string('account_key')->unique();
|
||||
$table->timestamp('last_login')->nullable();
|
||||
$table->string('address1')->nullable();
|
||||
$table->string('address2')->nullable();
|
||||
$table->string('city')->nullable();
|
||||
$table->string('state')->nullable();
|
||||
$table->string('postal_code')->nullable();
|
||||
$table->string('work_phone')->nullable();
|
||||
$table->string('work_email')->nullable();
|
||||
$table->unsignedInteger('country_id')->nullable();
|
||||
$table->unsignedInteger('industry_id')->nullable();
|
||||
$table->unsignedInteger('size_id')->nullable();
|
||||
$table->string('subdomain')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('timezone_id')->references('id')->on('timezones');
|
||||
$table->foreign('country_id')->references('id')->on('countries');
|
||||
$table->foreign('currency_id')->references('id')->on('currencies');
|
||||
$table->foreign('industry_id')->references('id')->on('industries');
|
||||
$table->foreign('size_id')->references('id')->on('sizes');
|
||||
});
|
||||
|
||||
Schema::create('user_accounts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('user_id')->index();
|
||||
$table->text('permissions');
|
||||
$table->boolean('is_owner');
|
||||
$table->boolean('is_admin');
|
||||
$table->boolean('is_locked'); // locks user out of account
|
||||
$table->boolean('is_default'); //default account to present to the user
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
|
||||
|
||||
});
|
||||
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('first_name')->nullable();
|
||||
$table->string('last_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('confirmation_code')->nullable();
|
||||
$table->boolean('registered')->default(false);
|
||||
$table->boolean('confirmed')->default(false);
|
||||
$table->integer('theme_id')->nullable();
|
||||
$table->smallInteger('failed_logins')->nullable();
|
||||
$table->string('referral_code')->nullable();
|
||||
$table->string('oauth_user_id')->nullable()->unique();
|
||||
$table->unsignedInteger('oauth_provider_id')->nullable()->unique();
|
||||
$table->string('google_2fa_secret')->nullable();
|
||||
$table->string('accepted_terms_version')->nullable();
|
||||
$table->string('avatar', 255)->default('');
|
||||
$table->unsignedInteger('avatar_width')->nullable();
|
||||
$table->unsignedInteger('avatar_height')->nullable();
|
||||
$table->unsignedInteger('avatar_size')->nullable();
|
||||
$table->text('signature');
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
//$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('clients', function (Blueprint $table) {
|
||||
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('user_id')->index();
|
||||
|
||||
$table->string('name')->nullable();
|
||||
$table->string('website')->nullable();
|
||||
$table->text('private_notes')->nullable();
|
||||
$table->decimal('balance', 13, 2)->nullable();
|
||||
$table->decimal('paid_to_date', 13, 2)->nullable();
|
||||
$table->timestamp('last_login')->nullable();
|
||||
$table->unsignedInteger('industry_id')->nullable();
|
||||
$table->unsignedInteger('size_id')->nullable();
|
||||
$table->unsignedInteger('currency_id')->nullable();
|
||||
|
||||
$table->boolean('is_deleted')->default(false);
|
||||
$table->string('payment_terms')->nullable(); //todo type? depends how we are storing this
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$table->foreign('industry_id')->references('id')->on('industries');
|
||||
$table->foreign('size_id')->references('id')->on('sizes');
|
||||
$table->foreign('currency_id')->references('id')->on('currencies');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('client_locations', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('client_id')->index();
|
||||
$table->string('address1')->nullable();
|
||||
$table->string('address2')->nullable();
|
||||
$table->string('city')->nullable();
|
||||
$table->string('state')->nullable();
|
||||
$table->string('postal_code')->nullable();
|
||||
$table->unsignedInteger('country_id')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->decimal('latitude', 11, 8)->nullable();
|
||||
$table->decimal('longitude', 11, 8)->nullable();
|
||||
$table->boolean('is_primary')->default(false);
|
||||
$table->text('description')->nullable();
|
||||
$table->text('private_notes')->nullable();
|
||||
|
||||
$table->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
$table->foreign('country_id')->references('id')->on('countries');
|
||||
|
||||
|
||||
});
|
||||
|
||||
Schema::create('contacts', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('client_id')->index();
|
||||
$table->unsignedInteger('user_id')->index();
|
||||
$table->string('first_name')->nullable();
|
||||
$table->string('last_name')->nullable();
|
||||
$table->string('phone')->nullable();
|
||||
$table->string('email')->unique(); //todo handle one contact across many accounts ?
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('confirmation_code')->nullable();
|
||||
$table->boolean('registered')->default(false);
|
||||
$table->boolean('confirmed')->default(false);
|
||||
$table->smallInteger('failed_logins')->nullable();
|
||||
$table->string('oauth_user_id')->nullable()->unique();
|
||||
$table->unsignedInteger('oauth_provider_id')->nullable()->unique();
|
||||
$table->string('google_2fa_secret')->nullable();
|
||||
$table->string('accepted_terms_version')->nullable();
|
||||
$table->string('avatar', 255)->default('');
|
||||
$table->unsignedInteger('avatar_width')->nullable();
|
||||
$table->unsignedInteger('avatar_height')->nullable();
|
||||
$table->unsignedInteger('avatar_size')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$table->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
|
||||
Schema::create('account_gateways', function($table)
|
||||
{
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('account_id')->unique();
|
||||
$table->unsignedInteger('user_id');
|
||||
$table->unsignedInteger('gateway_id');
|
||||
$table->boolean('show_address')->default(true)->nullable();
|
||||
$table->boolean('update_address')->default(true)->nullable();
|
||||
$table->text('config');
|
||||
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$table->foreign('gateway_id')->references('id')->on('gateways');
|
||||
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
|
||||
Schema::create('invoices', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('client_id')->index();
|
||||
$t->unsignedInteger('user_id');
|
||||
$t->unsignedInteger('account_id')->index();
|
||||
$t->unsignedInteger('invoice_status_id');
|
||||
|
||||
$t->string('invoice_number');
|
||||
$t->float('discount');
|
||||
$t->boolean('is_amount_discount');
|
||||
|
||||
$t->string('po_number');
|
||||
$t->date('invoice_date')->nullable();
|
||||
$t->date('due_date')->nullable();
|
||||
|
||||
$t->boolean('is_deleted')->default(false);
|
||||
|
||||
$t->text('line_items')->nullable();
|
||||
$t->text('options')->nullable();
|
||||
$t->text('backup')->nullable();
|
||||
|
||||
$t->string('tax_name1');
|
||||
$t->decimal('tax_rate1', 13, 3);
|
||||
|
||||
$t->decimal('amount', 13, 2);
|
||||
$t->decimal('balance', 13, 2);
|
||||
$t->decimal('partial', 13, 2)->nullable();
|
||||
|
||||
$t->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
$t->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
|
||||
$t->unique(['account_id', 'client_id']);
|
||||
});
|
||||
|
||||
Schema::create('invitations', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('account_id');
|
||||
$t->unsignedInteger('user_id');
|
||||
$t->unsignedInteger('contact_id');
|
||||
$t->unsignedInteger('invoice_id')->index();
|
||||
$t->string('invitation_key')->index()->unique();
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
|
||||
$t->string('transaction_reference')->nullable();
|
||||
$t->timestamp('sent_date')->nullable();
|
||||
$t->timestamp('viewed_date')->nullable();
|
||||
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$t->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade');
|
||||
$t->foreign('invoice_id')->references('id')->on('invoices')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
|
||||
Schema::create('tax_rates', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('account_id')->index();
|
||||
$t->unsignedInteger('user_id');
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
|
||||
$t->string('name')->unique();
|
||||
$t->decimal('rate', 13, 3);
|
||||
|
||||
$t->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
|
||||
Schema::create('products', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('account_id')->index();
|
||||
$t->unsignedInteger('user_id');
|
||||
|
||||
|
||||
$t->string('product_key');
|
||||
$t->text('notes');
|
||||
$t->decimal('cost', 13, 2);
|
||||
$t->decimal('qty', 13, 2)->nullable();
|
||||
|
||||
$t->unsignedInteger('stock_level');
|
||||
$t->unsignedInteger('min_stock_level');
|
||||
|
||||
$t->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
|
||||
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
});
|
||||
|
||||
|
||||
Schema::create('payments', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->unsignedInteger('invoice_id')->nullable()->index(); //todo handle payments where there is no invoice OR we are paying MULTIPLE invoices
|
||||
$t->unsignedInteger('account_id')->index();
|
||||
$t->unsignedInteger('client_id')->index();
|
||||
$t->unsignedInteger('contact_id')->nullable();
|
||||
$t->unsignedInteger('invitation_id')->nullable();
|
||||
$t->unsignedInteger('user_id')->nullable();
|
||||
$t->unsignedInteger('account_gateway_id')->nullable();
|
||||
$t->unsignedInteger('payment_type_id')->nullable();
|
||||
$t->timestamps();
|
||||
$t->softDeletes();
|
||||
|
||||
$t->boolean('is_deleted')->default(false);
|
||||
$t->decimal('amount', 13, 2);
|
||||
$t->date('payment_date')->nullable();
|
||||
$t->string('transaction_reference')->nullable();
|
||||
$t->string('payer_id')->nullable();
|
||||
|
||||
$t->foreign('invoice_id')->references('id')->on('invoices')->onDelete('cascade');
|
||||
$t->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$t->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
$t->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade');
|
||||
$t->foreign('account_gateway_id')->references('id')->on('account_gateways')->onDelete('cascade');
|
||||
$t->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
;
|
||||
$t->foreign('payment_type_id')->references('id')->on('payment_types');
|
||||
|
||||
});
|
||||
|
||||
Schema::create('languages', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->string('name');
|
||||
$table->string('locale');
|
||||
});
|
||||
|
||||
Schema::table('accounts', function ($table) {
|
||||
$table->unsignedInteger('language_id')->default(1);
|
||||
$table->foreign('language_id')->references('id')->on('languages');
|
||||
});
|
||||
|
||||
Schema::create('payment_libraries', function ($t) {
|
||||
$t->increments('id');
|
||||
$t->timestamps();
|
||||
|
||||
$t->string('name');
|
||||
$t->boolean('visible')->default(true);
|
||||
});
|
||||
|
||||
Schema::table('gateways', function ($table) {
|
||||
$table->unsignedInteger('payment_library_id')->default(1);
|
||||
$table->unsignedInteger('sort_order')->default(10000);
|
||||
$table->boolean('recommended')->default(0);
|
||||
$table->string('site_url', 200)->nullable();
|
||||
});
|
||||
|
||||
DB::table('gateways')->update(['payment_library_id' => 1]);
|
||||
|
||||
Schema::table('gateways', function ($table) {
|
||||
$table->foreign('payment_library_id')->references('id')->on('payment_libraries')->onDelete('cascade');
|
||||
});
|
||||
|
||||
Schema::table('accounts', function ($table) {
|
||||
$table->string('custom_label1')->nullable();
|
||||
$table->string('custom_value1')->nullable();
|
||||
|
||||
$table->string('custom_label2')->nullable();
|
||||
$table->string('custom_value2')->nullable();
|
||||
|
||||
$table->string('custom_client_label1')->nullable();
|
||||
$table->string('custom_client_label2')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('clients', function ($table) {
|
||||
$table->string('custom_value1')->nullable();
|
||||
$table->string('custom_value2')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('accounts', function ($table) {
|
||||
$table->string('vat_number')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('clients', function ($table) {
|
||||
$table->string('vat_number')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('accounts', function ($table) {
|
||||
$table->string('id_number')->nullable();
|
||||
});
|
||||
|
||||
Schema::table('clients', function ($table) {
|
||||
$table->string('id_number')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('tasks', function ($table) {
|
||||
$table->increments('id');
|
||||
$table->unsignedInteger('user_id');
|
||||
$table->unsignedInteger('account_id')->index();
|
||||
$table->unsignedInteger('client_id')->nullable();
|
||||
$table->unsignedInteger('invoice_id')->nullable();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
|
||||
$table->string('description')->nullable();
|
||||
$table->boolean('is_deleted')->default(false);
|
||||
$table->boolean('is_running')->default(false);
|
||||
$table->text('time_log')->nullable();
|
||||
|
||||
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
|
||||
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
|
||||
$table->foreign('invoice_id')->references('id')->on('invoices')->onDelete('cascade');
|
||||
$table->foreign('client_id')->references('id')->on('clients')->onDelete('cascade');
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
|
||||
Schema::dropIfExists('payment_libraries');
|
||||
Schema::dropIfExists('languages');
|
||||
Schema::dropIfExists('payments');
|
||||
Schema::dropIfExists('products');
|
||||
Schema::dropIfExists('invitations');
|
||||
Schema::dropIfExists('tax_rates');
|
||||
Schema::dropIfExists('invoices');
|
||||
Schema::dropIfExists('countries');
|
||||
Schema::dropIfExists('payment_types');
|
||||
Schema::dropIfExists('timezones');
|
||||
Schema::dropIfExists('currencies');
|
||||
Schema::dropIfExists('sizes');
|
||||
Schema::dropIfExists('industries');
|
||||
Schema::dropIfExists('gateways');
|
||||
Schema::dropIfExists('contacts');
|
||||
Schema::dropIfExists('clients');
|
||||
Schema::dropIfExists('account_gateways');
|
||||
Schema::dropIfExists('user_accounts');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('accounts');
|
||||
}
|
||||
|
||||
|
||||
}
|
BIN
resources/lang/.DS_Store
vendored
Normal file
BIN
resources/lang/.DS_Store
vendored
Normal file
Binary file not shown.
19
resources/lang/ca/auth.php
Normal file
19
resources/lang/ca/auth.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Aquestes credencials no concorden amb els nostres registres.',
|
||||
'throttle' => "Heu superat el nombre màxim d'intents d'accés. Per favor, torna a intentar-ho en :seconds segons.",
|
||||
|
||||
];
|
19
resources/lang/ca/pagination.php
Normal file
19
resources/lang/ca/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Anterior',
|
||||
'next' => 'Següent »',
|
||||
|
||||
];
|
22
resources/lang/ca/passwords.php
Normal file
22
resources/lang/ca/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Les contrasenyes han de contenir almenys 6 caràcters i coincidir.',
|
||||
'reset' => "La contrasenya s'ha restablert!",
|
||||
'sent' => 'Recordatori de contrasenya enviat!',
|
||||
'token' => 'Aquest token de recuperació de contrasenya és invàlid.',
|
||||
'user' => 'No podem trobar a un usuari amb aquest correu electrònic.',
|
||||
|
||||
];
|
2872
resources/lang/ca/texts.php
Normal file
2872
resources/lang/ca/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
116
resources/lang/ca/validation.php
Normal file
116
resources/lang/ca/validation.php
Normal file
@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute ha de ser acceptat.',
|
||||
'active_url' => ':attribute no és un URL vàlid.',
|
||||
'after' => ':attribute ha de ser una data posterior a :date.',
|
||||
'alpha' => ':attribute només pot contenir lletres.',
|
||||
'alpha_dash' => ':attribute només por contenir lletres, números i guions.',
|
||||
'alpha_num' => ':attribute només pot contenir lletres i números.',
|
||||
'array' => ':attribute ha de ser un conjunt.',
|
||||
'before' => ':attribute ha de ser una data anterior a :date.',
|
||||
'between' => [
|
||||
'numeric' => ":attribute ha d'estar entre :min - :max.",
|
||||
'file' => ':attribute ha de pesar entre :min - :max kilobytes.',
|
||||
'string' => ':attribute ha de tenir entre :min - :max caràcters.',
|
||||
'array' => ':attribute ha de tenir entre :min - :max ítems.',
|
||||
],
|
||||
'boolean' => 'El camp :attribute ha de ser veritat o fals',
|
||||
'confirmed' => 'La confirmació de :attribute no coincideix.',
|
||||
'date' => ':attribute no és una data vàlida.',
|
||||
'date_format' => ':attribute no correspon al format :format.',
|
||||
'different' => ':attribute i :other han de ser diferents.',
|
||||
'digits' => ':attribute ha de tenir :digits digits.',
|
||||
'digits_between' => ':attribute ha de tenir entre :min i :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute no és un e-mail vàlid',
|
||||
'exists' => ':attribute és invàlid.',
|
||||
'filled' => 'El camp :attribute és obligatori.',
|
||||
'image' => ':attribute ha de ser una imatge.',
|
||||
'in' => ':attribute és invàlid',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute ha de ser un nombre enter.',
|
||||
'ip' => ':attribute ha de ser una adreça IP vàlida.',
|
||||
'json' => 'El camp :attribute ha de contenir una cadena JSON vàlida.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute no ha de ser major a :max.',
|
||||
'file' => ':attribute no ha de ser més gran que :max kilobytes.',
|
||||
'string' => ':attribute no ha de ser més gran que :max characters.',
|
||||
'array' => ':attribute no ha de tenir més de :max ítems.',
|
||||
],
|
||||
'mimes' => ':attribute ha de ser un arxiu amb format: :values.',
|
||||
'min' => [
|
||||
'numeric' => "El tamany de :attribute ha de ser d'almenys :min.",
|
||||
'file' => "El tamany de :attribute ha de ser d'almenys :min kilobytes.",
|
||||
'string' => ':attribute ha de contenir almenys :min caràcters.',
|
||||
'array' => ':attribute ha de tenir almenys :min ítems.',
|
||||
],
|
||||
'not_in' => ':attribute és invàlid.',
|
||||
'numeric' => ':attribute ha de ser numèric.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'El format de :attribute és invàlid.',
|
||||
'required' => 'El camp :attribute és obligatori.',
|
||||
'required_if' => 'El camp :attribute és obligatori quan :other és :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'El camp :attribute és obligatori quan :values és present.',
|
||||
'required_with_all' => 'El camp :attribute és obligatori quan :values és present.',
|
||||
'required_without' => 'El camp :attribute és obligatori quan :values no és present.',
|
||||
'required_without_all' => 'El camp :attribute és obligatori quan cap dels :values estan presents.',
|
||||
'same' => ':attribute i :other han de coincidir.',
|
||||
'size' => [
|
||||
'numeric' => 'El tamany de :attribute ha de ser :size.',
|
||||
'file' => 'El tamany de :attribute ha de ser :size kilobytes.',
|
||||
'string' => ':attribute ha de contenir :size caràcters.',
|
||||
'array' => ':attribute ha de contenir :size ítems.',
|
||||
],
|
||||
'string' => 'El camp :attribute ha de ser una cadena de caràcters.',
|
||||
'timezone' => 'El camp :attribute ha de ser una zona vàlida.',
|
||||
'unique' => ':attribute ja ha estat registrat.',
|
||||
'url' => 'El format :attribute és invàlid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
19
resources/lang/cs/auth.php
Normal file
19
resources/lang/cs/auth.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Tyto přihlašovací údajě neodpovídají žadnému záznamu.',
|
||||
'throttle' => 'Příliš mnoho pokusů o přihlášení. Zkuste to prosím znovu za :seconds vteřin.',
|
||||
|
||||
];
|
19
resources/lang/cs/pagination.php
Normal file
19
resources/lang/cs/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« předchozí',
|
||||
'next' => 'další »',
|
||||
|
||||
];
|
22
resources/lang/cs/passwords.php
Normal file
22
resources/lang/cs/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Heslo musí obsahovat alespoň 6 znaků a musí odpovídat.',
|
||||
'reset' => 'Heslo bylo obnoveno!',
|
||||
'sent' => 'Upomínka ke změně hesla byla odeslána!',
|
||||
'token' => 'Klíč pro obnovu hesla je nesprávný.',
|
||||
'user' => 'Nepodařilo se najít uživatele s touto e-mailovou adresou.',
|
||||
|
||||
];
|
2874
resources/lang/cs/texts.php
Normal file
2874
resources/lang/cs/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
115
resources/lang/cs/validation.php
Normal file
115
resources/lang/cs/validation.php
Normal file
@ -0,0 +1,115 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute musí být akceptován.',
|
||||
'active_url' => ':attribute není platnou URL adresou.',
|
||||
'after' => ':attribute musí být datum po :date.',
|
||||
'alpha' => ':attribute může obsahovat pouze písmena.',
|
||||
'alpha_dash' => ':attribute může obsahovat pouze písmena, číslice, pomlčky a podtržítka. České znaky (á, é, í, ó, ú, ů, ž, š, č, ř, ď, ť, ň) nejsou podporovány.',
|
||||
'alpha_num' => ':attribute může obsahovat pouze písmena a číslice.',
|
||||
'array' => ':attribute musí být pole.',
|
||||
'before' => ':attribute musí být datum před :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute musí být hodnota mezi :min a :max.',
|
||||
'file' => ':attribute musí být větší než :min a menší než :max Kilobytů.',
|
||||
'string' => ':attribute musí být delší než :min a kratší než :max znaků.',
|
||||
'array' => ':attribute musí obsahovat nejméně :min a nesmí obsahovat více než :max prvků.',
|
||||
],
|
||||
'boolean' => ':attribute musí být true nebo false',
|
||||
'confirmed' => ':attribute nebylo odsouhlaseno.',
|
||||
'date' => ':attribute musí být platné datum.',
|
||||
'date_format' => ':attribute není platný formát data podle :format.',
|
||||
'different' => ':attribute a :other se musí lišit.',
|
||||
'digits' => ':attribute musí být :digits pozic dlouhé.',
|
||||
'digits_between' => ':attribute musí být dlouhé nejméně :min a nejvíce :max pozic.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute není platný formát.',
|
||||
'exists' => 'Zvolená hodnota pro :attribute není platná.',
|
||||
'filled' => ':attribute musí být vyplněno.',
|
||||
'image' => ':attribute musí být obrázek.',
|
||||
'in' => 'Zvolená hodnota pro :attribute není platná.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute musí být celé číslo.',
|
||||
'ip' => ':attribute musí být platnou IP adresou.',
|
||||
'json' => ':attribute musí být platný JSON řetězec.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute musí být nižší než :max.',
|
||||
'file' => ':attribute musí být menší než :max Kilobytů.',
|
||||
'string' => ':attribute musí být kratší než :max znaků.',
|
||||
'array' => ':attribute nesmí obsahovat více než :max prvků.',
|
||||
],
|
||||
'mimes' => ':attribute musí být jeden z následujících datových typů :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute musí být větší než :min.',
|
||||
'file' => ':attribute musí být větší než :min Kilobytů.',
|
||||
'string' => ':attribute musí být delší než :min znaků.',
|
||||
'array' => ':attribute musí obsahovat více než :min prvků.',
|
||||
],
|
||||
'not_in' => 'Zvolená hodnota pro :attribute je neplatná.',
|
||||
'numeric' => ':attribute musí být číslo.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute nemá správný formát.',
|
||||
'required' => ':attribute musí být vyplněno.',
|
||||
'required_if' => ':attribute musí být vyplněno pokud :other je :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute musí být vyplněno pokud :values je vyplněno.',
|
||||
'required_with_all' => ':attribute musí být vyplněno pokud :values je zvoleno.',
|
||||
'required_without' => ':attribute musí být vyplněno pokud :values není vyplněno.',
|
||||
'required_without_all' => ':attribute musí být vyplněno pokud není žádné z :values zvoleno.',
|
||||
'same' => ':attribute a :other se musí shodovat.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute musí být přesně :size.',
|
||||
'file' => ':attribute musí mít přesně :size Kilobytů.',
|
||||
'string' => ':attribute musí být přesně :size znaků dlouhý.',
|
||||
'array' => ':attribute musí obsahovat právě :size prvků.',
|
||||
],
|
||||
'string' => ':attribute musí být řetězec znaků.',
|
||||
'timezone' => ':attribute musí být platná časová zóna.',
|
||||
'unique' => ':attribute musí být unikátní.',
|
||||
'url' => 'Formát :attribute je neplatný.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
20
resources/lang/da/pagination.php
Normal file
20
resources/lang/da/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Forrige',
|
||||
|
||||
'next' => 'Næste »',
|
||||
|
||||
);
|
26
resources/lang/da/reminders.php
Normal file
26
resources/lang/da/reminders.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Passwords skal minimum være 6 tegn og matche sikkerhedstjekket.",
|
||||
|
||||
"user" => "Vi kan ikke finde en bruger med den email-adresse.",
|
||||
|
||||
"token" => "Password-nulstillingskoden er ugyldig.",
|
||||
|
||||
"sent" => "Password-påmindelse sendt!",
|
||||
|
||||
"reset" => "Password has been reset!",
|
||||
|
||||
);
|
2871
resources/lang/da/texts.php
Normal file
2871
resources/lang/da/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
114
resources/lang/da/validation.php
Normal file
114
resources/lang/da/validation.php
Normal file
@ -0,0 +1,114 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute skal accepteres.",
|
||||
"active_url" => ":attribute er ikke en valid URL.",
|
||||
"after" => ":attribute skal være en dato efter :date.",
|
||||
"alpha" => ":attribute må kun bestå af bogstaver.",
|
||||
"alpha_dash" => ":attribute må kun bestå af bogstaver, tal og bindestreger.",
|
||||
"alpha_num" => ":attribute må kun bestå af bogstaver og tal.",
|
||||
"array" => ":attribute skal være et array.",
|
||||
"before" => ":attribute skal være en dato før :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute skal være imellem :min - :max.",
|
||||
"file" => ":attribute skal være imellem :min - :max kilobytes.",
|
||||
"string" => ":attribute skal være imellem :min - :max tegn.",
|
||||
"array" => ":attribute skal indeholde mellem :min - :max elementer.",
|
||||
),
|
||||
"boolean" => ":attribute skal være sandt eller falsk",
|
||||
"confirmed" => ":attribute er ikke det samme som bekræftelsesfeltet.",
|
||||
"date" => ":attribute er ikke en gyldig dato.",
|
||||
"date_format" => ":attribute matcher ikke formatet :format.",
|
||||
"different" => ":attribute og :other skal være forskellige.",
|
||||
"digits" => ":attribute skal have :digits cifre.",
|
||||
"digits_between" => ":attribute skal have mellem :min og :max cifre.",
|
||||
"email" => ":attribute skal være en gyldig e-mailadresse.",
|
||||
"exists" => "Det valgte :attribute er ugyldig.",
|
||||
"image" => ":attribute skal være et billede.",
|
||||
"in" => "Det valgte :attribute er ugyldig.",
|
||||
"integer" => ":attribute skal være et heltal.",
|
||||
"ip" => ":attribute skal være en gyldig IP adresse.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute skal være højest :max.",
|
||||
"file" => ":attribute skal være højest :max kilobytes.",
|
||||
"string" => ":attribute skal være højest :max tegn.",
|
||||
"array" => ":attribute må ikke indeholde mere end :max elementer.",
|
||||
),
|
||||
"mimes" => ":attribute skal være en fil af typen: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute skal være mindst :min.",
|
||||
"file" => ":attribute skal være mindst :min kilobytes.",
|
||||
"string" => ":attribute skal være mindst :min tegn.",
|
||||
"array" => ":attribute skal indeholde mindst :min elementer.",
|
||||
),
|
||||
"not_in" => "Den valgte :attribute er ugyldig.",
|
||||
"numeric" => ":attribute skal være et tal.",
|
||||
"regex" => ":attribute formatet er ugyldigt.",
|
||||
"required" => ":attribute skal udfyldes.",
|
||||
"required_if" => ":attribute skal udfyldes når :other er :value.",
|
||||
"required_with" => ":attribute skal udfyldes når :values er udfyldt.",
|
||||
"required_with_all" => ":attribute skal udfyldes når :values er udfyldt.",
|
||||
"required_without" => ":attribute skal udfyldes når :values ikke er udfyldt.",
|
||||
"required_without_all" => ":attribute skal udfyldes når ingen af :values er udfyldt.",
|
||||
"same" => ":attribute og :other skal være ens.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute skal være :size.",
|
||||
"file" => ":attribute skal være :size kilobytes.",
|
||||
"string" => ":attribute skal være :size tegn lang.",
|
||||
"array" => ":attribute skal indeholde :size elementer.",
|
||||
),
|
||||
"timezone" => "The :attribute must be a valid zone.",
|
||||
"unique" => ":attribute er allerede taget.",
|
||||
"url" => ":attribute formatet er ugyldigt.",
|
||||
|
||||
"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',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
20
resources/lang/de/pagination.php
Normal file
20
resources/lang/de/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« zurück',
|
||||
|
||||
'next' => 'weiter »',
|
||||
|
||||
);
|
22
resources/lang/de/passwords.php
Normal file
22
resources/lang/de/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Beide Passwörter müssen übereinstimmen und mindestens 6 Zeichen lang sein.",
|
||||
"user" => "Wir können keinen Nutzer mit dieser E-Mail Adresse finden.",
|
||||
"token" => "Der Code zum Zurücksetzen des Passworts ist ungültig oder abgelaufen.",
|
||||
"sent" => "Es wurde soeben eine E-Mail verschickt, die einen Link zum Zurücksetzen des Passworts enthält!",
|
||||
"reset" => "Das Passwort wurde zurückgesetzt!",
|
||||
|
||||
];
|
24
resources/lang/de/reminders.php
Normal file
24
resources/lang/de/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Passwörter müssen 6 Zeichen lang sein und korrekt bestätigt werden.",
|
||||
|
||||
"user" => "Wir konnten leider keinen Nutzer mit dieser E-Mail Adresse finden.",
|
||||
|
||||
"token" => "Der Passwort-Wiederherstellungs-Schlüssel ist ungültig.",
|
||||
|
||||
"sent" => "Passworterinnerung wurde versendet!",
|
||||
|
||||
);
|
2872
resources/lang/de/texts.php
Normal file
2872
resources/lang/de/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
112
resources/lang/de/validation.php
Normal file
112
resources/lang/de/validation.php
Normal file
@ -0,0 +1,112 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute muss akzeptiert werden.",
|
||||
"active_url" => ":attribute ist keine gültige Internet-Adresse.",
|
||||
"after" => ":attribute muss ein Datum nach dem :date sein.",
|
||||
"alpha" => ":attribute darf nur aus Buchstaben bestehen.",
|
||||
"alpha_dash" => ":attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen. Umlaute (ä, ö, ü) und Eszett (ß) sind nicht erlaubt.",
|
||||
"alpha_num" => ":attribute darf nur aus Buchstaben und Zahlen bestehen.",
|
||||
"array" => ":attribute muss ein Array sein.",
|
||||
"before" => ":attribute muss ein Datum vor dem :date sein.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute muss zwischen :min & :max liegen.",
|
||||
"file" => ":attribute muss zwischen :min & :max Kilobytes groß sein.",
|
||||
"string" => ":attribute muss zwischen :min & :max Zeichen lang sein.",
|
||||
"array" => ":attribute muss zwischen :min & :max Elemente haben.",
|
||||
),
|
||||
"confirmed" => ":attribute stimmt nicht mit der Bestätigung überein.",
|
||||
"date" => ":attribute muss ein gültiges Datum sein.",
|
||||
"date_format" => ":attribute entspricht nicht dem gültigen Format für :format.",
|
||||
"different" => ":attribute und :other müssen sich unterscheiden.",
|
||||
"digits" => ":attribute muss :digits Stellen haben.",
|
||||
"digits_between" => ":attribute muss zwischen :min und :max Stellen haben.",
|
||||
"email" => ":attribute Format ist ungültig.",
|
||||
"exists" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||
"image" => ":attribute muss ein Bild sein.",
|
||||
"in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||
"integer" => ":attribute muss eine ganze Zahl sein.",
|
||||
"ip" => ":attribute muss eine gültige IP-Adresse sein.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute darf maximal :max sein.",
|
||||
"file" => ":attribute darf maximal :max Kilobytes groß sein.",
|
||||
"string" => ":attribute darf maximal :max Zeichen haben.",
|
||||
"array" => ":attribute darf nicht mehr als :max Elemente haben.",
|
||||
),
|
||||
"mimes" => ":attribute muss den Dateityp :values haben.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute muss mindestens :min sein.",
|
||||
"file" => ":attribute muss mindestens :min Kilobytes groß sein.",
|
||||
"string" => ":attribute muss mindestens :min Zeichen lang sein.",
|
||||
"array" => ":attribute muss mindestens :min Elemente haben.",
|
||||
),
|
||||
"not_in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||||
"numeric" => ":attribute muss eine Zahl sein.",
|
||||
"regex" => ":attribute Format ist ungültig.",
|
||||
"required" => ":attribute muss ausgefüllt sein.",
|
||||
"required_if" => ":attribute muss ausgefüllt sein wenn :other :value ist.",
|
||||
"required_with" => ":attribute muss angegeben werden wenn :values ausgefüllt wurde.",
|
||||
"required_with_all" => ":attribute muss ausgefüllt werden, wenn :values vorhanden ist.",
|
||||
"required_without" => ":attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.",
|
||||
"required_without_all" => ":attribute muss angegeben werden wenn keines der Felder :values ausgefüllt wurde.",
|
||||
"same" => ":attribute und :other müssen übereinstimmen.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute muss gleich :size sein.",
|
||||
"file" => ":attribute muss :size Kilobyte groß sein.",
|
||||
"string" => ":attribute muss :size Zeichen lang sein.",
|
||||
"array" => ":attribute muss genau :size Elemente haben.",
|
||||
),
|
||||
"unique" => ":attribute ist schon vergeben.",
|
||||
"url" => "Das Format von :attribute ist ungültig.",
|
||||
|
||||
"positive" => ":attribute muss größer als null sein.",
|
||||
"has_credit" => "Der Kunde hat nicht genug Guthaben.",
|
||||
"notmasked" => "Die Werte sind maskiert",
|
||||
"less_than" => ':attribute muss weniger als :value sein',
|
||||
"has_counter" => 'Der Wert muss {$counter} beinhalten',
|
||||
"valid_contacts" => "Alle Kontakte müssen entweder einen Namen oder eine E-Mail Adresse haben",
|
||||
"valid_invoice_items" => "Die Rechnung übersteigt den maximalen Betrag",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
19
resources/lang/el/auth.php
Normal file
19
resources/lang/el/auth.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Τα στοιχεία αυτά δεν ταιριάζουν με τα δικά μας.',
|
||||
'throttle' => 'Πολλές προσπάθειες σύνδεσης. Παρακαλώ δοκιμάστε ξανά σε :seconds δευτερόλεπτα.',
|
||||
|
||||
];
|
19
resources/lang/el/pagination.php
Normal file
19
resources/lang/el/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Προηγούμενη',
|
||||
'next' => 'Επόμενη »',
|
||||
|
||||
];
|
22
resources/lang/el/passwords.php
Normal file
22
resources/lang/el/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Το συνθηματικό πρέπει να έχει τουλάχιστον έξι χαρακτήρες και να ταιριάζει με την επαλήθευση.',
|
||||
'reset' => 'Έχει γίνει επαναφορά του συνθηματικού!',
|
||||
'sent' => 'Η υπενθύμιση του συνθηματικού εστάλη!',
|
||||
'token' => 'Το κλειδί αρχικοποίησης του συνθηματικού δεν είναι έγκυρο.',
|
||||
'user' => 'Δεν βρέθηκε χρήστης με το συγκεκριμένο email.',
|
||||
|
||||
];
|
2872
resources/lang/el/texts.php
Normal file
2872
resources/lang/el/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
121
resources/lang/el/validation.php
Normal file
121
resources/lang/el/validation.php
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'Το πεδίο :attribute πρέπει να γίνει αποδεκτό.',
|
||||
'active_url' => 'Το πεδίο :attribute δεν είναι αποδεκτή διεύθυνση URL.',
|
||||
'after' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία μετά από :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα.',
|
||||
'alpha_dash' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα, αριθμούς, και παύλες.',
|
||||
'alpha_num' => 'Το πεδίο :attribute μπορεί να περιέχει μόνο γράμματα και αριθμούς.',
|
||||
'array' => 'Το πεδίο :attribute πρέπει να είναι ένας πίνακας.',
|
||||
'before' => 'Το πεδίο :attribute πρέπει να είναι μία ημερομηνία πριν από :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max.',
|
||||
'file' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max kilobytes.',
|
||||
'string' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min - :max χαρακτήρες.',
|
||||
'array' => 'Το πεδίο :attribute πρέπει να έχει μεταξύ :min - :max αντικείμενα.',
|
||||
],
|
||||
'boolean' => 'Το πεδίο :attribute πρέπει να είναι true ή false.',
|
||||
'confirmed' => 'Η επιβεβαίωση του :attribute δεν ταιριάζει.',
|
||||
'date' => 'Το πεδίο :attribute δεν είναι έγκυρη ημερομηνία.',
|
||||
'date_format' => 'Το πεδίο :attribute δεν είναι της μορφής :format.',
|
||||
'different' => 'Το πεδίο :attribute και :other πρέπει να είναι διαφορετικά.',
|
||||
'digits' => 'Το πεδίο :attribute πρέπει να είναι :digits ψηφία.',
|
||||
'digits_between' => 'Το πεδίο :attribute πρέπει να είναι μεταξύ :min και :max ψηφία.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση email.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'To πεδίο :attribute είναι απαραίτητο.',
|
||||
'exists' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
|
||||
'image' => 'Το πεδίο :attribute πρέπει να είναι εικόνα.',
|
||||
'in' => 'Το επιλεγμένο :attribute δεν είναι έγκυρο.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'Το πεδίο :attribute πρέπει να είναι ακέραιος.',
|
||||
'ip' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη διεύθυνση IP.',
|
||||
'json' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη συμβολοσειρά JSON.',
|
||||
'max' => [
|
||||
'numeric' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερο από :max.',
|
||||
'file' => 'Το πεδίο :attribute δεν μπορεί να είναι μεγαλύτερό :max kilobytes.',
|
||||
'string' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερους από :max χαρακτήρες.',
|
||||
'array' => 'Το πεδίο :attribute δεν μπορεί να έχει περισσότερα από :max αντικείμενα.',
|
||||
],
|
||||
'mimes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
|
||||
'mimetypes' => 'Το πεδίο :attribute πρέπει να είναι αρχείο τύπου: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'Το πεδίο :attribute πρέπει να είναι τουλάχιστον :min.',
|
||||
'file' => 'Το πεδίο :attribute πρέπει να είναι τουλάχιστον :min kilobytes.',
|
||||
'string' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min χαρακτήρες.',
|
||||
'array' => 'Το πεδίο :attribute πρέπει να έχει τουλάχιστον :min αντικείμενα.',
|
||||
],
|
||||
'not_in' => 'Το επιλεγμένο :attribute δεν είναι αποδεκτό.',
|
||||
'numeric' => 'Το πεδίο :attribute πρέπει να είναι αριθμός.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Η μορφή του :attribute δεν είναι αποδεκτή.',
|
||||
'required' => 'Το πεδίο :attribute είναι απαραίτητο.',
|
||||
'required_if' => 'Το πεδίο :attribute είναι απαραίτητο όταν το πεδίο :other είναι :value.',
|
||||
'required_unless' => 'Το πεδίο :attribute είναι απαραίτητο εκτός αν το πεδίο :other εμπεριέχει :values.',
|
||||
'required_with' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχει :values.',
|
||||
'required_with_all' => 'Το πεδίο :attribute είναι απαραίτητο όταν υπάρχουν :values.',
|
||||
'required_without' => 'Το πεδίο :attribute είναι απαραίτητο όταν δεν υπάρχει :values.',
|
||||
'required_without_all' => 'Το πεδίο :attribute είναι απαραίτητο όταν δεν υπάρχει κανένα από :values.',
|
||||
'same' => 'Τα πεδία :attribute και :other πρέπει να είναι ίδια.',
|
||||
'size' => [
|
||||
'numeric' => 'Το πεδίο :attribute πρέπει να είναι :size.',
|
||||
'file' => 'Το πεδίο :attribute πρέπει να είναι :size kilobytes.',
|
||||
'string' => 'Το πεδίο :attribute πρέπει να είναι :size χαρακτήρες.',
|
||||
'array' => 'Το πεδίο :attribute πρέπει να περιέχει :size αντικείμενα.',
|
||||
],
|
||||
'string' => 'Το πεδίο :attribute πρέπει να είναι αλφαριθμητικό.',
|
||||
'timezone' => 'Το πεδίο :attribute πρέπει να είναι μία έγκυρη ζώνη ώρας.',
|
||||
'unique' => 'Το πεδίο :attribute έχει ήδη εκχωρηθεί.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'Το πεδίο :attribute δεν είναι έγκυρη διεύθυνση URL.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
3110
resources/lang/en/texts.php
Normal file
3110
resources/lang/en/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
20
resources/lang/en_GB/pagination.php
Normal file
20
resources/lang/en_GB/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
|
||||
'next' => 'Next »',
|
||||
|
||||
);
|
22
resources/lang/en_GB/passwords.php
Normal file
22
resources/lang/en_GB/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "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" => "We have e-mailed your password reset link!",
|
||||
"reset" => "Your password has been reset!",
|
||||
|
||||
];
|
24
resources/lang/en_GB/reminders.php
Normal file
24
resources/lang/en_GB/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "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!",
|
||||
|
||||
);
|
2874
resources/lang/en_GB/texts.php
Normal file
2874
resources/lang/en_GB/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
107
resources/lang/en_GB/validation.php
Normal file
107
resources/lang/en_GB/validation.php
Normal file
@ -0,0 +1,107 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => "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",
|
||||
"has_counter" => "To ensure all invoice numbers are unique the pattern needs to contain either {\$counter} or {\$clientIdNumber} and {\$clientCounter}",
|
||||
"valid_contacts" => "The contact must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
"valid_subdomain" => "The subdomain is restricted",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
20
resources/lang/es/pagination.php
Normal file
20
resources/lang/es/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Anterior',
|
||||
|
||||
'next' => 'Siguiente »',
|
||||
|
||||
);
|
24
resources/lang/es/reminders.php
Normal file
24
resources/lang/es/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Las contraseñas deben contener al menos 6 caracteres y coincidir.",
|
||||
|
||||
"user" => "No podemos encontrar a un usuario con ese correo electrónico.",
|
||||
|
||||
"token" => "Este token de recuperación de contraseña es inválido.",
|
||||
|
||||
"sent" => "¡Recordatorio de contraseña enviado!",
|
||||
|
||||
);
|
2870
resources/lang/es/texts.php
Normal file
2870
resources/lang/es/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
111
resources/lang/es/validation.php
Normal file
111
resources/lang/es/validation.php
Normal file
@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute debe ser aceptado.",
|
||||
"active_url" => ":attribute no es una URL válida.",
|
||||
"after" => ":attribute debe ser una fecha posterior a :date.",
|
||||
"alpha" => ":attribute solo debe contener letras.",
|
||||
"alpha_dash" => ":attribute solo debe contener letras, números y guiones.",
|
||||
"alpha_num" => ":attribute solo debe contener letras y números.",
|
||||
"array" => ":attribute debe ser un conjunto.",
|
||||
"before" => ":attribute debe ser una fecha anterior a :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute tiene que estar entre :min - :max.",
|
||||
"file" => ":attribute debe pesar entre :min - :max kilobytes.",
|
||||
"string" => ":attribute tiene que tener entre :min - :max caracteres.",
|
||||
"array" => ":attribute tiene que tener entre :min - :max ítems.",
|
||||
),
|
||||
"confirmed" => "La confirmación de :attribute no coincide.",
|
||||
"date" => ":attribute no es una fecha válida.",
|
||||
"date_format" => ":attribute no corresponde al formato :format.",
|
||||
"different" => ":attribute y :other deben ser diferentes.",
|
||||
"digits" => ":attribute debe tener :digits dígitos.",
|
||||
"digits_between" => ":attribute debe tener entre :min y :max dígitos.",
|
||||
"email" => ":attribute no es un correo válido",
|
||||
"exists" => ":attribute es inválido.",
|
||||
"image" => ":attribute debe ser una imagen.",
|
||||
"in" => ":attribute es inválido.",
|
||||
"integer" => ":attribute debe ser un número entero.",
|
||||
"ip" => ":attribute debe ser una dirección IP válida.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute no debe ser mayor a :max.",
|
||||
"file" => ":attribute no debe ser mayor que :max kilobytes.",
|
||||
"string" => ":attribute no debe ser mayor que :max caracteres.",
|
||||
"array" => ":attribute no debe tener más de :max elementos.",
|
||||
),
|
||||
"mimes" => ":attribute debe ser un archivo con formato: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "El tamaño de :attribute debe ser de al menos :min.",
|
||||
"file" => "El tamaño de :attribute debe ser de al menos :min kilobytes.",
|
||||
"string" => ":attribute debe contener al menos :min caracteres.",
|
||||
"array" => ":attribute debe tener al menos :min elementos.",
|
||||
),
|
||||
"not_in" => ":attribute es inválido.",
|
||||
"numeric" => ":attribute debe ser numérico.",
|
||||
"regex" => "El formato de :attribute es inválido.",
|
||||
"required" => "El campo :attribute es obligatorio.",
|
||||
"required_if" => "El campo :attribute es obligatorio cuando :other es :value.",
|
||||
"required_with" => "El campo :attribute es obligatorio cuando :values está presente.",
|
||||
"required_with_all" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "El campo :attribute es obligatorio cuando :values no está presente.",
|
||||
"required_without_all" => "The :attribute field is required when none of :values are present.",
|
||||
"same" => ":attribute y :other deben coincidir.",
|
||||
"size" => array(
|
||||
"numeric" => "El tamaño de :attribute debe ser :size.",
|
||||
"file" => "El tamaño de :attribute debe ser :size kilobytes.",
|
||||
"string" => ":attribute debe contener :size caracteres.",
|
||||
"array" => ":attribute debe contener :size elementos.",
|
||||
),
|
||||
"unique" => ":attribute ya ha sido registrado.",
|
||||
"url" => "El formato :attribute es inválido.",
|
||||
"positive" => ":attribute debe ser mayor que cero.",
|
||||
"has_credit" => "el cliente no tiene crédito suficiente.",
|
||||
"notmasked" => "The values are masked",
|
||||
"less_than" => 'The :attribute must be less than :value',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
20
resources/lang/es_ES/pagination.php
Normal file
20
resources/lang/es_ES/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Anterior',
|
||||
|
||||
'next' => 'Siguiente »',
|
||||
|
||||
);
|
24
resources/lang/es_ES/reminders.php
Normal file
24
resources/lang/es_ES/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Las contraseñas deben contener al menos 6 caracteres y coincidir.",
|
||||
|
||||
"user" => "No podemos encontrar a un usuario con ese correo electrónico.",
|
||||
|
||||
"token" => "Este token de recuperación de contraseña es inválido.",
|
||||
|
||||
"sent" => "¡Recordatorio de contraseña enviado!",
|
||||
|
||||
);
|
2862
resources/lang/es_ES/texts.php
Normal file
2862
resources/lang/es_ES/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
111
resources/lang/es_ES/validation.php
Normal file
111
resources/lang/es_ES/validation.php
Normal file
@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute debe ser aceptado.",
|
||||
"active_url" => ":attribute no es una URL válida.",
|
||||
"after" => ":attribute debe ser una fecha posterior a :date.",
|
||||
"alpha" => ":attribute solo debe contener letras.",
|
||||
"alpha_dash" => ":attribute solo debe contener letras, números y guiones.",
|
||||
"alpha_num" => ":attribute solo debe contener letras y números.",
|
||||
"array" => ":attribute debe ser un conjunto.",
|
||||
"before" => ":attribute debe ser una fecha anterior a :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute tiene que estar entre :min - :max.",
|
||||
"file" => ":attribute debe pesar entre :min - :max kilobytes.",
|
||||
"string" => ":attribute tiene que tener entre :min - :max caracteres.",
|
||||
"array" => ":attribute tiene que tener entre :min - :max ítems.",
|
||||
),
|
||||
"confirmed" => "La confirmación de :attribute no coincide.",
|
||||
"date" => ":attribute no es una fecha válida.",
|
||||
"date_format" => ":attribute no corresponde al formato :format.",
|
||||
"different" => ":attribute y :other deben ser diferentes.",
|
||||
"digits" => ":attribute debe tener :digits dígitos.",
|
||||
"digits_between" => ":attribute debe tener entre :min y :max dígitos.",
|
||||
"email" => ":attribute no es un correo válido",
|
||||
"exists" => ":attribute es inválido.",
|
||||
"image" => ":attribute debe ser una imagen.",
|
||||
"in" => ":attribute es inválido.",
|
||||
"integer" => ":attribute debe ser un número entero.",
|
||||
"ip" => ":attribute debe ser una dirección IP válida.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute no debe ser mayor a :max.",
|
||||
"file" => ":attribute no debe ser mayor que :max kilobytes.",
|
||||
"string" => ":attribute no debe ser mayor que :max caracteres.",
|
||||
"array" => ":attribute no debe tener más de :max elementos.",
|
||||
),
|
||||
"mimes" => ":attribute debe ser un archivo con formato: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "El tamaño de :attribute debe ser de al menos :min.",
|
||||
"file" => "El tamaño de :attribute debe ser de al menos :min kilobytes.",
|
||||
"string" => ":attribute debe contener al menos :min caracteres.",
|
||||
"array" => ":attribute debe tener al menos :min elementos.",
|
||||
),
|
||||
"not_in" => ":attribute es inválido.",
|
||||
"numeric" => ":attribute debe ser numérico.",
|
||||
"regex" => "El formato de :attribute es inválido.",
|
||||
"required" => "El campo :attribute es obligatorio.",
|
||||
"required_if" => "El campo :attribute es obligatorio cuando :other es :value.",
|
||||
"required_with" => "El campo :attribute es obligatorio cuando :values está presente.",
|
||||
"required_with_all" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "El campo :attribute es obligatorio cuando :values no está presente.",
|
||||
"required_without_all" => "The :attribute field is required when none of :values are present.",
|
||||
"same" => ":attribute y :other deben coincidir.",
|
||||
"size" => array(
|
||||
"numeric" => "El tamaño de :attribute debe ser :size.",
|
||||
"file" => "El tamaño de :attribute debe ser :size kilobytes.",
|
||||
"string" => ":attribute debe contener :size caracteres.",
|
||||
"array" => ":attribute debe contener :size elementos.",
|
||||
),
|
||||
"unique" => ":attribute ya ha sido registrado.",
|
||||
"url" => "El formato :attribute es inválido.",
|
||||
"positive" => ":attribute debe ser mayor que cero.",
|
||||
"has_credit" => "el cliente no tiene crédito suficiente.",
|
||||
"notmasked" => "The values are masked",
|
||||
"less_than" => 'The :attribute must be less than :value',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
19
resources/lang/fi/auth.php
Normal file
19
resources/lang/fi/auth.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Kirjautuminen epäonnistui.',
|
||||
'throttle' => 'Liian monta kirjautumisyritystä. Yritä uudelleen :seconds sekunnin kuluttua.',
|
||||
|
||||
];
|
19
resources/lang/fi/pagination.php
Normal file
19
resources/lang/fi/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Edellinen',
|
||||
'next' => 'Seuraava »',
|
||||
|
||||
];
|
22
resources/lang/fi/passwords.php
Normal file
22
resources/lang/fi/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Salasanan on oltava vähintään kuusi merkkiä pitkä ja vastattava vahvistuskentän arvoa.',
|
||||
'reset' => 'Salasana on resetoitu!',
|
||||
'sent' => 'Resetointilinkki lähetetty sähköpostitse!',
|
||||
'token' => 'Resetointitunniste on viallinen.',
|
||||
'user' => 'Sähköpostiosoitteella ei löydy käyttäjää.',
|
||||
|
||||
];
|
2874
resources/lang/fi/texts.php
Normal file
2874
resources/lang/fi/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
123
resources/lang/fi/validation.php
Normal file
123
resources/lang/fi/validation.php
Normal file
@ -0,0 +1,123 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'Kenttä :attribute tulee hyväksyä.',
|
||||
'active_url' => 'Kentän :attribute tulee olla validi URL-osoite.',
|
||||
'after' => 'Kentän :attribute päiväyksen tulee olla :date jälkeen.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'Kenttä :attribute voi sisältää vain kirjaimia.',
|
||||
'alpha_dash' => 'Kenttä :attribute voi sisältää vain kirjaimia, numeroita ja viivoja.',
|
||||
'alpha_num' => 'Kenttä :attribute voi sisältää vain kirjaimia ja numeroita.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'Kentän :attribute päiväyksen tulee olla ennen :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Kentän :attribute tulee olla välillä :min - :max.',
|
||||
'file' => 'Tiedoston :attribute tulee olla :min - :max kilobittiä.',
|
||||
'string' => 'Kentän :attribute tulee olla :min - :max merkkiä pitkä.',
|
||||
'array' => 'Kentän :attribute tulee sisältää välillä :min - :max arvoa.',
|
||||
],
|
||||
'boolean' => 'Kentän :attribute arvon tulee olla tosi tai epätosi.',
|
||||
'confirmed' => 'Kentän :attribute vahvistus ei täsmää.',
|
||||
'date' => 'Kentän :attribute arvo ei ole kelvollinen päivämäärä.',
|
||||
'date_format' => 'Kentän :attribute arvo ei vastaa muotoa :format.',
|
||||
'different' => 'Kenttien :attribute ja :other tulee olla eriarvoisia.',
|
||||
'digits' => 'Kentän :attribute arvon on oltava :digits numeroa.',
|
||||
'digits_between' => 'Kentän :attribute arvon tulee olla :min - :max numeroa.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'Kentän :attribute arvo ei ole uniikki.',
|
||||
'email' => 'Kentän :attribute arvo ei ole validi sähköpostiosoite.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'Kentän :attribute arvon tulee olla tiedosto.',
|
||||
'filled' => 'Kenttä :attribute on pakollinen.',
|
||||
'image' => 'Kentän :attribute arvon tulee olla kuva.',
|
||||
'in' => 'Kentän :attribute arvo on virheellinen.',
|
||||
'in_array' => 'Kentän :attribute arvo ei sisälly kentän :other arvoon.',
|
||||
'integer' => 'Kentän :attribute arvon tulee olla numero.',
|
||||
'ip' => 'Kentän :attribute arvon tulee olla validi IP-osoite.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'Kentän :attribute arvon tulee olla validia JSON:ia.',
|
||||
'max' => [
|
||||
'numeric' => 'Kentän arvon :attribute tulee olla enintään :max.',
|
||||
'file' => 'Tiedoston :attribute tulee olla enintään :max kilobittiä.',
|
||||
'string' => 'Kentän :attribute arvon tulee olla enintään :max merkkiä pitkä.',
|
||||
'array' => 'Kentän :attribute ei tule sisältää enempää kuin :max arvoa.',
|
||||
],
|
||||
'mimes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
|
||||
'mimetypes' => 'Kentän :attribute arvon tulee olla tiedostotyyppiä: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'Kentän :attribute arvon tulee olla vähintään :min.',
|
||||
'file' => 'Tiedoston :attribute tulee olla vähintään :min kilobittiä.',
|
||||
'string' => 'Kentän :attribute arvon tulee olla vähintään :min merkkiä.',
|
||||
'array' => 'Kentän :attribute tulee sisältää vähintään :min arvoa.',
|
||||
],
|
||||
'not_in' => 'Kentän :attribute arvo on virheellinen.',
|
||||
'numeric' => 'Kentän :attribute arvon tulee olla numero.',
|
||||
'present' => 'Kenttä :attribute vaaditaan.',
|
||||
'regex' => 'Kentän :attribute arvo on väärää muotoa.',
|
||||
'required' => 'Kenttä :attribute vaaditaan.',
|
||||
'required_if' => 'Kenttä :attribute vaaditaan kun :other on :value.',
|
||||
'required_unless' => 'Kenttä :attribute vaaditaan jos :other ei sisälly arvoihin :values.',
|
||||
'required_with' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
|
||||
'required_with_all' => 'Kenttä :attribute vaaditaan kun arvo :values on annettu.',
|
||||
'required_without' => 'Kenttä :attribute vaaditaan kun arvoa :values ei ole annettu.',
|
||||
'required_without_all' => 'Kenttä :attribute vaaditaan kun mitään arvoista :values ei ole annettu.',
|
||||
'same' => 'Kenttien :attribute ja :other on oltava samanarvoiset.',
|
||||
'size' => [
|
||||
'numeric' => 'Kentän :attribute arvon tulee olla kokoa :size.',
|
||||
'file' => 'Tiedoston :attribute tulee olla kokoa :size kilobittiä.',
|
||||
'string' => 'Kentän :attribute arvon tulee olla kokoa :size merkkiä.',
|
||||
'array' => 'Kentän :attribute tulee sisältää :size arvoa.',
|
||||
],
|
||||
'string' => 'Kentän :attribute arvon tulee olla tekstiä.',
|
||||
'timezone' => 'Kentän :attribute arvon tulee olla validi aikavyöhyketunniste.',
|
||||
'unique' => 'Kentän :attribute arvo ei ole uniikki.',
|
||||
'uploaded' => 'Tiedoston :attribute lataus epäonnistui.',
|
||||
'url' => 'Kentän :attribute arvon tulee olla validi URL-osoite.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
20
resources/lang/fr/pagination.php
Normal file
20
resources/lang/fr/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Précédent',
|
||||
|
||||
'next' => 'Suivant »',
|
||||
|
||||
);
|
24
resources/lang/fr/reminders.php
Normal file
24
resources/lang/fr/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Les mots de passe doivent avoir au moins six caractères et doivent être identiques.",
|
||||
|
||||
"user" => "Nous ne pouvons trouver cet utilisateur avec cette adresse e-mail.",
|
||||
|
||||
"token" => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",
|
||||
|
||||
"sent" => "Rappel du mot de passe envoyé !",
|
||||
|
||||
);
|
2866
resources/lang/fr/texts.php
Normal file
2866
resources/lang/fr/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
142
resources/lang/fr/validation.php
Normal file
142
resources/lang/fr/validation.php
Normal file
@ -0,0 +1,142 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => "Le champ :attribute doit être accepté.",
|
||||
"active_url" => "Le champ :attribute n'est pas une URL valide.",
|
||||
"after" => "Le champ :attribute doit être une date postérieure au :date.",
|
||||
"alpha" => "Le champ :attribute doit seulement contenir des lettres.",
|
||||
"alpha_dash" => "Le champ :attribute doit seulement contenir des lettres, des chiffres et des tirets.",
|
||||
"alpha_num" => "Le champ :attribute doit seulement contenir des chiffres et des lettres.",
|
||||
"array" => "Le champ :attribute doit être un tableau.",
|
||||
"before" => "Le champ :attribute doit être une date antérieure au :date.",
|
||||
"between" => array(
|
||||
"numeric" => "La valeur de :attribute doit être comprise entre :min et :max.",
|
||||
"file" => "Le fichier :attribute doit avoir une taille entre :min et :max kilobytes.",
|
||||
"string" => "Le texte :attribute doit avoir entre :min et :max caractères.",
|
||||
"array" => "Le champ :attribute doit avoir entre :min et :max éléments.",
|
||||
),
|
||||
"confirmed" => "Le champ de confirmation :attribute ne correspond pas.",
|
||||
"date" => "Le champ :attribute n'est pas une date valide.",
|
||||
"date_format" => "Le champ :attribute ne correspond pas au format :format.",
|
||||
"different" => "Les champs :attribute et :other doivent être différents.",
|
||||
"digits" => "Le champ :attribute doit avoir :digits chiffres.",
|
||||
"digits_between" => "Le champ :attribute doit avoir entre :min and :max chiffres.",
|
||||
"email" => "Le champ :attribute doit être une adresse email valide.",
|
||||
"exists" => "Le champ :attribute sélectionné est invalide.",
|
||||
"image" => "Le champ :attribute doit être une image.",
|
||||
"in" => "Le champ :attribute est invalide.",
|
||||
"integer" => "Le champ :attribute doit être un entier.",
|
||||
"ip" => "Le champ :attribute doit être une adresse IP valide.",
|
||||
"max" => array(
|
||||
"numeric" => "La valeur de :attribute ne peut être supérieure à :max.",
|
||||
"file" => "Le fichier :attribute ne peut être plus gros que :max kilobytes.",
|
||||
"string" => "Le texte de :attribute ne peut contenir plus de :max caractères.",
|
||||
"array" => "Le champ :attribute ne peut avoir plus de :max éléments.",
|
||||
),
|
||||
"mimes" => "Le champ :attribute doit être un fichier de type : :values.",
|
||||
"min" => array(
|
||||
"numeric" => "La valeur de :attribute doit être supérieure à :min.",
|
||||
"file" => "Le fichier :attribute doit être plus que gros que :min kilobytes.",
|
||||
"string" => "Le texte :attribute doit contenir au moins :min caractères.",
|
||||
"array" => "Le champ :attribute doit avoir au moins :min éléments.",
|
||||
),
|
||||
"not_in" => "Le champ :attribute sélectionné n'est pas valide.",
|
||||
"numeric" => "Le champ :attribute doit contenir un nombre.",
|
||||
"regex" => "Le format du champ :attribute est invalide.",
|
||||
"required" => "Le champ :attribute est obligatoire.",
|
||||
"required_if" => "Le champ :attribute est obligatoire quand la valeur de :other est :value.",
|
||||
"required_with" => "Le champ :attribute est obligatoire quand :values est présent.",
|
||||
"required_with_all" => "Le champ :attribute est obligatoire quand :values est présent.",
|
||||
"required_without" => "Le champ :attribute est obligatoire quand :values n'est pas présent.",
|
||||
"required_without_all" => "Le champ :attribute est requis quand aucun de :values n'est présent.",
|
||||
"same" => "Les champs :attribute et :other doivent être identiques.",
|
||||
"size" => array(
|
||||
"numeric" => "La valeur de :attribute doit être :size.",
|
||||
"file" => "La taille du fichier de :attribute doit être de :size kilobytes.",
|
||||
"string" => "Le texte de :attribute doit contenir :size caractères.",
|
||||
"array" => "Le champ :attribute doit contenir :size éléments.",
|
||||
),
|
||||
"unique" => "La valeur du champ :attribute est déjà utilisée.",
|
||||
"url" => "Le format de l'URL de :attribute n'est pas valide.",
|
||||
|
||||
"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',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(
|
||||
"name" => "Nom",
|
||||
"username" => "Pseudo",
|
||||
"email" => "E-mail",
|
||||
"first_name" => "Prénom",
|
||||
"last_name" => "Nom",
|
||||
"password" => "Mot de passe",
|
||||
"password_confirmation" => "Confirmation du mot de passe",
|
||||
"city" => "Ville",
|
||||
"country" => "Pays",
|
||||
"address" => "Adresse",
|
||||
"phone" => "Téléphone",
|
||||
"mobile" => "Portable",
|
||||
"age" => "Age",
|
||||
"sex" => "Sexe",
|
||||
"gender" => "Genre",
|
||||
"day" => "Jour",
|
||||
"month" => "Mois",
|
||||
"year" => "Année",
|
||||
"hour" => "Heure",
|
||||
"minute" => "Minute",
|
||||
"second" => "Seconde",
|
||||
"title" => "Titre",
|
||||
"content" => "Contenu",
|
||||
"description" => "Description",
|
||||
"excerpt" => "Extrait",
|
||||
"date" => "Date",
|
||||
"time" => "Heure",
|
||||
"available" => "Disponible",
|
||||
"size" => "Taille",
|
||||
),
|
||||
|
||||
);
|
20
resources/lang/fr_CA/pagination.php
Normal file
20
resources/lang/fr_CA/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Précédent',
|
||||
|
||||
'next' => 'Suivant »',
|
||||
|
||||
);
|
24
resources/lang/fr_CA/reminders.php
Normal file
24
resources/lang/fr_CA/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Les mots de passe doivent avoir au moins six caractères et doivent être identiques.",
|
||||
|
||||
"user" => "Nous ne pouvons trouver cet utilisateur avec cette adresse courriel.",
|
||||
|
||||
"token" => "Ce jeton de réinitialisation du mot de passe n'est pas valide.",
|
||||
|
||||
"sent" => "Rappel du mot de passe envoyé !",
|
||||
|
||||
);
|
2864
resources/lang/fr_CA/texts.php
Normal file
2864
resources/lang/fr_CA/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
142
resources/lang/fr_CA/validation.php
Normal file
142
resources/lang/fr_CA/validation.php
Normal file
@ -0,0 +1,142 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => "Le champ :attribute doit être accepté.",
|
||||
"active_url" => "Le champ :attribute n'est pas une URL valide.",
|
||||
"after" => "Le champ :attribute doit être une date postérieure au :date.",
|
||||
"alpha" => "Le champ :attribute doit seulement contenir des lettres.",
|
||||
"alpha_dash" => "Le champ :attribute doit seulement contenir des lettres, des chiffres et des tirets.",
|
||||
"alpha_num" => "Le champ :attribute doit seulement contenir des chiffres et des lettres.",
|
||||
"array" => "Le champ :attribute doit être un tableau.",
|
||||
"before" => "Le champ :attribute doit être une date antérieure au :date.",
|
||||
"between" => array(
|
||||
"numeric" => "La valeur de :attribute doit être comprise entre :min et :max.",
|
||||
"file" => "Le fichier :attribute doit avoir une taille entre :min et :max kilobytes.",
|
||||
"string" => "Le texte :attribute doit avoir entre :min et :max caractères.",
|
||||
"array" => "Le champ :attribute doit avoir entre :min et :max éléments.",
|
||||
),
|
||||
"confirmed" => "Le champ de confirmation :attribute ne correspond pas.",
|
||||
"date" => "Le champ :attribute n'est pas une date valide.",
|
||||
"date_format" => "Le champ :attribute ne correspond pas au format :format.",
|
||||
"different" => "Les champs :attribute et :other doivent être différents.",
|
||||
"digits" => "Le champ :attribute doit avoir :digits chiffres.",
|
||||
"digits_between" => "Le champ :attribute doit avoir entre :min and :max chiffres.",
|
||||
"email" => "Le champ :attribute doit être une adresse email valide.",
|
||||
"exists" => "Le champ :attribute sélectionné est invalide.",
|
||||
"image" => "Le champ :attribute doit être une image.",
|
||||
"in" => "Le champ :attribute est invalide.",
|
||||
"integer" => "Le champ :attribute doit être un entier.",
|
||||
"ip" => "Le champ :attribute doit être une adresse IP valide.",
|
||||
"max" => array(
|
||||
"numeric" => "La valeur de :attribute ne peut être supérieure à :max.",
|
||||
"file" => "Le fichier :attribute ne peut être plus gros que :max kilobytes.",
|
||||
"string" => "Le texte de :attribute ne peut contenir plus de :max caractères.",
|
||||
"array" => "Le champ :attribute ne peut avoir plus de :max éléments.",
|
||||
),
|
||||
"mimes" => "Le champ :attribute doit être un fichier de type : :values.",
|
||||
"min" => array(
|
||||
"numeric" => "La valeur de :attribute doit être supérieure à :min.",
|
||||
"file" => "Le fichier :attribute doit être plus que gros que :min kilobytes.",
|
||||
"string" => "Le texte :attribute doit contenir au moins :min caractères.",
|
||||
"array" => "Le champ :attribute doit avoir au moins :min éléments.",
|
||||
),
|
||||
"not_in" => "Le champ :attribute sélectionné n'est pas valide.",
|
||||
"numeric" => "Le champ :attribute doit contenir un nombre.",
|
||||
"regex" => "Le format du champ :attribute est invalide.",
|
||||
"required" => "Le champ :attribute est obligatoire.",
|
||||
"required_if" => "Le champ :attribute est obligatoire quand la valeur de :other est :value.",
|
||||
"required_with" => "Le champ :attribute est obligatoire quand :values est présent.",
|
||||
"required_with_all" => "Le champ :attribute est obligatoire quand :values est présent.",
|
||||
"required_without" => "Le champ :attribute est obligatoire quand :values n'est pas présent.",
|
||||
"required_without_all" => "Le champ :attribute est requis quand aucun de :values n'est présent.",
|
||||
"same" => "Les champs :attribute et :other doivent être identiques.",
|
||||
"size" => array(
|
||||
"numeric" => "La valeur de :attribute doit être :size.",
|
||||
"file" => "La taille du fichier de :attribute doit être de :size kilobytes.",
|
||||
"string" => "Le texte de :attribute doit contenir :size caractères.",
|
||||
"array" => "Le champ :attribute doit contenir :size éléments.",
|
||||
),
|
||||
"unique" => "La valeur du champ :attribute est déjà utilisée.",
|
||||
"url" => "Le format de l'URL de :attribute n'est pas valide.",
|
||||
|
||||
"positive" => ":attribute doit être supérieur à zero.",
|
||||
"has_credit" => "Le client n'a pas un crédit suffisant.",
|
||||
"notmasked" => "Les valeurs sont masquées",
|
||||
"less_than" => 'The :attribute must be less than :value',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(
|
||||
"name" => "Nom",
|
||||
"username" => "Pseudo",
|
||||
"email" => "Courriel",
|
||||
"first_name" => "Prénom",
|
||||
"last_name" => "Nom",
|
||||
"password" => "Mot de passe",
|
||||
"password_confirmation" => "Confirmation du mot de passe",
|
||||
"city" => "Ville",
|
||||
"country" => "Pays",
|
||||
"address" => "Adresse",
|
||||
"phone" => "Téléphone",
|
||||
"mobile" => "Mobile",
|
||||
"age" => "Âge",
|
||||
"sex" => "Sexe",
|
||||
"gender" => "Genre",
|
||||
"day" => "Jour",
|
||||
"month" => "Mois",
|
||||
"year" => "Année",
|
||||
"hour" => "Heure",
|
||||
"minute" => "Minute",
|
||||
"second" => "Seconde",
|
||||
"title" => "Titre",
|
||||
"content" => "Contenu",
|
||||
"description" => "Description",
|
||||
"excerpt" => "Extrait",
|
||||
"date" => "Date",
|
||||
"time" => "Heure",
|
||||
"available" => "Disponible",
|
||||
"size" => "Taille",
|
||||
),
|
||||
|
||||
);
|
19
resources/lang/hr/auth.php
Normal file
19
resources/lang/hr/auth.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Ovi podaci ne odgovaraju našima.',
|
||||
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
|
||||
|
||||
];
|
19
resources/lang/hr/pagination.php
Normal file
19
resources/lang/hr/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Prethodna',
|
||||
'next' => 'Sljedeća »',
|
||||
|
||||
];
|
22
resources/lang/hr/passwords.php
Normal file
22
resources/lang/hr/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Lozinke moraju biti duge barem 6 znakova i moraju odgovarati potvrdi.',
|
||||
'reset' => 'Lozinka je postavljena!',
|
||||
'sent' => 'Poveznica za ponovono postavljanje lozinke je poslana!',
|
||||
'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
|
||||
'user' => 'Korisnik nije pronađen.',
|
||||
|
||||
];
|
2873
resources/lang/hr/texts.php
Normal file
2873
resources/lang/hr/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
116
resources/lang/hr/validation.php
Normal file
116
resources/lang/hr/validation.php
Normal file
@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
|
||||
'active_url' => 'Polje :attribute nije ispravan URL.',
|
||||
'after' => 'Polje :attribute mora biti datum nakon :date.',
|
||||
'alpha' => 'Polje :attribute smije sadržavati samo slova.',
|
||||
'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.',
|
||||
'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.',
|
||||
'array' => 'Polje :attribute mora biti niz.',
|
||||
'before' => 'Polje :attribute mora biti datum prije :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Polje :attribute mora biti između :min - :max.',
|
||||
'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
|
||||
'string' => 'Polje :attribute mora biti između :min - :max znakova.',
|
||||
'array' => 'Polje :attribute mora imati između :min - :max stavki.',
|
||||
],
|
||||
'boolean' => 'Polje :attribute mora biti false ili true.',
|
||||
'confirmed' => 'Potvrda polja :attribute se ne podudara.',
|
||||
'date' => 'Polje :attribute nije ispravan datum.',
|
||||
'date_format' => 'Polje :attribute ne podudara s formatom :format.',
|
||||
'different' => 'Polja :attribute i :other moraju biti različita.',
|
||||
'digits' => 'Polje :attribute mora sadržavati :digits znamenki.',
|
||||
'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
|
||||
'exists' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'filled' => 'The :attribute field is required.',
|
||||
'image' => 'Polje :attribute mora biti slika.',
|
||||
'in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'Polje :attribute mora biti broj.',
|
||||
'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'Polje :attribute mora biti manje od :max.',
|
||||
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
|
||||
'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
|
||||
'array' => 'Polje :attribute ne smije imati više od :max stavki.',
|
||||
],
|
||||
'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'Polje :attribute mora biti najmanje :min.',
|
||||
'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
|
||||
'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
|
||||
'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
|
||||
],
|
||||
'not_in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'numeric' => 'Polje :attribute mora biti broj.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Polje :attribute se ne podudara s formatom.',
|
||||
'required' => 'Polje :attribute je obavezno.',
|
||||
'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.',
|
||||
'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.',
|
||||
'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.',
|
||||
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
|
||||
'same' => 'Polja :attribute i :other se moraju podudarati.',
|
||||
'size' => [
|
||||
'numeric' => 'Polje :attribute mora biti :size.',
|
||||
'file' => 'Polje :attribute mora biti :size kilobajta.',
|
||||
'string' => 'Polje :attribute mora biti :size znakova.',
|
||||
'array' => 'Polje :attribute mora sadržavati :size stavki.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
|
||||
'unique' => 'Polje :attribute već postoji.',
|
||||
'url' => 'Polje :attribute nije ispravnog formata.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
20
resources/lang/it/pagination.php
Normal file
20
resources/lang/it/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Precedente',
|
||||
|
||||
'next' => 'Successivo »',
|
||||
|
||||
);
|
24
resources/lang/it/reminders.php
Normal file
24
resources/lang/it/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "Le password devono essere di almeno 6 caratteri e devono coincidere.",
|
||||
|
||||
"user" => "Non esiste un utente associato a questo indirizzo e-mail.",
|
||||
|
||||
"token" => "Questo token per la reimpostazione della password non è valido.",
|
||||
|
||||
"sent" => "Promemoria della password inviato!",
|
||||
|
||||
);
|
2865
resources/lang/it/texts.php
Normal file
2865
resources/lang/it/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
111
resources/lang/it/validation.php
Normal file
111
resources/lang/it/validation.php
Normal file
@ -0,0 +1,111 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
"accepted" => ":attribute deve essere accettato.",
|
||||
"active_url" => ":attribute non è un URL valido.",
|
||||
"after" => ":attribute deve essere una data successiva al :date.",
|
||||
"alpha" => ":attribute può contenere solo lettere.",
|
||||
"alpha_dash" => ":attribute può contenere solo lettere, numeri e trattini.",
|
||||
"alpha_num" => ":attribute può contenere solo lettere e numeri.",
|
||||
"array" => ":attribute deve essere un array.",
|
||||
"before" => ":attribute deve essere una data precedente al :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute deve trovarsi tra :min - :max.",
|
||||
"file" => ":attribute deve trovarsi tra :min - :max kilobytes.",
|
||||
"string" => ":attribute deve trovarsi tra :min - :max caratteri.",
|
||||
"array" => ":attribute deve avere tra :min - :max elementi.",
|
||||
),
|
||||
"confirmed" => "Il campo di conferma per :attribute non coincide.",
|
||||
"date" => ":attribute non è una data valida.",
|
||||
"date_format" => ":attribute non coincide con il formato :format.",
|
||||
"different" => ":attribute e :other devono essere differenti.",
|
||||
"digits" => ":attribute deve essere di :digits cifre.",
|
||||
"digits_between" => ":attribute deve essere tra :min e :max cifre.",
|
||||
"email" => ":attribute non è valido.",
|
||||
"exists" => ":attribute selezionato/a non è valido.",
|
||||
"image" => ":attribute deve essere un'immagine.",
|
||||
"in" => ":attribute selezionato non è valido.",
|
||||
"integer" => ":attribute deve essere intero.",
|
||||
"ip" => ":attribute deve essere un indirizzo IP valido.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute deve essere minore di :max.",
|
||||
"file" => ":attribute non deve essere più grande di :max kilobytes.",
|
||||
"string" => ":attribute non può contenere più di :max caratteri.",
|
||||
"array" => ":attribute non può avere più di :max elementi.",
|
||||
),
|
||||
"mimes" => ":attribute deve essere del tipo: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute deve valere almeno :min.",
|
||||
"file" => ":attribute deve essere più grande di :min kilobytes.",
|
||||
"string" => ":attribute deve contenere almeno :min caratteri.",
|
||||
"array" => ":attribute deve avere almeno :min elementi.",
|
||||
),
|
||||
"not_in" => "Il valore selezionato per :attribute non è valido.",
|
||||
"numeric" => ":attribute deve essere un numero.",
|
||||
"regex" => "Il formato del campo :attribute non è valido.",
|
||||
"required" => ":attribute è richiesto.",
|
||||
"required_if" => "Il campo :attribute è richiesto quando :other è :value.",
|
||||
"required_with" => "Il campo :attribute è richiesto quando :values è presente.",
|
||||
"required_with_all" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "Il campo :attribute è richiesto quando :values non è presente.",
|
||||
"required_without_all" => "The :attribute field is required when none of :values are present.",
|
||||
"same" => ":attribute e :other devono coincidere.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute deve valere :size.",
|
||||
"file" => ":attribute deve essere grande :size kilobytes.",
|
||||
"string" => ":attribute deve contenere :size caratteri.",
|
||||
"array" => ":attribute deve contenere :size elementi.",
|
||||
),
|
||||
"unique" => ":attribute è stato già utilizzato.",
|
||||
"url" => ":attribute deve essere un URL.",
|
||||
|
||||
"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',
|
||||
"has_counter" => 'The value must contain {$counter}',
|
||||
"valid_contacts" => "All of the contacts must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(
|
||||
'attribute-name' => array(
|
||||
'rule-name' => 'custom-message',
|
||||
),
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
20
resources/lang/ja/pagination.php
Normal file
20
resources/lang/ja/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« 前へ',
|
||||
|
||||
'next' => '次へ »',
|
||||
|
||||
);
|
22
resources/lang/ja/passwords.php
Normal file
22
resources/lang/ja/passwords.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "パスワードは6文字以上必要です。またパスワードの確認と一致している必要があります。",
|
||||
"user" => "そのEメールアドレスのユーザは存在しません。",
|
||||
"token" => "このパスワード・リセット・トークンは正しくありません。",
|
||||
"sent" => "パスワードリセットのためのリンクをメールしました!",
|
||||
"reset" => "パスワードはリセットされました!",
|
||||
|
||||
];
|
24
resources/lang/ja/reminders.php
Normal file
24
resources/lang/ja/reminders.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "パスワードは6文字以上必要です。またパスワードの確認と一致している必要があります。",
|
||||
|
||||
"user" => "そのEメールアドレスのユーザは存在しません。",
|
||||
|
||||
"token" => "このパスワード・リセット・トークンは正しくありません。",
|
||||
|
||||
"sent" => "パスワードリマインダーが送信されました!",
|
||||
|
||||
);
|
2872
resources/lang/ja/texts.php
Normal file
2872
resources/lang/ja/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
106
resources/lang/ja/validation.php
Normal file
106
resources/lang/ja/validation.php
Normal file
@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| such as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute はmust be accepted.",
|
||||
"active_url" => ":attribute は正しいURLではありません。",
|
||||
"after" => ":attribute は:date以降の日付である必要があります。",
|
||||
"alpha" => ":attribute は半角英字のみ可能です。",
|
||||
"alpha_dash" => ":attribute は半角英数字およびハイフンのみ可能です。",
|
||||
"alpha_num" => ":attribute は半角英数字のみ可能です。",
|
||||
"array" => "The :attribute must be an array.",
|
||||
"before" => ":attribute は:date以前の日付である必要があります。",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute は :min - :max の範囲です。",
|
||||
"file" => ":attribute は :min - :max KBの範囲です。",
|
||||
"string" => ":attribute は :min - :max 文字の範囲です。",
|
||||
"array" => ":attribute は :min - :max 個の範囲です。",
|
||||
),
|
||||
"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" => ":attribute は:max 以下の必要があります。",
|
||||
"file" => ":attribute は:max KB以下の必要があります。",
|
||||
"string" => ":attribute は:max 文字以下の必要があります。",
|
||||
"array" => ":attribute は:max 個以下の必要があります。",
|
||||
),
|
||||
"mimes" => ":attribute は以下のファイル・タイプの必要があります。 :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute は:min 以上の必要があります。",
|
||||
"file" => ":attribute は:min KB以上の必要があります。",
|
||||
"string" => ":attribute は:min 文字以上の必要があります。",
|
||||
"array" => ":attribute は:min 個以上の必要があります。",
|
||||
),
|
||||
"not_in" => "選択された :attribute は正しくありません。",
|
||||
"numeric" => ":attribute は数値の必要があります。",
|
||||
"regex" => ":attribute のフォーマットが正しくありません。",
|
||||
"required" => ":attribute フィールドが必要です。",
|
||||
"required_if" => ":other が :valueの場合、:attribute フィールドが必要です。",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => ":attribute と :other が一致していません。",
|
||||
"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" => ":attribute は既に使われています。",
|
||||
"url" => ":attribute のフォーマットが正しくありません。",
|
||||
|
||||
"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",
|
||||
"has_counter" => "The value must contain {\$counter}",
|
||||
"valid_contacts" => "The contact must have either an email or name",
|
||||
"valid_invoice_items" => "The invoice exceeds the maximum amount",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
|
||||
);
|
19
resources/lang/lt/pagination.php
Normal file
19
resources/lang/lt/pagination.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Puslapiavimo kalbos eilutės
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Šios kalbos eilutės yra naudojamas puslapiavimo bibliotekos kurti
|
||||
| paprastas puslapiavimo nuorodas. Jūs galite laisvai keisti jas
|
||||
| į bet kokias kitas labiau tinkančias Jūsų programai.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Ankstesnis',
|
||||
'next' => 'Sekantis »',
|
||||
|
||||
];
|
21
resources/lang/lt/reminders.php
Normal file
21
resources/lang/lt/reminders.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Slaptažodžio priminimo kalbos eilutės
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Sekančios kalbos eilutės yra numatytos elutės, atitinkančios priežastims,
|
||||
| pateikiamoms slatažodžių tarpininko, kai nepavyksta slaptažodžio atnaujinimo
|
||||
| bandymas, tokioms kaip negaliojanti žymė ar neteisingas naujas slaptažodis..
|
||||
|
|
||||
*/
|
||||
|
||||
"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!",
|
||||
];
|
2872
resources/lang/lt/texts.php
Normal file
2872
resources/lang/lt/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
108
resources/lang/lt/validation.php
Normal file
108
resources/lang/lt/validation.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Patvirtinimo kalbos eilutės
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Sekančios kalbos eilutėse yra numatyti klaidos pranešimai naudojami
|
||||
| patvirtinimo klasėje. Kai kurios iš šių eilučių turi keletą versijų
|
||||
| tokių kaip dydžio taisyklės. Galite laisvai pataisyti bet kuriuos pranešimus.
|
||||
|
|
||||
*/
|
||||
|
||||
"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.",
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [],
|
||||
|
||||
];
|
17
resources/lang/mk_MK/auth.php
Normal file
17
resources/lang/mk_MK/auth.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
];
|
17
resources/lang/mk_MK/pagination.php
Normal file
17
resources/lang/mk_MK/pagination.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Назад',
|
||||
'next' => 'Напред »',
|
||||
];
|
20
resources/lang/mk_MK/passwords.php
Normal file
20
resources/lang/mk_MK/passwords.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Лозинката треба да биде најмалку шест карактери и да совпаѓа со потврдната лозинка.',
|
||||
'reset' => 'Password has been reset!',
|
||||
'sent' => 'Испратен емаил со инструкции за ресетирање на лозинка!',
|
||||
'token' => 'Невалиден токен за ресетирање на лозинката.',
|
||||
'user' => 'Не може да се пронајде корисник со таква емаил адреса.',
|
||||
];
|
2872
resources/lang/mk_MK/texts.php
Normal file
2872
resources/lang/mk_MK/texts.php
Normal file
File diff suppressed because it is too large
Load Diff
145
resources/lang/mk_MK/validation.php
Normal file
145
resources/lang/mk_MK/validation.php
Normal file
@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'Полето :attribute мора да биде прифатено.',
|
||||
'active_url' => 'Полето :attribute не е валиден URL.',
|
||||
'after' => 'Полето :attribute мора да биде датум после :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'Полето :attribute може да содржи само букви.',
|
||||
'alpha_dash' => 'Полето :attribute може да содржи само букви, цифри, долна црта и тире.',
|
||||
'alpha_num' => 'Полето :attribute може да содржи само букви и цифри.',
|
||||
'array' => 'Полето :attribute мора да биде низа.',
|
||||
'before' => 'Полето :attribute мора да биде датум пред :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Полето :attribute мора да биде помеѓу :min и :max.',
|
||||
'file' => 'Полето :attribute мора да биде помеѓу :min и :max килобајти.',
|
||||
'string' => 'Полето :attribute мора да биде помеѓу :min и :max карактери.',
|
||||
'array' => 'Полето :attribute мора да има помеѓу :min - :max карактери.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false',
|
||||
'confirmed' => 'Полето :attribute не е потврдено.',
|
||||
'date' => 'Полето :attribute не е валиден датум.',
|
||||
'date_format' => 'Полето :attribute не е во формат :format.',
|
||||
'different' => 'Полињата :attribute и :other треба да се различни.',
|
||||
'digits' => 'Полето :attribute треба да има :digits цифри.',
|
||||
'digits_between' => 'Полето :attribute треба да има помеѓу :min и :max цифри.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Полето :attribute не е во валиден формат.',
|
||||
'exists' => 'Избранато поле :attribute веќе постои.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'Полето :attribute е задолжително.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => 'Полето :attribute мора да биде слика.',
|
||||
'in' => 'Избраното поле :attribute е невалидно.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'Полето :attribute мора да биде цел број.',
|
||||
'ip' => 'Полето :attribute мора да биде IP адреса.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => 'Полето :attribute мора да биде помало од :max.',
|
||||
'file' => 'Полето :attribute мора да биде помало од :max килобајти.',
|
||||
'string' => 'Полето :attribute мора да има помалку од :max карактери.',
|
||||
'array' => 'Полето :attribute не може да има повеќе од :max карактери.',
|
||||
],
|
||||
'mimes' => 'Полето :attribute мора да биде фајл од типот: :values.',
|
||||
'mimetypes' => 'Полето :attribute мора да биде фајл од типот: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'Полето :attribute мора да биде минимум :min.',
|
||||
'file' => 'Полето :attribute мора да биде минимум :min килобајти.',
|
||||
'string' => 'Полето :attribute мора да има минимум :min карактери.',
|
||||
'array' => 'Полето :attribute мора да има минимум :min карактери.',
|
||||
],
|
||||
'not_in' => 'Избраното поле :attribute е невалидно.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'Полето :attribute мора да биде број.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Полето :attribute е во невалиден формат.',
|
||||
'required' => 'Полето :attribute е задолжително.',
|
||||
'required_if' => 'Полето :attribute е задолжително, кога :other е :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'Полето :attribute е задолжително, кога е внесено :values.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'Полето :attribute е задолжително, кога не е внесено :values.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'Полињата :attribute и :other треба да совпаѓаат.',
|
||||
'size' => [
|
||||
'numeric' => 'Полето :attribute мора да биде :size.',
|
||||
'file' => 'Полето :attribute мора да биде :size килобајти.',
|
||||
'string' => 'Полето :attribute мора да има :size карактери.',
|
||||
'array' => 'Полето :attribute мора да има :size карактери.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'Полето :attribute веќе постои.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'Полето :attribute не е во валиден формат.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
],
|
||||
];
|
20
resources/lang/nb_NO/pagination.php
Normal file
20
resources/lang/nb_NO/pagination.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Tilbake',
|
||||
|
||||
'next' => 'Neste »',
|
||||
|
||||
);
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user