first commit
This commit is contained in:
15
resources/lang/en-GB/accounts.php
Normal file
15
resources/lang/en-GB/accounts.php
Normal file
@@ -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',
|
||||
|
||||
];
|
||||
29
resources/lang/en-GB/auth.php
Normal file
29
resources/lang/en-GB/auth.php
Normal file
@@ -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.',
|
||||
|
||||
];
|
||||
36
resources/lang/en-GB/bills.php
Normal file
36
resources/lang/en-GB/bills.php
Normal file
@@ -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',
|
||||
],
|
||||
|
||||
];
|
||||
7
resources/lang/en-GB/categories.php
Normal file
7
resources/lang/en-GB/categories.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'All Categories',
|
||||
'all_types' => 'All Types'
|
||||
];
|
||||
13
resources/lang/en-GB/companies.php
Normal file
13
resources/lang/en-GB/companies.php
Normal file
@@ -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!',
|
||||
],
|
||||
|
||||
];
|
||||
9
resources/lang/en-GB/currencies.php
Normal file
9
resources/lang/en-GB/currencies.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'code' => 'Code',
|
||||
'rate' => 'Rate',
|
||||
'default' => 'Default Currency',
|
||||
|
||||
];
|
||||
5
resources/lang/en-GB/customer.php
Normal file
5
resources/lang/en-GB/customer.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'all' => 'All Customers',
|
||||
];
|
||||
24
resources/lang/en-GB/dashboard.php
Normal file
24
resources/lang/en-GB/dashboard.php
Normal file
@@ -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',
|
||||
|
||||
];
|
||||
17
resources/lang/en-GB/demo.php
Normal file
17
resources/lang/en-GB/demo.php
Normal file
@@ -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',
|
||||
|
||||
];
|
||||
9
resources/lang/en-GB/footer.php
Normal file
9
resources/lang/en-GB/footer.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'version' => 'Version',
|
||||
'powered' => 'Powered By Akaunting',
|
||||
'software' => 'Free Accounting Software',
|
||||
|
||||
];
|
||||
109
resources/lang/en-GB/general.php
Normal file
109
resources/lang/en-GB/general.php
Normal file
@@ -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...',
|
||||
],
|
||||
|
||||
];
|
||||
14
resources/lang/en-GB/header.php
Normal file
14
resources/lang/en-GB/header.php
Normal file
@@ -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'
|
||||
],
|
||||
|
||||
];
|
||||
45
resources/lang/en-GB/install.php
Normal file
45
resources/lang/en-GB/install.php
Normal file
@@ -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.',
|
||||
],
|
||||
|
||||
];
|
||||
37
resources/lang/en-GB/invoices.php
Normal file
37
resources/lang/en-GB/invoices.php
Normal file
@@ -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',
|
||||
],
|
||||
|
||||
];
|
||||
10
resources/lang/en-GB/items.php
Normal file
10
resources/lang/en-GB/items.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'quantities' => 'Quantity|Quantities',
|
||||
'sales_price' => 'Sale Price',
|
||||
'purchase_price' => 'Purchase Price',
|
||||
'sku' => 'SKU',
|
||||
|
||||
];
|
||||
17
resources/lang/en-GB/messages.php
Normal file
17
resources/lang/en-GB/messages.php
Normal file
@@ -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',
|
||||
],
|
||||
|
||||
];
|
||||
42
resources/lang/en-GB/modules.php
Normal file
42
resources/lang/en-GB/modules.php
Normal file
@@ -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',
|
||||
],
|
||||
];
|
||||
9
resources/lang/en-GB/pagination.php
Normal file
9
resources/lang/en-GB/pagination.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
'showing' => 'Showing :first to :last of :total :type',
|
||||
|
||||
];
|
||||
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 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.",
|
||||
|
||||
];
|
||||
11
resources/lang/en-GB/reports.php
Normal file
11
resources/lang/en-GB/reports.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'summary' => [
|
||||
'income' => 'Income Summary',
|
||||
'expense' => 'Expense Summary',
|
||||
'income_expense' => 'Income vs Expense',
|
||||
],
|
||||
|
||||
];
|
||||
7
resources/lang/en-GB/roles.php
Normal file
7
resources/lang/en-GB/roles.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'all' => 'All Roles',
|
||||
|
||||
];
|
||||
85
resources/lang/en-GB/settings.php
Normal file
85
resources/lang/en-GB/settings.php
Normal file
@@ -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',
|
||||
],
|
||||
|
||||
];
|
||||
8
resources/lang/en-GB/taxes.php
Normal file
8
resources/lang/en-GB/taxes.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'rate' => 'Rate',
|
||||
'rate_percent' => 'Rate (%)',
|
||||
|
||||
];
|
||||
8
resources/lang/en-GB/transfers.php
Normal file
8
resources/lang/en-GB/transfers.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'from_account' => 'From Account',
|
||||
'to_account' => 'To Account',
|
||||
|
||||
];
|
||||
12
resources/lang/en-GB/updates.php
Normal file
12
resources/lang/en-GB/updates.php
Normal file
@@ -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.',
|
||||
|
||||
];
|
||||
119
resources/lang/en-GB/validation.php
Normal file
119
resources/lang/en-GB/validation.php
Normal file
@@ -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' => [],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user