first commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'account_name' => 'Account Name',
|
||||
'number' => 'Number',
|
||||
'opening_balance' => 'Opening Balance',
|
||||
'current_balance' => 'Current Balance',
|
||||
'bank_name' => 'Bank Name',
|
||||
'bank_phone' => 'Bank Phone',
|
||||
'bank_address' => 'Bank Address',
|
||||
'default_account' => 'Default Account',
|
||||
'all' => 'All Accounts',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'profile' => 'Profile',
|
||||
'logout' => 'Logout',
|
||||
'login' => 'Login',
|
||||
'login_to' => 'Login to start your session',
|
||||
'remember_me' => 'Remember Me',
|
||||
'forgot_password' => 'I forgot my password',
|
||||
'reset_password' => 'Reset Password',
|
||||
'enter_email' => 'Enter Your Email Address',
|
||||
'current_email' => 'Current Email',
|
||||
'reset' => 'Reset',
|
||||
'never' => 'never',
|
||||
'password' => [
|
||||
'current' => 'Password',
|
||||
'current_confirm' => 'Password Confirmation',
|
||||
'new' => 'New Password',
|
||||
'new_confirm' => 'New Password Confirmation',
|
||||
],
|
||||
'error' => [
|
||||
'self_delete' => 'Error: Can not delete yourself!'
|
||||
],
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'bill_number' => 'Bill Number',
|
||||
'bill_date' => 'Bill Date',
|
||||
'total_price' => 'Total Price',
|
||||
'due_date' => 'Due Date',
|
||||
'order_number' => 'Order Number',
|
||||
'bill_from' => 'Bill From',
|
||||
|
||||
'quantity' => 'Quantity',
|
||||
'price' => 'Price',
|
||||
'sub_total' => 'Subtotal',
|
||||
'tax_total' => 'Tax Total',
|
||||
'total' => 'Total',
|
||||
|
||||
'item_name' => 'Item Name|Item Names',
|
||||
|
||||
'payment_due' => 'Payment Due',
|
||||
'amount_due' => 'Amount Due',
|
||||
'paid' => 'Paid',
|
||||
'histories' => 'Histories',
|
||||
'payments' => 'Payments',
|
||||
'add_payment' => 'Add Payment',
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
|
||||
'status' => [
|
||||
'new' => 'New',
|
||||
'updated' => 'Updated',
|
||||
'partial' => 'Partial',
|
||||
'paid' => 'Paid',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'All Categories',
|
||||
'all_types' => 'All Types'
|
||||
];
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'domain' => 'Domain',
|
||||
'logo' => 'Logo',
|
||||
'manage' => 'Manage Companies',
|
||||
'all' => 'All Companies',
|
||||
'error' => [
|
||||
'delete_active' => 'Error: Can not delete active company, please, change it first!',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'code' => 'Code',
|
||||
'rate' => 'Rate',
|
||||
'default' => 'Default Currency',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'All Customers',
|
||||
];
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'total_incomes' => 'Total Incomes',
|
||||
'receivables' => 'Receivables',
|
||||
'open_invoices' => 'Open Invoices',
|
||||
'overdue_invoices' => 'Overdue Invoices',
|
||||
'total_expenses' => 'Total Expenses',
|
||||
'payables' => 'Payables',
|
||||
'open_bills' => 'Open Bills',
|
||||
'overdue_bills' => 'Overdue Bills',
|
||||
'total_profit' => 'Total Profit',
|
||||
'open_profit' => 'Open Profit',
|
||||
'overdue_profit' => 'Overdue Profit',
|
||||
'cash_flow' => 'Cash Flow',
|
||||
'no_profit_loss' => 'No Profit Loss',
|
||||
'incomes_by_category' => 'Incomes By Category',
|
||||
'expenses_by_category' => 'Expenses By Category',
|
||||
'account_balance' => 'Account Balance',
|
||||
'latest_incomes' => 'Latest Incomes',
|
||||
'latest_expenses' => 'Latest Expenses',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'accounts_cash' => 'Cash',
|
||||
'categories_uncat' => 'Uncategorised',
|
||||
'categories_deposit' => 'Deposit',
|
||||
'categories_sales' => 'Sales',
|
||||
'currencies_usd' => 'US Dollar',
|
||||
'currencies_eur' => 'Euro',
|
||||
'currencies_gbp' => 'British Pound',
|
||||
'currencies_try' => 'Turkish Lira',
|
||||
'taxes_exempt' => 'Tax Exempt',
|
||||
'taxes_normal' => 'Normal',
|
||||
'taxes_sales' => 'Sales Tax',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'version' => 'Version',
|
||||
'powered' => 'Powered By Akaunting',
|
||||
'software' => 'Free Accounting Software',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,109 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'items' => 'Item|Items',
|
||||
'incomes' => 'Income|Incomes',
|
||||
'invoices' => 'Invoice|Invoices',
|
||||
'revenues' => 'Revenue|Revenues',
|
||||
'customers' => 'Customer|Customers',
|
||||
'expenses' => 'Expense|Expenses',
|
||||
'bills' => 'Bill|Bills',
|
||||
'payments' => 'Payment|Payments',
|
||||
'vendors' => 'Vendor|Vendors',
|
||||
'accounts' => 'Account|Accounts',
|
||||
'transfers' => 'Transfer|Transfers',
|
||||
'transactions' => 'Transaction|Transactions',
|
||||
'reports' => 'Report|Reports',
|
||||
'settings' => 'Setting|Settings',
|
||||
'categories' => 'Category|Categories',
|
||||
'currencies' => 'Currency|Currencies',
|
||||
'tax_rates' => 'Tax Rate|Tax Rates',
|
||||
'users' => 'User|Users',
|
||||
'roles' => 'Role|Roles',
|
||||
'permissions' => 'Permission|Permissions',
|
||||
'modules' => 'App|Apps',
|
||||
'companies' => 'Company|Companies',
|
||||
'profits' => 'Profit|Profits',
|
||||
'taxes' => 'Tax|Taxes',
|
||||
'pictures' => 'Picture|Pictures',
|
||||
'types' => 'Type|Types',
|
||||
'payment_methods' => 'Payment Method|Payment Methods',
|
||||
'compares' => 'Income vs Expense|Incomes vs Expenses',
|
||||
'notes' => 'Note|Notes',
|
||||
'totals' => 'Total|Totals',
|
||||
'languages' => 'Language|Languages',
|
||||
'updates' => 'Update|Updates',
|
||||
'numbers' => 'Number|Numbers',
|
||||
|
||||
'dashboard' => 'Dashboard',
|
||||
'banking' => 'Banking',
|
||||
'general' => 'General',
|
||||
'no_records' => 'No records.',
|
||||
'date' => 'Date',
|
||||
'amount' => 'Amount',
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'na' => 'N/A',
|
||||
'daily' => 'Daily',
|
||||
'monthly' => 'Monthly',
|
||||
'yearly' => 'Yearly',
|
||||
'add' => 'Add',
|
||||
'add_new' => 'Add New',
|
||||
'show' => 'Show',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'send' => 'Send',
|
||||
'download' => 'Download',
|
||||
'delete_confirm' => 'Confirm delete :name :type?',
|
||||
'name' => 'Name',
|
||||
'email' => 'Email',
|
||||
'tax_number' => 'Tax Number',
|
||||
'phone' => 'Phone',
|
||||
'address' => 'Address',
|
||||
'website' => 'Website',
|
||||
'actions' => 'Actions',
|
||||
'description' => 'Description',
|
||||
'manage' => 'Manage',
|
||||
'code' => 'Code',
|
||||
'alias' => 'Alias',
|
||||
'balance' => 'Balance',
|
||||
'reference' => 'Reference',
|
||||
'attachment' => 'Attachment',
|
||||
'change' => 'Change',
|
||||
'color' => 'Colour',
|
||||
'save' => 'Save',
|
||||
'cancel' => 'Cancel',
|
||||
'status' => 'Status',
|
||||
'from' => 'From',
|
||||
'to' => 'To',
|
||||
'print' => 'Print',
|
||||
'search' => 'Search',
|
||||
'search_placeholder' => 'Type to search..',
|
||||
'filter' => 'Filter',
|
||||
'create_user' => 'Create User',
|
||||
'created_user' => 'Created User',
|
||||
'all_statuses' => 'All Statuses',
|
||||
'bank' => 'Bank Transfer',
|
||||
'cash' => 'Cash',
|
||||
'paypal' => 'PayPal',
|
||||
'help' => 'Help',
|
||||
'all' => 'All',
|
||||
'upcoming' => 'Upcoming',
|
||||
|
||||
'title' => [
|
||||
'new' => 'New :type',
|
||||
'edit' => 'Edit :type',
|
||||
],
|
||||
'form' => [
|
||||
'enter' => 'Enter :field',
|
||||
'select' => [
|
||||
'field' => '- Select :field -',
|
||||
'file' => 'Select File',
|
||||
],
|
||||
'no_file_selected' => 'No file selected...',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'change_language' => 'Change Language',
|
||||
'last_login' => 'Last login :time',
|
||||
'notifications' => [
|
||||
'counter' => '{0} You have no notification|{1} You have :count notification|[2,*] You have :count notifications',
|
||||
'overdue_invoices' => '{1} :count overdue invoice|[2,*] :count overdue invoices',
|
||||
'upcoming_bills' => '{1} :count upcoming bill|[2,*] :count upcoming bills',
|
||||
'view_all' => 'View All'
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'next' => 'Next',
|
||||
'refresh' => 'Refresh',
|
||||
|
||||
'steps' => [
|
||||
'requirements' => 'Please, meet the following requirements!',
|
||||
'language' => 'Step 1/3 : Language Selection',
|
||||
'database' => 'Step 2/3 : Database Setup',
|
||||
'settings' => 'Step 3/3 : Company and Admin Details',
|
||||
],
|
||||
|
||||
'language' => [
|
||||
'select' => 'Select Language',
|
||||
],
|
||||
|
||||
'requirements' => [
|
||||
'php_version' => 'PHP 5.6.4 or above needs to be used!',
|
||||
'enabled' => ':feature needs to be enabled!',
|
||||
'disabled' => ':feature needs to be disabled!',
|
||||
'extension' => ':extension extension needs to be loaded!',
|
||||
'directory' => ':directory directory needs to be writable!',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'hostname' => 'Hostname',
|
||||
'username' => 'Username',
|
||||
'password' => 'Password',
|
||||
'name' => 'Database',
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
'company_name' => 'Company Name',
|
||||
'company_email' => 'Company Email',
|
||||
'admin_email' => 'Admin Email',
|
||||
'admin_password' => 'Admin Password',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'connection' => 'Error: Could not connect to the database! Please, make sure the details are correct.',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'invoice_number' => 'Invoice Number',
|
||||
'invoice_date' => 'Invoice Date',
|
||||
'total_price' => 'Total Price',
|
||||
'due_date' => 'Due Date',
|
||||
'order_number' => 'Order Number',
|
||||
'bill_to' => 'Bill To',
|
||||
|
||||
'quantity' => 'Quantity',
|
||||
'price' => 'Price',
|
||||
'sub_total' => 'Subtotal',
|
||||
'tax_total' => 'Tax Total',
|
||||
'total' => 'Total',
|
||||
|
||||
'item_name' => 'Item Name|Item Names',
|
||||
|
||||
'payment_due' => 'Payment Due',
|
||||
'paid' => 'Paid',
|
||||
'histories' => 'Histories',
|
||||
'payments' => 'Payments',
|
||||
'add_payment' => 'Add Payment',
|
||||
'download_pdf' => 'Download PDF',
|
||||
'send_mail' => 'Send Email',
|
||||
|
||||
'status' => [
|
||||
'draft' => 'Draft',
|
||||
'sent' => 'Sent',
|
||||
'viewed' => 'Viewed',
|
||||
'approved' => 'Approved',
|
||||
'partial' => 'Partial',
|
||||
'paid' => 'Paid',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'quantities' => 'Quantity|Quantities',
|
||||
'sales_price' => 'Sale Price',
|
||||
'purchase_price' => 'Purchase Price',
|
||||
'sku' => 'SKU',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'success' => [
|
||||
'added' => ':type added!',
|
||||
'updated' => ':type updated!',
|
||||
'deleted' => ':type deleted!',
|
||||
],
|
||||
'error' => [
|
||||
'not_user_company' => 'Error: You are not allowed to manage this company!',
|
||||
],
|
||||
'warning' => [
|
||||
'deleted' => 'Warning: You are not delete :type. Because it has :text',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'api_token' => 'Token',
|
||||
'enter_api_token' => 'Enter your API token',
|
||||
'top_paid' => 'Top Paid',
|
||||
'new' => 'New',
|
||||
'top_free' => 'Top Free',
|
||||
'free' => 'FREE',
|
||||
'install' => 'Install',
|
||||
'buy_now' => 'Buy Now',
|
||||
'faq' => 'FAQ',
|
||||
'changelog' => 'Changelog',
|
||||
'installed' => 'Changelog',
|
||||
'uninstalled' => 'Changelog',
|
||||
|
||||
'enabled' => ':module module enabled',
|
||||
'disabled' => ':module module disabled',
|
||||
|
||||
'installation' => [
|
||||
'header' => 'Module Installation',
|
||||
'start' => ':module installing.',
|
||||
'download' => 'Downloading :module file.',
|
||||
'unzip' => 'Extracting :module files.',
|
||||
'install' => 'Uploading :module files.',
|
||||
],
|
||||
|
||||
'history' => [
|
||||
'installed' => ':module installed',
|
||||
'uninstalled' => ':module uninstall',
|
||||
'updated' => ':module updated',
|
||||
'enabled' => ':module enabled',
|
||||
'disabled' => ':module disabled',
|
||||
],
|
||||
|
||||
'button' => [
|
||||
'uninstall' => 'Uninstall',
|
||||
'disable' => 'Disable',
|
||||
'enable' => 'Enable',
|
||||
],
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
'showing' => 'Showing :first to :last of :total :type',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset 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.',
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset link!',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'summary' => [
|
||||
'income' => 'Income Summary',
|
||||
'expense' => 'Expense Summary',
|
||||
'income_expense' => 'Income vs Expense',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'All Roles',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'company' => [
|
||||
'name' => 'Name',
|
||||
'email' => 'Email',
|
||||
'phone' => 'Phone',
|
||||
'address' => 'Address',
|
||||
'logo' => 'Logo',
|
||||
],
|
||||
'localisation' => [
|
||||
'tab' => 'Localisation',
|
||||
'date' => [
|
||||
'format' => 'Date Format',
|
||||
'separator' => 'Date Separator',
|
||||
'dash' => 'Dash (-)',
|
||||
'dot' => 'Dot (.)',
|
||||
'comma' => 'Comma (,)',
|
||||
'slash' => 'Slash (/)',
|
||||
'space' => 'Space ( )',
|
||||
],
|
||||
'timezone' => 'Time Zone',
|
||||
],
|
||||
'invoice' => [
|
||||
'tab' => 'Invoice',
|
||||
'prefix' => 'Invoice Prefix',
|
||||
'digit' => 'Invoice Number Digit',
|
||||
'start' => 'Invoice Start Number',
|
||||
'logo' => 'Invoice Logo',
|
||||
],
|
||||
'default' => [
|
||||
'tab' => 'Defaults',
|
||||
'account' => 'Default Account',
|
||||
'currency' => 'Default Currency',
|
||||
'tax' => 'Default Tax Rate',
|
||||
'payment' => 'Default Payment Method',
|
||||
'language' => 'Default Language',
|
||||
],
|
||||
'email' => [
|
||||
'protocol' => 'Protocol',
|
||||
'php' => 'PHP Mail',
|
||||
'smtp' => [
|
||||
'name' => 'SMTP',
|
||||
'host' => 'SMTP Host',
|
||||
'port' => 'SMTP Port',
|
||||
'username' => 'SMTP Username',
|
||||
'password' => 'SMTP Password',
|
||||
'encryption' => 'SMTP Security',
|
||||
'none' => 'None',
|
||||
],
|
||||
'sendmail' => 'Sendmail',
|
||||
'sendmail_path' => 'Sendmail Path',
|
||||
'log' => 'Log Emails',
|
||||
],
|
||||
'scheduling' => [
|
||||
'tab' => 'Scheduling',
|
||||
'send_invoice' => 'Send Invoice Reminder',
|
||||
'invoice_days' => 'Send After Due Days',
|
||||
'send_bill' => 'Send Bill Reminder',
|
||||
'bill_days' => 'Send Before Due Days',
|
||||
'cron_command' => 'Cron Command',
|
||||
'schedule_time' => 'Hour To Run',
|
||||
],
|
||||
'appearance' => [
|
||||
'tab' => 'Appearance',
|
||||
'theme' => 'Theme',
|
||||
'light' => 'Light',
|
||||
'dark' => 'Dark',
|
||||
'list_limit' => 'Records Per Page',
|
||||
'use_gravatar' => 'Use Gravatar',
|
||||
],
|
||||
'system' => [
|
||||
'tab' => 'System',
|
||||
'session' => [
|
||||
'lifetime' => 'Session Lifetime (Minutes)',
|
||||
'handler' => 'Session Handler',
|
||||
'file' => 'File',
|
||||
'database' => 'Database',
|
||||
],
|
||||
'file_size' => 'Max File Size (MB)',
|
||||
'file_types' => 'Allowed File Types',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'rate' => 'Rate',
|
||||
'rate_percent' => 'Rate (%)',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'from_account' => 'From Account',
|
||||
'to_account' => 'To Account',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'installed_version' => 'Installed Version',
|
||||
'latest_version' => 'Latest Version',
|
||||
'update' => 'Update Akaunting to :version version',
|
||||
'changelog' => 'Changelog',
|
||||
'new_core' => 'An updated version of Akaunting is available.',
|
||||
'latest_core' => 'Congratulations! You have the latest version of Akaunting. Future security updates will be applied automatically.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,119 @@
|
||||
<?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' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :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.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'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.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'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.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'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.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'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.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'account_name' => 'Hesap İsmi',
|
||||
'number' => 'Numara',
|
||||
'opening_balance' => 'Açılış Bakiyesi',
|
||||
'current_balance' => 'Mevcut Bakiye',
|
||||
'bank_name' => 'Banka İsmi',
|
||||
'bank_phone' => 'Banka Telefonu',
|
||||
'bank_address' => 'Banka Adresi',
|
||||
'default_account' => 'Varsayılan Hesap',
|
||||
'all' => 'Tüm Hesaplar'
|
||||
|
||||
];
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'profile' => 'Profil',
|
||||
'logout' => 'Çıkış',
|
||||
'login' => 'Giriş',
|
||||
'login_to' => 'Oturum açmak için giriş yapınız',
|
||||
'remember_me' => 'Beni Hatırla',
|
||||
'forgot_password' => 'Şifremi unuttum',
|
||||
'reset_password' => 'Şifremi Sıfırla',
|
||||
'enter_email' => 'Email Adresinizi Giriniz',
|
||||
'current_email' => 'Current Email',
|
||||
'reset' => 'Sıfırla',
|
||||
'never' => 'hiçbir zaman',
|
||||
|
||||
'password' => [
|
||||
'current' => 'Şifre',
|
||||
'current_confirm' => 'Şifre Onayı',
|
||||
'new' => 'Yeni Şifre',
|
||||
'new_confirm' => 'Yeni Şifre Onayı',
|
||||
],
|
||||
'error' => [
|
||||
'self_delete' => 'Hata: Kendinizi silemezsiniz!'
|
||||
],
|
||||
|
||||
'failed' => 'Bu kullanıcı bilgileri, bizim verilerimizle eşleşmiyor.',
|
||||
'throttle' => 'Çok fazla oturum açma girişimi. Lütfen :seconds saniye içinde tekrar deneyin.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'bill_number' => 'Fatura Numarası',
|
||||
'bill_date' => 'Fatura Tarihi',
|
||||
'total_price' => 'Toplam Tutar',
|
||||
'due_date' => 'Vade Tarihi',
|
||||
'order_number' => 'Sipariş Numarası',
|
||||
|
||||
'payment_due' => 'Son Ödeme Tarihi',
|
||||
'amount_due' => 'Ödenecek Miktar',
|
||||
'paid' => 'Ödenmiş',
|
||||
'quantity' => 'Adet',
|
||||
'total' => 'Toplam',
|
||||
'sub_total' => 'Ara Toplam',
|
||||
'tax_total' => 'Vergi Toplamı',
|
||||
|
||||
'add_payment' => 'Ödeme Ekle',
|
||||
'download_pdf' => 'PDF İndir',
|
||||
'send_mail' => 'Email Gönder',
|
||||
'histories' => 'Geçmiş',
|
||||
'payments' => 'Ödemeler',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'Tüm Kategoriler',
|
||||
'all_types' => 'Tümü'
|
||||
];
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'domain' => 'Alan Adı',
|
||||
'logo' => 'Logo',
|
||||
'manage' => 'Şirketleri Yönet',
|
||||
'all' => 'Tüm Şirketler',
|
||||
'error' => [
|
||||
'delete_active' => 'Hata: Etkin şirketi silemezsiniz, önce değiştirin lütfen!',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'code' => 'Kod',
|
||||
'rate' => 'Kur',
|
||||
'default' => 'Varsayılan Para Birimi',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'Tüm Müşteriler',
|
||||
];
|
||||
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'total_incomes' => 'Toplam Gelir',
|
||||
'receivables' => 'Alacak',
|
||||
'open_invoices' => 'Açık Faturalar',
|
||||
'overdue_invoices' => 'Gecikmiş Faturalar',
|
||||
'total_expenses' => 'Toplam Gider',
|
||||
'payables' => 'Verecek',
|
||||
'open_bills' => 'Açık Faturalar',
|
||||
'overdue_bills' => 'Gecikmiş Faturalar',
|
||||
'total_profit' => 'Toplam Kar',
|
||||
'open_profit' => 'Açık Kar',
|
||||
'overdue_profit' => 'Gecikmiş Kar',
|
||||
'cash_flow' => 'Nakit Akışı',
|
||||
'no_profit_loss' => 'No Profit Loss',
|
||||
'incomes_by_category' => 'Gelir Kategorileri',
|
||||
'expenses_by_category' => 'Gider Kategorileri',
|
||||
'account_balance' => 'Hesap Bakiyesi',
|
||||
'latest_incomes' => 'Son Gelirler',
|
||||
'latest_expenses' => 'Son Giderler',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'accounts_cash' => 'Kasa',
|
||||
'categories_uncat' => 'Kategorize edilmemiş',
|
||||
'categories_deposit' => 'Depozito',
|
||||
'categories_sales' => 'Satış',
|
||||
'currencies_usd' => 'Amerikan Doları',
|
||||
'currencies_eur' => 'Avro',
|
||||
'currencies_gbp' => 'İngiliz Sterlini',
|
||||
'currencies_try' => 'Türk Lirası',
|
||||
'taxes_exempt' => 'Muaf',
|
||||
'taxes_normal' => 'Normal',
|
||||
'taxes_sales' => 'Satış',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'version' => 'Sürüm',
|
||||
'powered' => 'Altyapı Akaunting',
|
||||
'software' => 'Ücretsiz Ön Muhasebe Programı',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'items' => 'Ürün / Hizmet|Ürünler / Hizmetler',
|
||||
'incomes' => 'Gelir|Gelirler',
|
||||
'invoices' => 'Fatura|Faturalar',
|
||||
'revenues' => 'Tahsilat|Tahsilatlar',
|
||||
'customers' => 'Müşteri|Müşteriler',
|
||||
'expenses' => 'Gider|Giderler',
|
||||
'bills' => 'Fatura|Faturalar',
|
||||
'payments' => 'Ödeme|Ödemeler',
|
||||
'vendors' => 'Tedarikçi|Tedarikçiler',
|
||||
'accounts' => 'Hesap|Hesaplar',
|
||||
'transfers' => 'Transfer|Transferler',
|
||||
'transactions' => 'İşlem|İşlemler',
|
||||
'reports' => 'Rapor|Raporlar',
|
||||
'settings' => 'Ayar|Ayarlar',
|
||||
'categories' => 'Kategori|Kategoriler',
|
||||
'currencies' => 'Para Birimi|Para Birimleri',
|
||||
'tax_rates' => 'Vergi Oranı|Vergi Oranları',
|
||||
'users' => 'Kullanıcı|Kullanıcılar',
|
||||
'roles' => 'Görev|Görevler',
|
||||
'permissions' => 'İzin|İzinler',
|
||||
'modules' => 'Uygulama|Uygulamalar',
|
||||
'companies' => 'Şirket|Şirketler',
|
||||
'profits' => 'Kar|Kar',
|
||||
'taxes' => 'Vergi Oranı|Vergi Oranları',
|
||||
'pictures' => 'Resim|Resimler',
|
||||
'types' => 'Tip|Tipler',
|
||||
'payment_methods' => 'Ödeme Yöntemi|Ödeme Yöntemleri',
|
||||
'compares' => 'Income vs Expense|Incomes vs Expenses',
|
||||
'notes' => 'Açıklama|Açıklamalar',
|
||||
'totals' => 'Toplam|Toplamlar',
|
||||
'languages' => 'Dil|Diller',
|
||||
'updates' => 'Güncelleme|Güncellemeler',
|
||||
'numbers' => 'Sayı|Sayılar',
|
||||
|
||||
'dashboard' => 'Kontrol Paneli',
|
||||
'banking' => 'Banka',
|
||||
'general' => 'Genel',
|
||||
'no_records' => 'Kayıt yok.',
|
||||
'date' => 'Tarih',
|
||||
'amount' => 'Tutar',
|
||||
'enabled' => 'Etkin',
|
||||
'disabled' => 'Devredışı',
|
||||
'yes' => 'Evet',
|
||||
'no' => 'Hayır',
|
||||
'na' => '- Yok -',
|
||||
'daily' => 'Günlük',
|
||||
'monthly' => 'Aylık',
|
||||
'yearly' => 'Yıllık',
|
||||
'add_new' => 'Yeni Ekle',
|
||||
'edit' => 'Düzenle',
|
||||
'delete' => 'Sil',
|
||||
'delete_confirm' => ':name :type silinsin mi?',
|
||||
'name' => 'İsim',
|
||||
'email' => 'Email',
|
||||
'phone' => 'Telefon',
|
||||
'address' => 'Adres',
|
||||
'website' => 'Website',
|
||||
'actions' => 'Eylem',
|
||||
'description' => 'Açıklama',
|
||||
'manage' => 'Yönet',
|
||||
'code' => 'Kod',
|
||||
'alias' => 'Rumuz',
|
||||
'balance' => 'Bakiye',
|
||||
'reference' => 'Referans',
|
||||
'attachment' => 'Dosya',
|
||||
'change' => 'Değiştir',
|
||||
'color' => 'Renk',
|
||||
'save' => 'Kaydet',
|
||||
'cancel' => 'İptal',
|
||||
'send' => 'Gönder',
|
||||
'status' => 'Durum',
|
||||
'filter' => 'Filtrele',
|
||||
'search' => 'Ara',
|
||||
'search_placeholder' => 'Aranacak kelime..',
|
||||
'show' => 'Göster',
|
||||
'all_statuses' => 'Tümü',
|
||||
'from' => 'Tarafından',
|
||||
'to' => 'Tarafına',
|
||||
'bank' => 'Banka Transferi',
|
||||
'cash' => 'Nakit',
|
||||
'paypal' => 'PayPal',
|
||||
'help' => 'Yardım',
|
||||
'all' => 'Hepsi',
|
||||
'upcoming' => 'Gelecek',
|
||||
|
||||
'title' => [
|
||||
'new' => 'Yeni :type',
|
||||
'edit' => ':type Düzenle',
|
||||
],
|
||||
'form' => [
|
||||
'enter' => ':field Girin',
|
||||
'select' => [
|
||||
'field' => '- :field Seçin -',
|
||||
'file' => 'Dosya Seçin',
|
||||
],
|
||||
'no_file_selected' => 'Dosya seçilmemiş...',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'change_language' => 'Dil Değiştir',
|
||||
'last_login' => 'Son giriş :time',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'next' => 'İleri',
|
||||
|
||||
'steps' => [
|
||||
'requirements' => 'Lütfen, aşağıdaki sistem gereksinimlerini karşılayın!',
|
||||
'language' => 'Adım 1/3 : Dil Seçimi',
|
||||
'database' => 'Adım 2/3 : Veritabanı Ayarları',
|
||||
'settings' => 'Adım 3/3 : Şirket ve Yönetici Bilgileri',
|
||||
],
|
||||
|
||||
'language' => [
|
||||
'select' => 'Dil Seçin',
|
||||
],
|
||||
|
||||
'requirements' => [
|
||||
'php_version' => 'PHP sürümünüz 5.6.4 veya üstü olmalıdır!',
|
||||
'enabled' => ':feature etkin olmalıdır!',
|
||||
'disabled' => ':feature devre dışı bırakılmalıdır!',
|
||||
'extension' => ':extension eklentisi yüklenmelidir!',
|
||||
'directory' => ':directory dizini yazılabilir olmalıdır!',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'hostname' => 'Sunucu',
|
||||
'username' => 'Kullanıcı',
|
||||
'password' => 'Şifre',
|
||||
'name' => 'Veritabanı',
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
'company_name' => 'Şirket Adı',
|
||||
'company_email' => 'Şirket e-Postası',
|
||||
'admin_email' => 'Yönetici e-Postası',
|
||||
'admin_password' => 'Yönetici Şifresi',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'connection' => 'Hata: Veritabanına bağlanamıyoruz! Lütfen veritabanı bilgilerini kontrol ediniz.',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'invoice_number' => 'Fatura Numarası',
|
||||
'order_number' => 'Sipariş Numarası',
|
||||
'invoice_date' => 'Fatura Tarihi',
|
||||
'due_date' => 'Vade Tarihi',
|
||||
'payment_due' => 'Son Ödeme Tarihi',
|
||||
'total_price' => 'Toplam Tutar',
|
||||
'quantity' => 'Adet',
|
||||
'total' => 'Toplam',
|
||||
'sub_total' => 'Ara Toplam',
|
||||
'tax_total' => 'Vergi Toplamı',
|
||||
|
||||
'paid' => 'Ödenmiş',
|
||||
'histories' => 'Geçmiş',
|
||||
'payments' => 'Ödemeler',
|
||||
'add_payment' => 'Ödeme Ekle',
|
||||
'download_pdf' => 'PDF İndir',
|
||||
'send_mail' => 'Email Gönder',
|
||||
];
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'quantities' => 'Adet|Adetler',
|
||||
'sales_price' => 'Satış Fiyatı',
|
||||
'purchase_price' => 'Alış Fiyatı',
|
||||
'sku' => 'Ürün Kodu',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'success' => [
|
||||
'added' => ':type eklendi!',
|
||||
'updated' => ':type güncellendi!',
|
||||
'deleted' => ':type silindi!',
|
||||
],
|
||||
'error' => [
|
||||
'not_user_company' => 'Hata: Bu şirketi yönetme yetkiniz yok!',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'previous' => '« Önceki',
|
||||
'next' => 'Sonraki »',
|
||||
'showing' => ':total kayıttan :first ile :last arasındaki kayıtlar gösteriliyor',
|
||||
|
||||
];
|
||||
@@ -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' => 'Şifreler en az altı karakter olmalı ve onay ile eşleşmelidir.',
|
||||
'reset' => 'Şifreniz sıfırlandı!',
|
||||
'sent' => 'Şifre sıfırlama bağlantınızı size e-posta ile gönderdik!',
|
||||
'token' => 'Şifre sıfırlama adresi/kodu geçersiz.',
|
||||
'user' => 'Bu e-posta adresi ile kayıtlı bir üye bulunmuyor.',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'summary' => [
|
||||
'income' => 'Gelir Özeti',
|
||||
'expense' => 'Gelir Özeti',
|
||||
'income_expense' => 'Gelir Gider Dengesi',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'Tüm Roller',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'company' => [
|
||||
'name' => 'Şirket İsmi',
|
||||
'email' => 'Şirket Emaili',
|
||||
'address' => 'Şirket Adresi',
|
||||
'logo' => 'Şirket Logosu',
|
||||
],
|
||||
'default' => [
|
||||
'tab' => 'Varsayılanlar',
|
||||
'account' => 'Varsayılan Hesap',
|
||||
'currency' => 'Varsayılan Para Birimi',
|
||||
'payment' => 'Varsayılan Ödeme Yöntemi',
|
||||
],
|
||||
'scheduling' => [
|
||||
'tab' => 'Scheduling',
|
||||
'send_invoice' => 'Gelir Faturası Hatırlat',
|
||||
'invoice_days' => 'Vade Gününden Sonra Gönder',
|
||||
'send_bill' => 'Gider Faturası Hatırlat',
|
||||
'bill_days' => 'Vade Gününden Önce Gönder',
|
||||
'cron_command' => 'Cron Komutu',
|
||||
'schedule_time' => 'Çalışma Saati',
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'rate' => 'Oran',
|
||||
'rate_percent' => 'Oran (%)',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'from_account' => 'Gönderen Hesap',
|
||||
'to_account' => 'Alan Hesap',
|
||||
|
||||
];
|
||||
@@ -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
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute kabul edilmelidir.',
|
||||
'active_url' => ':attribute geçerli bir URL olmalıdır.',
|
||||
'after' => ':attribute şundan daha eski bir tarih olmalıdır :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute sadece harflerden oluşmalıdır.',
|
||||
'alpha_dash' => ':attribute sadece harfler, rakamlar ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':attribute sadece harfler ve rakamlar içermelidir.',
|
||||
'array' => ':attribute dizi olmalıdır.',
|
||||
'before' => ':attribute şundan daha önceki bir tarih olmalıdır :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute :min - :max arasında olmalıdır.',
|
||||
'file' => ':attribute :min - :max arasındaki kilobayt değeri olmalıdır.',
|
||||
'string' => ':attribute :min - :max arasında karakterden oluşmalıdır.',
|
||||
'array' => ':attribute :min - :max arasında nesneye sahip olmalıdır.',
|
||||
],
|
||||
'boolean' => ':attribute sadece doğru veya yanlış olmalıdır.',
|
||||
'confirmed' => ':attribute tekrarı eşleşmiyor.',
|
||||
'date' => ':attribute geçerli bir tarih olmalıdır.',
|
||||
'date_format' => ':attribute :format biçimi ile eşleşmiyor.',
|
||||
'different' => ':attribute ile :other birbirinden farklı olmalıdır.',
|
||||
'digits' => ':attribute :digits rakam olmalıdır.',
|
||||
'digits_between' => ':attribute :min ile :max arasında rakam olmalıdır.',
|
||||
'dimensions' => ':attribute görsel ölçüleri geçersiz.',
|
||||
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
|
||||
'email' => ':attribute biçimi geçersiz.',
|
||||
'exists' => 'Seçili :attribute geçersiz.',
|
||||
'file' => ':attribute dosya olmalıdır.',
|
||||
'filled' => ':attribute alanı gereklidir.',
|
||||
'image' => ':attribute alanı resim dosyası olmalıdır.',
|
||||
'in' => ':attribute değeri geçersiz.',
|
||||
'in_array' => ':attribute alanı :other içinde mevcut değil.',
|
||||
'integer' => ':attribute tamsayı olmalıdır.',
|
||||
'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => ':attribute geçerli bir JSON değişkeni olmalıdır.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute değeri :max değerinden küçük olmalıdır.',
|
||||
'file' => ':attribute değeri :max kilobayt değerinden küçük olmalıdır.',
|
||||
'string' => ':attribute değeri :max karakter değerinden küçük olmalıdır.',
|
||||
'array' => ':attribute değeri :max adedinden az nesneye sahip olmalıdır.',
|
||||
],
|
||||
'mimes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'mimetypes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute değeri :min değerinden büyük olmalıdır.',
|
||||
'file' => ':attribute değeri :min kilobayt değerinden büyük olmalıdır.',
|
||||
'string' => ':attribute değeri :min karakter değerinden büyük olmalıdır.',
|
||||
'array' => ':attribute en az :min nesneye sahip olmalıdır.',
|
||||
],
|
||||
'not_in' => 'Seçili :attribute geçersiz.',
|
||||
'numeric' => ':attribute sayı olmalıdır.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute biçimi geçersiz.',
|
||||
'required' => ':attribute alanı gereklidir.',
|
||||
'required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute alanı :values varken zorunludur.',
|
||||
'required_with_all' => ':attribute alanı herhangi bir :values değeri varken zorunludur.',
|
||||
'required_without' => ':attribute alanı :values yokken zorunludur.',
|
||||
'required_without_all' => ':attribute alanı :values değerlerinden herhangi biri yokken zorunludur.',
|
||||
'same' => ':attribute ile :other eşleşmelidir.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute :size olmalıdır.',
|
||||
'file' => ':attribute :size kilobyte olmalıdır.',
|
||||
'string' => ':attribute :size karakter olmalıdır.',
|
||||
'array' => ':attribute :size nesneye sahip olmalıdır.',
|
||||
],
|
||||
'string' => ':attribute dizge olmalıdır.',
|
||||
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':attribute daha önceden kayıt edilmiş.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => ':attribute biçimi geçersiz.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [
|
||||
//
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user