Merge branch 'master' of github.com:akaunting/akaunting

This commit is contained in:
cuneytsenturk 2018-08-29 17:51:59 +03:00
commit ebf79a315c
52 changed files with 411 additions and 329 deletions

View File

@ -31,7 +31,7 @@ Akaunting uses [Laravel](http://laravel.com), the best existing PHP framework, a
## Docker ## Docker
It is possible to containerise Akaunting using the [`docker-compose`](docker-compose.yaml) file. Here are a few commands: It is possible to containerise Akaunting using the [`docker-compose`](docker-compose.yml) file. Here are a few commands:
``` ```
# Build the app # Build the app

View File

@ -81,7 +81,7 @@ class Accounts extends Controller
{ {
$currencies = Currency::enabled()->pluck('name', 'code'); $currencies = Currency::enabled()->pluck('name', 'code');
$account->default_account = ($account->id == setting('general.default_account')) ?: 1; $account->default_account = ($account->id == setting('general.default_account')) ? 1 : 0;
$currency = Currency::where('code', '=', $account->currency_code)->first(); $currency = Currency::where('code', '=', $account->currency_code)->first();

View File

@ -4,15 +4,15 @@ return [
'profile' => 'الملف الشخصي', 'profile' => 'الملف الشخصي',
'logout' => 'تسجيل خروج', 'logout' => 'تسجيل خروج',
'login' => 'تسجيل الدخول', 'login' => 'تسجيل دخول',
'login_to' => 'تسجيل الدخول لبدء جلسة العمل الخاصة بك', 'login_to' => 'تسجيل دخول لبدء جلسة العمل الخاصة بك',
'remember_me' => 'تذكرني', 'remember_me' => 'تذكرني',
'forgot_password' => 'نسيت كلمة المرور', 'forgot_password' => 'نسيت كلمة المرور',
'reset_password' => 'إعادة تعيين كلمة المرور', 'reset_password' => 'إعادة تعيين كلمة المرور',
'enter_email' => 'أدخل عنوان بريدك الإلكتروني', 'enter_email' => 'أدخل عنوان بريدك الإلكتروني',
'current_email' => 'البريد الإلكتروني الحالي', 'current_email' => 'البريد الإلكتروني الحالي',
'reset' => 'إعادة تعيين', 'reset' => 'إعادة تعيين',
'never' => 'أبدا', 'never' => 'أبداً',
'password' => [ 'password' => [
'current' => 'كلمة المرور', 'current' => 'كلمة المرور',
@ -23,16 +23,16 @@ return [
'error' => [ 'error' => [
'self_delete' => 'خطأ: لا يمكن حذف نفسك!', 'self_delete' => 'خطأ: لا يمكن حذف نفسك!',
'no_company' => 'Error: No company assigned to your account. Please, contact the system administrator.', 'no_company' => 'خطأ: لم يتم تعيين أية شركة إلى حسابك، من فضلك تواصل مع مسؤول النظام.',
], ],
'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.',
'disabled' => 'هذا الحساب غير مفعل. رجاءا, تواصل مع مدير النظام.', 'disabled' => 'هذا الحساب غير مفعّل. من فضلك تواصل مع مسؤول النظام.',
'throttle' => 'عدد كبير جدا من محاولات تسجيل الدخول. الرجاء إعادة المحاولة في غضون :seconds ثانية.', 'throttle' => 'عدد كبير جداً من محاولات تسجيل الدخول. يرجى إعادة المحاولة خلال :seconds ثواني.',
'notification' => [ 'notification' => [
'message_1' => 'You are receiving this email because we received a password reset request for your account.', 'message_1' => 'تم إرسال هذه الرسالة لإبلاغك بوجود طلب إعادة كلمة المرور على الحساب الخاص بك.',
'message_2' => 'If you did not request a password reset, no further action is required.', 'message_2' => 'لا داعي لاتخاذ أي إجراء إذا لم تقم بطلب إعادة كلمة المرور.',
'button' => 'إعادة تعيين كلمة المرور', 'button' => 'إعادة تعيين كلمة المرور',
], ],

View File

@ -4,33 +4,33 @@ 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' => 'المبلغ الاجمالى', 'sub_total' => 'المبلغ الإجمالي',
'discount' => 'Discount', 'discount' => 'خصم',
'tax_total' => 'اجمالى الضريبة', 'tax_total' => 'إجمالي الضريبة',
'total' => 'اجمالى', 'total' => 'المجموع',
'item_name' => 'اسم الصنف | اسماء الصنف', 'item_name' => 'اسم الصنف|أسماء الأصناف',
'show_discount' => ':discount% Discount', 'show_discount' => 'خصم :discount%',
'add_discount' => 'Add Discount', 'add_discount' => 'إضافة خصم',
'discount_desc' => 'of subtotal', 'discount_desc' => 'من المجموع الجزئي',
'payment_due' => 'استحقاق الدفع', 'payment_due' => 'استحقاق الدفع',
'amount_due' => 'استحقاق المبلغ', 'amount_due' => 'استحقاق المبلغ',
'paid' => 'مدفوع', 'paid' => 'مدفوع',
'histories' => 'سجلات', 'histories' => 'سجلات',
'payments' => 'المدفوعات', 'payments' => 'المدفوعات',
'add_payment' => 'اضافة مدفوعات', 'add_payment' => 'إضافة مدفوعات',
'mark_received' => ظليل كمستلم', 'mark_received' => حديد كمستلم',
'download_pdf' => 'تحميل PDF', 'download_pdf' => 'تحميل PDF',
'send_mail' => 'أرسال بريد الكتروني', 'send_mail' => 'إرسال بريد إلكتروني',
'status' => [ 'status' => [
'draft' => 'مسودة', 'draft' => 'مسودة',
@ -40,7 +40,7 @@ return [
], ],
'messages' => [ 'messages' => [
'received' => 'تم تحويل فاتورة الشراء الى فاتورة مستلمة بنجاح!', 'received' => 'تم تحويل فاتورة الشراء إلى فاتورة مستلمة بنجاح!',
], ],
]; ];

View File

@ -4,10 +4,10 @@ return [
'domain' => 'اسم النطاق', 'domain' => 'اسم النطاق',
'logo' => 'الشعار', 'logo' => 'الشعار',
'manage' => 'ادارة الشركات', 'manage' => 'إدارة الشركات',
'all' => 'كل الشركات', 'all' => 'كل الشركات',
'error' => [ 'error' => [
'delete_active' => 'خطأ: يمكن لا حذف شركة مفعلة، من فضلك، غيير حالة الشركة أولاً!', 'delete_active' => 'خطأ: لا يمكن حذف شركة مفعلة، من فضلك، غير حالة الشركة أولاً!',
], ],
]; ];

View File

@ -9,8 +9,8 @@ return [
'thousands_separator' => 'فاصل الآلاف', 'thousands_separator' => 'فاصل الآلاف',
'precision' => 'الدقة', 'precision' => 'الدقة',
'symbol' => [ 'symbol' => [
'symbol' => 'رمز', 'symbol' => 'الرمز',
'position' => 'مكان رمز', 'position' => 'مكان الرمز',
'before' => 'قبل القيمة', 'before' => 'قبل القيمة',
'after' => 'بعد القيمة', 'after' => 'بعد القيمة',
] ]

View File

@ -2,10 +2,10 @@
return [ return [
'allow_login' => 'السماح بتسجيل الدخول ؟', 'allow_login' => 'السماح بتسجيل الدخول؟',
'user_created' => 'انشاء المستخدم', 'user_created' => 'تم إنشاء المستخدم',
'error' => [ 'error' => [
'email' => 'هذا البريد الالكتروني مسجل بالفعل.' 'email' => 'البريد الإلكتروني مسجل مسبقاً.'
] ]
]; ];

View File

@ -2,23 +2,23 @@
return [ 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' => 'آخر المصروفات',
]; ];

View File

@ -3,13 +3,13 @@
return [ return [
'accounts_cash' => 'نقدي', 'accounts_cash' => 'نقدي',
'categories_deposit' => 'ايداع', 'categories_deposit' => 'إيداع',
'categories_sales' => 'بيع', 'categories_sales' => 'المبيعات',
'currencies_usd' => 'دولار امريكي', 'currencies_usd' => 'دولار أمريكي',
'currencies_eur' => 'يورو', 'currencies_eur' => 'يورو',
'currencies_gbp' => 'جنية استرليني', 'currencies_gbp' => 'جنيه استرليني',
'currencies_try' => 'ليرة تركي', 'currencies_try' => 'ليرة تركية',
'taxes_exempt' => 'الاعفاء الضريبي', 'taxes_exempt' => 'الإعفاء الضريبي',
'taxes_normal' => 'الضريبة العادية', 'taxes_normal' => 'الضريبة العادية',
'taxes_sales' => 'ضريبة المبيعات', 'taxes_sales' => 'ضريبة المبيعات',

View File

@ -2,8 +2,8 @@
return [ return [
'version' => 'اصدار', 'version' => 'إصدار',
'powered' => 'بواسطة أكاونتينج', 'powered' => 'بواسطة أكاونتينج',
'software' => 'برنامج محاسبى مجانى', 'software' => 'برنامج محاسبي مجاني',
]; ];

View File

@ -2,42 +2,42 @@
return [ return [
'items' => 'الصنف|أصناف', 'items' => 'الصنف|الأصناف',
'incomes' => 'إيراد|إيرادات', 'incomes' => 'إيراد|إيرادات',
'invoices' => 'فاتورة|فواتير', 'invoices' => 'الفاتورة|الفواتير',
'revenues' => 'الدخل|الدخل', 'revenues' => 'الدخل|الدخل',
'customers' => 'العميل|العملاء', 'customers' => 'العميل|العملاء',
'expenses' => 'المصروف|المصروفات', 'expenses' => 'المصروف|المصروفات',
'bills' => 'سند | سندات الإيصال', 'bills' => 'فاتورة الشراء|فواتير الشراء',
'payments' => 'دفع|مدفوعات', 'payments' => 'الدفع|المدفوعات',
'vendors' => 'المورد|الموردين', 'vendors' => 'المورد|الموردين',
'accounts' => 'حساب|حسابات', 'accounts' => 'الحساب|الحسابات',
'transfers' => 'تحويل|تحويلات', 'transfers' => 'التحويل|التحويلات',
'transactions' => 'عملية|عمليات', 'transactions' => 'العملية|العمليات',
'reports' => 'تقرير|تقارير', 'reports' => 'التقرير|التقارير',
'settings' => 'اعداد|اعدادات', 'settings' => 'الإعداد|الإعدادات',
'categories' => 'الفئة|الفئات', 'categories' => 'الفئة|الفئات',
'currencies' => 'عملة|عملات', 'currencies' => 'العملة|العملات',
'tax_rates' => 'معدل الضريبة|معدلات الضرائب', 'tax_rates' => 'معدل الضريبة|معدلات الضرائب',
'users' => 'مستخدم|مستخدمين', 'users' => 'المستخدم|المستخدمين',
'roles' => 'الوظيفة|الوظائف', 'roles' => 'الوظيفة|الوظائف',
'permissions' => 'تصريح|تصريحات', 'permissions' => 'الصلاحية|الصلاحيات',
'modules' => 'تطبيق|تطبيقات', 'modules' => 'التطبيق|التطبيقات',
'companies' => 'شركة|شركات', 'companies' => 'الشركة|الشركات',
'profits' => 'ربح|أرباح', 'profits' => 'الربح|الأرباح',
'taxes' => 'ضريبة|ضرائب', 'taxes' => 'الضريبة|الضرائب',
'logos' => 'الشعار', 'logos' => 'الشعار|الشعارات',
'pictures' => 'صورة|صور', 'pictures' => 'الصورة|الصور',
'types' => 'نوع|أنواع', 'types' => 'النوع|الأنواع',
'payment_methods' => 'طريقة الدفع|طرق الدفع', 'payment_methods' => 'طريقة الدفع|طرق الدفع',
'compares' => 'الإيراد مقابل المصروف|الإيرادات مقابل المصروفات', 'compares' => 'الإيراد مقابل المصروف|الإيرادات مقابل المصروفات',
'notes' => 'ملحوظة|ملاحظات', 'notes' => 'ملحوظة|الملاحظات',
'totals' => 'المجموع|الإجمالي', 'totals' => 'المجموع|المجاميع',
'languages' => 'لغة|لغات', 'languages' => 'اللغة|اللغات',
'updates' => 'تحديث|تحديثات', 'updates' => 'التحديث|التحديثات',
'numbers' => 'رقم|أرقام', 'numbers' => 'الرقم|الأرقام',
'statuses' => 'حالة|حالات', 'statuses' => 'الحالة|الحالات',
'others' => 'Other|Others', 'others' => 'الأخرى|الأخريات',
'dashboard' => 'لوحة التحكم', 'dashboard' => 'لوحة التحكم',
'banking' => 'الخدمات المصرفية', 'banking' => 'الخدمات المصرفية',
@ -46,28 +46,28 @@ return [
'date' => 'تاريخ', 'date' => 'تاريخ',
'amount' => 'المبلغ', 'amount' => 'المبلغ',
'enabled' => 'مفعل', 'enabled' => 'مفعل',
'disabled' => 'غير مفعل', 'disabled' => 'معطل',
'yes' => 'نعم', 'yes' => 'نعم',
'no' => 'لا', 'no' => 'لا',
'na' => 'غير متاح', 'na' => 'غير متاح',
'daily' => 'يومي', 'daily' => 'يومي',
'monthly' => 'شهرى', 'monthly' => 'شهري',
'quarterly' => 'ربع سنوي', 'quarterly' => 'ربع سنوي',
'yearly' => 'سنوى', 'yearly' => 'سنوي',
'add' => 'إضافة', 'add' => 'إضافة',
'add_new' => 'إضافة جديد', 'add_new' => 'إضافة جديد',
'show' => 'عرض', 'show' => 'عرض',
'edit' => 'تعديل', 'edit' => 'تعديل',
'delete' => 'حذف', 'delete' => 'حذف',
'send' => 'إرسال', 'send' => 'إرسال',
'download' => نزيل', 'download' => حميل',
'delete_confirm' => 'تأكيد الحذف :الاسم :type؟', 'delete_confirm' => 'تأكيد حذف :name :type؟',
'name' => 'الاسم', 'name' => 'الاسم',
'email' => 'البريد الالكتروني', 'email' => 'البريد الإلكتروني',
'tax_number' => 'رقم الضريبة', 'tax_number' => 'رقم الضريبة',
'phone' => 'هاتف', 'phone' => 'رقم الهاتف',
'address' => 'العنوان', 'address' => 'العنوان',
'website' => 'الموقع الالكتروني', 'website' => 'الموقع الإلكتروني',
'actions' => 'الإجراءات', 'actions' => 'الإجراءات',
'description' => 'الوصف', 'description' => 'الوصف',
'manage' => 'إدارة', 'manage' => 'إدارة',
@ -75,7 +75,7 @@ return [
'alias' => 'اسم مستعار', 'alias' => 'اسم مستعار',
'balance' => 'الرصيد', 'balance' => 'الرصيد',
'reference' => 'مرجع', 'reference' => 'مرجع',
'attachment' => 'مرفق', 'attachment' => 'المرفق',
'change' => 'تغيير', 'change' => 'تغيير',
'switch' => 'تبديل', 'switch' => 'تبديل',
'color' => 'اللون', 'color' => 'اللون',
@ -86,26 +86,26 @@ return [
'print' => 'طباعة', 'print' => 'طباعة',
'search' => 'بحث', 'search' => 'بحث',
'search_placeholder' => 'اكتب للبحث..', 'search_placeholder' => 'اكتب للبحث..',
'filter' => 'تصفية البحث', 'filter' => 'تصفية',
'help' => 'مساعدة', 'help' => 'مساعدة',
'all' => 'الكل', 'all' => 'الكل',
'all_type' => 'الكل :type', 'all_type' => 'الكل :type',
'upcoming' => 'القادمة', 'upcoming' => 'القادمة',
'created' => 'تم إنشاؤه', 'created' => 'تم إنشاؤه',
'id' => 'رقم الهوية', 'id' => 'رقم الهوية',
'more_actions' => 'المزيد من الاجراءات', 'more_actions' => 'المزيد من الإجراءات',
'duplicate' => 'تكرار', 'duplicate' => 'تكرار',
'unpaid' => 'غير مدفوع', 'unpaid' => 'غير مدفوع',
'paid' => 'مدفوع', 'paid' => 'مدفوع',
'overdue' => بلغ متأخر', 'overdue' => تأخر',
'partially' => 'جزئي', 'partially' => 'جزئي',
'partially_paid' => 'مدفوع جزئياً', 'partially_paid' => 'مدفوع جزئياً',
'export' => 'Export', 'export' => 'تصدير',
'enable' => 'Enable', 'enable' => 'تفعيل',
'disable' => 'Disable', 'disable' => 'تعطيل',
'title' => [ 'title' => [
'new' => 'جديد :type', 'new' => 'إضافة :type',
'edit' => 'تعديل :type', 'edit' => 'تعديل :type',
], ],

View File

@ -3,7 +3,7 @@
return [ return [
'import' => 'استيراد', 'import' => 'استيراد',
'title' => 'استيراد : النوع', 'title' => 'استيراد :type',
'message' => 'Allowed file types: XLS, XLSX. Please, <a target="_blank" href=":link"><strong>download</strong></a> the sample file.', 'message' => 'أنواع الملفات المسموحة: XLS, XLSX. من فضلك قم <a target="_blank" href=":link"><strong>بتحميل</strong></a> ملفاً لرؤية مثال على ذلك.',
]; ];

View File

@ -2,14 +2,14 @@
return [ return [
'next' => 'التالى', 'next' => 'التالي',
'refresh' => 'تحديث', 'refresh' => 'تحديث',
'steps' => [ 'steps' => [
'requirements' => 'Please, ask your hosting provider to fix the errors!', 'requirements' => 'من فضلك، تواصل مع مزود خدمة الاستضافة لديك لإصلاح الأخطاء!',
'language' => 'الخطوة 1/3 : أختيار اللغة', 'language' => 'الخطوة 1/3: اختيار اللغة',
'database' => 'الخطوة 2/3 : اعداد قاعدة البيانات', 'database' => 'الخطوة 2/3: إعداد قاعدة البيانات',
'settings' => 'الخطوة 3/3 : الشركة و تفاصيل مدير النظام', 'settings' => 'الخطوة 3/3: معلومات الشركة ومسؤول النظام',
], ],
'language' => [ 'language' => [
@ -17,28 +17,28 @@ return [
], ],
'requirements' => [ 'requirements' => [
'enabled' => ':هذة الميزة تحتاج الى تفعيل!', 'enabled' => 'يجب تفعيل :feature!',
'disabled' => ': هذة الميزة تحتاج الى الغاء التفعيل!', 'disabled' => 'يجب تعطيل :feature!',
'extension' => ':extension extension needs to be installed and loaded!', 'extension' => 'يجب تثبيت وتشغيل ملحق :extension!',
'directory' => ': الدليل يجب أن يكون قابل للكتابة!', 'directory' => 'يجب منح صلاحية الكتابة على مجلد :directory!',
], ],
'database' => [ 'database' => [
'hostname' => 'اسم المستضيف', 'hostname' => 'اسم المستضيف',
'username' => 'اسم المتخدم', 'username' => 'اسم المستخدم',
'password' => 'كلمة المرور', 'password' => 'كلمة المرور',
'name' => 'قاعدة البيانات', 'name' => 'قاعدة البيانات',
], ],
'settings' => [ 'settings' => [
'company_name' => 'اسم الشركة', 'company_name' => 'اسم الشركة',
'company_email' => 'البريد الالكتروني للشركة', 'company_email' => 'البريد الإلكتروني للشركة',
'admin_email' => 'البريد الالكتروني لمدير النظام', 'admin_email' => 'البريد الإلكتروني لمسؤول النظام',
'admin_password' => 'كلمة مرور مدير النظام', 'admin_password' => 'كلمة مرور مسؤول النظام',
], ],
'error' => [ 'error' => [
'connection' => 'خطأ: لا يمكن الاتصال بقاعدة البيانات! رجاءا, تأكد من صحة البيانات.', 'connection' => 'خطأ: لا يمكن الاتصال بقاعدة البيانات! من فضلك، تأكد من صحة المعلومات.',
], ],
]; ];

View File

@ -4,52 +4,52 @@ 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' => 'المبلغ الاجمالى', 'sub_total' => 'المجموع الجزئي',
'discount' => 'Discount', 'discount' => 'الخصم',
'tax_total' => 'اجمالى الضريبة', 'tax_total' => 'إجمالي الضريبة',
'total' => 'الاجمالى', 'total' => 'الإجمالي',
'item_name' => 'اسم الصنف | اسماء الاصناف', 'item_name' => 'اسم الصنف|أسماء الأصناف',
'show_discount' => ':discount% Discount', 'show_discount' => 'خصم :discount%',
'add_discount' => 'Add Discount', 'add_discount' => 'إضافة خصم',
'discount_desc' => 'of subtotal', 'discount_desc' => 'من المجموع الجزئي',
'payment_due' => 'استحقاق الدفع', 'payment_due' => 'استحقاق الدفع',
'paid' => 'مدفوع', 'paid' => 'مدفوع',
'histories' => 'سجلات', 'histories' => 'سجلات',
'payments' => 'مدفوعات', 'payments' => 'المدفوعات',
'add_payment' => 'اضافة مدفوعات', 'add_payment' => 'إضافة مدفوعات',
'mark_paid' => 'التحديد كمدفوع', 'mark_paid' => 'التحديد كمدفوع',
'mark_sent' => 'تحديد للارسال', 'mark_sent' => 'التحديد كمرسل',
'download_pdf' => 'تحميل PDF', 'download_pdf' => 'تحميل PDF',
'send_mail' => 'ارسال بريد الكتروني', 'send_mail' => 'إرسال بريد إلكتروني',
'status' => [ 'status' => [
'draft' => 'مسودة', 'draft' => 'مسودة',
'sent' => 'ارسال', 'sent' => 'تم الإرسال',
'viewed' => 'المشاهدات', 'viewed' => 'المشاهدات',
'approved' => 'تم الموافقة', 'approved' => 'تمت الموافقة',
'partial' => 'جزئى', 'partial' => 'جزئي',
'paid' => 'مدفوع', 'paid' => 'مدفوع',
], ],
'messages' => [ 'messages' => [
'email_sent' => 'تم ارسال الفاتورة بنجاح!', 'email_sent' => 'تم إرسال الفاتورة بنجاح!',
'marked_sent' => 'تم تحديد الفاتورة كفاتورة مرسلة بنجاح!', 'marked_sent' => 'تم تحديد الفاتورة كفاتورة مرسلة بنجاح!',
'email_required' => 'No email address for this customer!', 'email_required' => 'لا يوجد عنوان البريد إلكتروني لهذا العميل!',
], ],
'notification' => [ 'notification' => [
'message' => 'قمت باستلام هذة الرسالة لأنك مدين : بمبلغ الفاتورة الى : العميل عميل.', 'message' => 'قمت باستلام هذه الرسالة لأنه لديك فاتورة قادمة بقيمة :amount للعميل :customer.',
'button' => 'ادفع الآن', 'button' => 'الدفع الآن',
], ],
]; ];

View File

@ -2,14 +2,14 @@
return [ return [
'quantities' => 'الكمية | الكميات', 'quantities' => 'الكمية|الكميات',
'sales_price' => 'سعر البيع', 'sales_price' => 'سعر البيع',
'purchase_price' => 'سعر الشراء', 'purchase_price' => 'سعر الشراء',
'sku' => 'الرمز التعريفى', 'sku' => 'رمز SKU',
'notification' => [ 'notification' => [
'message' => تلقى هذة الرسالة حيث ان : المنتج اسم المنتج نفذ من المخزن.', 'message' => م إرسال هذه الرسالة لإبلاغك بأن :name قد نفد من المخزون.',
'button' => 'عرض الأن', 'button' => 'عرض الآن',
], ],
]; ];

View File

@ -3,27 +3,27 @@
return [ return [
'success' => [ 'success' => [
'added' => ':نوع تمت الاضافة!', 'added' => 'تم إضافة :type!',
'updated' => ':نوع تم التحديث!', 'updated' => 'تم تحديث :type!',
'deleted' => ':نوع تم الحذف!', 'deleted' => 'تم حذف :type!',
'duplicated' => ':نوع تم التكرار!', 'duplicated' => 'تم نسخ :type!',
'imported' => ':نوع تم الاستيراد!', 'imported' => 'تم استيراد :type!',
'enabled' => ':type enabled!', 'enabled' => 'تم تفعيل :type!',
'disabled' => ':type disabled!', 'disabled' => 'تم تعطيل :type!',
], ],
'error' => [ 'error' => [
'over_payment' => 'Error: Payment not added! Amount passes the total.', 'over_payment' => 'خطأ: لم تتم إضافة الدفع! القيمة المتبقية تجاوزت المجموع.',
'not_user_company' => 'خطأ: غير مسموح لك بادرة هذة الشركة!', 'not_user_company' => 'خطأ: غير مسموح لك بإدارة هذه الشركة!',
'customer' => 'Error: User not created! :name already uses this email address.', 'customer' => 'خطأ: لم تتم إضافة المستخدم! :name يستخدم هذا البريد الإلكتروني مسبقاً.',
'no_file' => 'خطأ: لم يتم تحديد ملف!', 'no_file' => 'خطأ: لم يتم تحديد أي ملف!',
'last_category' => 'Error: Can not delete the last :type category!', 'last_category' => 'خطأ: لا يمكن حذف آخر فئة من :type!',
'invalid_token' => 'Error: The token entered is invalid!', 'invalid_token' => 'خطأ: رمز الوصول المدخل غير صحيح!',
'import_column' => 'Error: :message Sheet name: :sheet. Line number: :line.', 'import_column' => 'خطأ: :message اسم الورقة: :sheet. رقم السطر: :line.',
'import_sheet' => 'Error: Sheet name is not valid. Please, check the sample file.', 'import_sheet' => 'خطأ: اسم الورقة غير صحيح. من فضلك، راجع ملف العينة.',
], ],
'warning' => [ 'warning' => [
'deleted' => حذير: غير مسموح لك بحذف <b>:اسم</b> لأن هذا : مرتبط ب.', 'deleted' => نبيه: لا يمكنك حذف <b>:name</b> لأنه لديه :text مرتبط به.',
'disabled' => حذير: غير مسموح لك بالغاء تفيل<b>:اسم</b> لأن هذا : مرتبط ب.', 'disabled' => نبيه: لا يمكنك تعطيل <b>:name</b> لأنه لديه :text مرتبط به.',
], ],
]; ];

View File

@ -4,55 +4,55 @@ return [
'title' => 'رمز API', 'title' => 'رمز API',
'api_token' => 'رمز الوصول', 'api_token' => 'رمز الوصول',
'my_apps' => 'My Apps', 'my_apps' => 'تطبيقاتي',
'top_paid' => 'أعلى المدفوعات', 'top_paid' => 'أعلى المدفوعات',
'new' => 'جديد', 'new' => 'جديد',
'top_free' => 'المجانيات الأعلى', 'top_free' => 'المجانيات الأعلى',
'free' => 'مجانى', 'free' => 'مجاناً',
'search' => 'Search', 'search' => 'بحث',
'install' => 'تثبيت', 'install' => 'تثبيت',
'buy_now' => 'اشترى الأن', 'buy_now' => 'الشراء الآن',
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">اضغط هنا</a> للحصول على رمز الوصول الخاص بك API.', 'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">اضغط هنا</a> للحصول على رمز الوصول الخاص بك API.',
'no_apps' => 'لا يوجد تطبيقات فى هذة الفئة حتي الأن.', 'no_apps' => 'لا توجد تطبيقات فى هذه الفئة حتى الآن.',
'developer' => 'هل أنت مطور؟ <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank"> هنا</a> يمكنك أن تتعلم كيفية إنشاء التطبيق وبدء البيع من اليوم!', 'developer' => 'هل أنت مطوّر؟ <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank"> هنا</a> يمكنك أن تتعلم كيفية إنشاء تطبيق وبدء البيع من اليوم!',
'about' => 'حول', 'about' => 'حول',
'added' => 'مُضاف', 'added' => 'تمت الإضافة',
'updated' => حديث', 'updated' => م التحديث',
'compatibility' => 'التوافق', 'compatibility' => 'التوافق',
'installed' => ':القسم مثبت', 'installed' => 'تم تثبيت :module',
'uninstalled' => ': قسم غير مفعل', 'uninstalled' => 'تم إلغاء تثبيت :module',
//'updated' => ':module updated', //'updated' => ':module updated',
'enabled' => ': قسم مفعل', 'enabled' => 'تم تفعيل :module',
'disabled' => ': قسم غير مفعل', 'disabled' => 'تم تعطيل :module',
'tab' => [ 'tab' => [
'installation' => 'التثبيت', 'installation' => 'التثبيت',
'faq' => 'الاسئلة الشائعة', 'faq' => 'الأسئلة الشائعة',
'changelog' => 'سجل التغييرات', 'changelog' => 'سجل التغييرات',
], ],
'installation' => [ 'installation' => [
'header' => 'تثبيت التطبيق', 'header' => 'تثبيت التطبيق',
'download' => 'تحميل : ملفات القسم.', 'download' => 'جاري تحميل ملف :module.',
'unzip' => 'استخراج : ملفات القسم.', 'unzip' => 'جاري استخراج ملفات :module.',
'install' => 'تثبيت: ملفات القسم.', 'install' => 'جاري تثبيت ملفات :module.',
], ],
'badge' => [ 'badge' => [
'installed' => 'Installed', 'installed' => 'مثبت',
], ],
'button' => [ 'button' => [
'uninstall' => 'الغاء التثبيت', 'uninstall' => 'إلغاء التثبيت',
'disable' => 'الغاء التفعيل', 'disable' => 'تعطيل',
'enable' => 'تفعيل', 'enable' => 'تفعيل',
], ],
'my' => [ 'my' => [
'purchased' => 'Purchased', 'purchased' => 'التي تم شراؤها',
'installed' => 'Installed', 'installed' => 'التي تم تثبيتها',
], ],
]; ];

View File

@ -2,9 +2,9 @@
return [ return [
'whoops' => 'Whoops!', 'whoops' => 'المعذرة...',
'hello' => 'Hello!', 'hello' => 'مرحباً!',
'salutation' => 'Regards,<br> :company_name', 'salutation' => 'مع التحية،<br> :company_name',
'subcopy' => 'If youre having trouble clicking the ":text" button, copy and paste the URL below into your web browser: [:url](:url)', 'subcopy' => 'إذا كنت تواجه مشكلة في الضغط على زر ":text"، يمكنك نسخ ولصق الرابط أدناه إلى المتصفح الخاص بك: [:url](:url)',
]; ];

View File

@ -4,6 +4,6 @@ return [
'previous' => '&laquo; السابق', 'previous' => '&laquo; السابق',
'next' => 'التالي &raquo;', 'next' => 'التالي &raquo;',
'showing' => 'اظهار : الأول الى :الأخير من الكل : النوع', 'showing' => 'عرض :first إلى :last من :total :type',
]; ];

View File

@ -13,10 +13,10 @@ return [
| |
*/ */
'password' => 'يجب أن لا يقل طول كلمة المرور عن ستة أحرف، كما يجب أن تتطابق مع حقل التأكيد', 'password' => 'كلمة المرور يجب أن تتكون من ستة خانات على الأقل وتكون متطابقة مع خانة التأكيد.',
'reset' => 'تمت إعادة تعيين كلمة المرور', 'reset' => 'تمت إعادة تعيين كلمة المرور!',
'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني', 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!',
'token' => '.رمز استعادة كلمة المرور الذي أدخلته غير صحيح', 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.',
'user' => "لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني", 'user' => "لم يتم العثور على أي حساب بهذا البريد الإلكتروني.",
]; ];

View File

@ -2,19 +2,19 @@
return [ return [
'recurring' => 'Recurring', 'recurring' => 'متكرر',
'every' => 'Every', 'every' => 'كل',
'period' => 'Period', 'period' => 'فترة',
'times' => 'التوقيت', 'times' => 'عدد المرات',
'daily' => 'يومي', 'daily' => 'يومي',
'weekly' => 'أسبوعي', 'weekly' => 'أسبوعي',
'monthly' => 'شهرى', 'monthly' => 'شهري',
'yearly' => 'سنوى', 'yearly' => 'سنوي',
'custom' => 'مُخصّص', 'custom' => 'مُخصّص',
'days' => 'يوم (أيام)', 'days' => 'يوم (أيام)',
'weeks' => 'Week(s)', 'weeks' => 'أسبوع (أسابيع)',
'months' => 'Month(s)', 'months' => 'شهر (أشهر)',
'years' => 'Year(s)', 'years' => 'سنة (سنوات)',
'message' => 'This is a recurring :type and the next :type will be automatically generated at :date', 'message' => 'هذه :type متكررة و :type التالية سيتم إنشاؤها تلقائياً في تاريخ :date',
]; ];

View File

@ -7,24 +7,24 @@ return [
'this_quarter' => 'هذا الربع', 'this_quarter' => 'هذا الربع',
'previous_quarter' => 'الربع السابق', 'previous_quarter' => 'الربع السابق',
'last_12_months' => 'آخر 12 شهر', 'last_12_months' => 'آخر 12 شهر',
'profit_loss' => 'Profit & Loss', 'profit_loss' => 'الربح والخسارة',
'gross_profit' => 'Gross Profit', 'gross_profit' => 'إجمالي الربح',
'net_profit' => 'Net Profit', 'net_profit' => 'صافي الربح',
'total_expenses' => 'Total Expenses', 'total_expenses' => 'إجمالي المصروفات',
'net' => 'NET', 'net' => 'صافي الدخل',
'summary' => [ 'summary' => [
'income' => 'ملخص الايرادات', 'income' => 'ملخص الإيرادات',
'expense' => خلص المصروفات', 'expense' => لخص المصروفات',
'income_expense' => 'الإيرادات مقابل المصروفات', 'income_expense' => 'الإيرادات مقابل المصروفات',
'tax' => 'Tax Summary', 'tax' => 'ملخص الضرائب',
], ],
'quarter' => [ 'quarter' => [
'1' => 'Jan-Mar', '1' => 'يناير-مارس',
'2' => 'Apr-Jun', '2' => 'أبريل-يونيو',
'3' => 'Jul-Sep', '3' => 'يوليو-سبتمبر',
'4' => 'Oct-Dec', '4' => 'أكتوبر-ديسمبر',
], ],
]; ];

View File

@ -4,7 +4,7 @@ return [
'company' => [ 'company' => [
'name' => 'الاسم', 'name' => 'الاسم',
'email' => 'البريد الالكتروني', 'email' => 'البريد الإلكتروني',
'phone' => 'رقم الهاتف', 'phone' => 'رقم الهاتف',
'address' => 'العنوان', 'address' => 'العنوان',
'logo' => 'الشعار', 'logo' => 'الشعار',
@ -13,32 +13,32 @@ return [
'tab' => 'المنطقة', 'tab' => 'المنطقة',
'date' => [ 'date' => [
'format' => 'صيغة التاريخ', 'format' => 'صيغة التاريخ',
'separator' => 'صيغة الفاصل', 'separator' => 'فاصل التاريخ',
'dash' => 'فاصل (-)', 'dash' => 'شَرطة (-)',
'dot' => 'نقطة (.)', 'dot' => 'نقطة (.)',
'comma' => 'فاصل (,)', 'comma' => 'فاصلة (,)',
'slash' => 'فاصل (/)', 'slash' => 'خط مائل (/)',
'space' => 'مسافة ( )', 'space' => 'مسافة ( )',
], ],
'timezone' => 'التوقيت', 'timezone' => 'التوقيت',
'percent' => [ 'percent' => [
'title' => 'Percent (%) Position', 'title' => 'مكان النسبة (%)',
'before' => 'Before Number', 'before' => 'قبل الرقم',
'after' => 'After Number', 'after' => 'بعد الرقم',
], ],
], ],
'invoice' => [ 'invoice' => [
'tab' => 'فاتورة الشراء', 'tab' => 'فاتورة الشراء',
'prefix' => 'رقم البداية', 'prefix' => 'بادئة الرقم',
'digit' => 'عدد الأرقام', 'digit' => 'عدد الأرقام',
'next' => 'الرقم التالى', 'next' => 'الرقم التالي',
'logo' => 'الشعار', 'logo' => 'الشعار',
], ],
'default' => [ 'default' => [
'tab' => 'الافتراضى', 'tab' => 'الافتراضي',
'account' => 'الحساب الافتراضى', 'account' => 'الحساب الافتراضي',
'currency' => 'العملة الافتراضية', 'currency' => 'العملة الافتراضية',
'tax' => 'معدل الضريبة الافتراضى', 'tax' => 'معدل الضريبة الافتراضي',
'payment' => 'طريقة الدفع الافتراضية', 'payment' => 'طريقة الدفع الافتراضية',
'language' => 'اللغة الافتراضية', 'language' => 'اللغة الافتراضية',
], ],
@ -49,22 +49,22 @@ return [
'name' => 'SMTP', 'name' => 'SMTP',
'host' => 'مُضيف SMTP', 'host' => 'مُضيف SMTP',
'port' => 'منفذ SMTP', 'port' => 'منفذ SMTP',
'username' => 'اسم المستخدم SMTP', 'username' => 'اسم مستخدم SMTP',
'password' => 'كلمة مرور SMTP', 'password' => 'كلمة مرور SMTP',
'encryption' => 'الأمن SMTP', 'encryption' => 'نوع تشفير SMTP',
'none' => 'لا يوجد', 'none' => 'لا يوجد',
], ],
'sendmail' => 'ارسال بريد الكتروني', 'sendmail' => 'Sendmail',
'sendmail_path' => 'مسار البريد الالكتروني', 'sendmail_path' => 'مسار Sendmail',
'log' => 'سجل الرسائل الالكترونية', 'log' => 'سجل الرسائل الإلكترونية',
], ],
'scheduling' => [ 'scheduling' => [
'tab' => 'الجدول الزمني', 'tab' => 'الجدول الزمني',
'send_invoice' => 'ارسال اشعار تذكيرى لفاتورة البيع', 'send_invoice' => 'إرسال تذكير لفاتورة البيع',
'invoice_days' => 'ارسال بعد أيام', 'invoice_days' => 'إرسال بعد ميعاد الاستحقاق بأيام',
'send_bill' => 'ارسال اشعار تذكيرى لفاتورة الشراء', 'send_bill' => 'إرسال تذكير لفاتورة الشراء',
'bill_days' => 'ارسال قبل ميعاد الاستحقاق بأيام', 'bill_days' => 'إرسال قبل ميعاد الاستحقاق بأيام',
'cron_command' => 'أمر تكرار', 'cron_command' => 'أمر التكرار',
'schedule_time' => 'ساعة البدء', 'schedule_time' => 'ساعة البدء',
], ],
'appearance' => [ 'appearance' => [
@ -78,13 +78,13 @@ return [
'system' => [ 'system' => [
'tab' => 'النظام', 'tab' => 'النظام',
'session' => [ 'session' => [
'lifetime' => 'مدة الفتح الاوتوماتيكي (بالدقائق)', 'lifetime' => 'مدة الجلسة (بالدقائق)',
'handler' => 'معالج الفتح الاوتوماتيكي', 'handler' => 'معالج الجلسة',
'file' => 'ملف', 'file' => 'ملف',
'database' => 'قاعدة البيانات', 'database' => 'قاعدة البيانات',
], ],
'file_size' => 'الحجم الأقصى للملف (بالميجابايت)', 'file_size' => 'الحجم الأقصى للملف (بالميجابايت)',
'file_types' => 'السماح لأنواع الملفات', 'file_types' => 'أنواع الملفات المسموحة',
], ],
]; ];

View File

@ -3,6 +3,6 @@
return [ return [
'rate' => 'المعدل', 'rate' => 'المعدل',
'rate_percent' => 'المعدل بالنسبة المئوية (%)', 'rate_percent' => 'المعدل (%)',
]; ];

View File

@ -3,10 +3,10 @@
return [ return [
'from_account' => 'من حساب', 'from_account' => 'من حساب',
'to_account' => 'الى حساب', 'to_account' => 'إلى حساب',
'messages' => [ 'messages' => [
'delete' => ':from to :to (:amount)', 'delete' => ':from إلى :to (:amount)',
], ],
]; ];

View File

@ -4,12 +4,12 @@ return [
'installed_version' => 'الإصدار المثبت', 'installed_version' => 'الإصدار المثبت',
'latest_version' => 'أحدث إصدار', 'latest_version' => 'أحدث إصدار',
'update' => 'تحديث أكاونتينج على: إصدار', 'update' => 'تحديث أكاونتينج إلى إصدار :version',
'changelog' => 'سجل التغييرات', 'changelog' => 'سجل التغييرات',
'check' => 'التحقق', 'check' => 'التحقق',
'new_core' => 'يتوفر إصدار محدث من أكاونتينج.', 'new_core' => 'يتوفر إصدار أحدث من أكاونتينج.',
'latest_core' => 'تهانينا! لديك أحدث إصدار من أكاونتينج. سيتم تلقائياً تطبيق التحديثات الأمنية المستقبلية.', 'latest_core' => 'تهانينا! لديك أحدث إصدار من أكاونتينج. سيتم تلقائياً تطبيق التحديثات الأمنية المستقبلية.',
'success' => 'إكتمل التثبيت بنجاح.', 'success' => 'اكتمل التثبيت بنجاح.',
'error' => 'لقد فشلت عملية التحديث، من فضلك، حاول مرة أخرى.', 'error' => 'لقد فشلت عملية التحديث، من فضلك، حاول مرة أخرى.',
]; ];

View File

@ -13,78 +13,78 @@ return [
| |
*/ */
'accepted' => 'يجب قبول :attribute', 'accepted' => 'يجب أن يتم القبول على خانة :attribute.',
'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا', 'active_url' => 'خانة :attribute تحتوي على رابط غير صحيح.',
'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', 'after' => 'يجب على خانة :attribute أن تكون تاريخًا لاحقًا للتاريخ :date.',
'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', 'after_or_equal' => 'يجب على خانة :attribute أن تكون تاريخًا لاحقًا أو مطابقًا للتاريخ :date.',
'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف', 'alpha' => 'يجب أن تحتوي خانة :attribute على أحرف فقط.',
'alpha_dash' => 'يجب أن لا يحتوي :attribute على حروف، أرقام ومطّات.', 'alpha_dash' => 'يجب أن تحتوي خانة :attribute على أحرف وأرقام وشرطات فقط.',
'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط', 'alpha_num' => 'يجب أن تحتوي خانة :attribute على أحرف وأرقام فقط.',
'array' => 'يجب أن يكون :attribute ًمصفوفة', 'array' => 'يجب أن تكون خانة :attribute من نوع مصفوفة.',
'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', 'before' => 'يجب على خانة :attribute أن تكون تاريخًا سابقًا للتاريخ :date.',
'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date', 'before_or_equal' => 'يجب على خانة :attribute أن تكون تاريخًا سابقًا أو مطابقًا للتاريخ :date.',
'between' => [ 'between' => [
'numeric' => 'يجب أن تكون قيمة :attribute بين :min و :max.', 'numeric' => 'يجب أن تكون قيمة :attribute بين :min و :max.',
'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.', 'file' => 'يجب أن تكون خانة :attribute بين :min و :max كيلوبايت.',
'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max', 'string' => 'يجب أن تكون عدد حروف النّص :attribute بين :min و :max.',
'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max', 'array' => 'يجب أن تحتوي خانة :attribute على عدد من العناصر بين :min و :max.',
], ],
'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false ', 'boolean' => 'يجب أن تكون قيمة :attribute إما صحيحًا أو خاطئًا.',
'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute', 'confirmed' => 'خانة التأكيد غير متطابقة مع خانة :attribute.',
'date' => ':attribute ليس تاريخًا صحيحًا', 'date' => 'خانة :attribute ليست تاريخًا صحيحًا.',
'date_format' => 'لا يتوافق :attribute مع الشكل :format.', 'date_format' => 'خانة :attribute غير متوافقة مع التنسيق :format.',
'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفان', 'different' => 'يجب أن تكون الخانتان :attribute و :other مُختلفتان.',
'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام', 'digits' => 'يجب أن تحتوي خانة :attribute على عدد :digits من الأرقام.',
'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام ', 'digits_between' => 'يجب أن تحتوي خانة :attribute على عدد من الأرقام بين :min و :max.',
'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', 'dimensions' => 'خانة :attribute تحتوي على أبعاد صورة غير صالحة.',
'distinct' => 'للحقل :attribute قيمة مُكرّرة.', 'distinct' => 'خانة :attribute تحتوي على قيمة مكررة.',
'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية', 'email' => 'يجب أن تحتوي خانة :attribute على عنوان بريد إلكتروني صحيح.',
'exists' => ':attribute لاغٍ', 'exists' => 'الخانة المحددة :attribute غير صالحة.',
'file' => 'الـ :attribute يجب أن يكون ملفا.', 'file' => 'يجب أن تحتوي خانة :attribute على ملف.',
'filled' => ':attribute إجباري', 'filled' => 'يجب أن تحتوي خانة :attribute على قيمة.',
'image' => 'يجب أن يكون :attribute صورةً', 'image' => 'يجب أن تكون خانة :attribute عبارة عن صورة.',
'in' => ':attribute لاغٍ', 'in' => 'الخانة المحددة :attribute غير صالحة.',
'in_array' => ':attribute غير موجود في :other.', 'in_array' => 'خانة :attribute غير موجود في :other.',
'integer' => 'يجب أن يكون :attribute عددًا صحيحًا', 'integer' => 'يجب أن تحتوي خانة :attribute على عددًا صحيحًا.',
'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا', 'ip' => 'يجب أن تحتوي خانة :attribute على عنوان IP صحيحًا.',
'json' => 'يجب أن يكون :attribute نصآ من نوع JSON.', 'json' => 'يجب أن تحتوي خانة :attribute على نصًا صحيحًا من نوع JSON.',
'max' => [ 'max' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر لـ :max.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.',
'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت', 'file' => 'خانة :attribute يجب ألا تكون أكبر من :max كيلوبايت.',
'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا', 'string' => 'يجب ألا تتجاوز خانة :attribute على عدد أكبر من :max من الأحرف.',
'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', 'array' => 'يجب ألا تتجاوز خانة :attribute على أكثر من :max من العناصر.',
], ],
'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', 'mimes' => 'يجب أن تكون خانة :attribute ملفًا من النوع: :values.',
'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', 'mimetypes' => 'يجب أن تكون خانة :attribute ملفًا من النوع: :values.',
'min' => [ 'min' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر لـ :min.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.',
'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت', 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.',
'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا', 'string' => 'يجب أن تحتوي خانة :attribute على عدد :min من الأحرف على الأقل.',
'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر', 'array' => 'يجب أن تحتوي خانة :attribute على عدد :min من العناصر على الأقل.',
], ],
'not_in' => ':attribute لاغٍ', 'not_in' => 'الخانة المحددة :attribute غير صالحة.',
'numeric' => 'يجب على :attribute أن يكون رقمًا', 'numeric' => 'يجب أن تحتوي خانة :attribute على عددًا صحيحًا.',
'present' => 'يجب تقديم :attribute', 'present' => 'يجب أن تكون خانة :attribute موجوداً.',
'regex' => 'صيغة :attribute .غير صحيحة', 'regex' => 'صيغة :attribute غير صحيحة.',
'required' => ':attribute مطلوب.', 'required' => 'الخانة :attribute إلزامية.',
'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.', 'required_if' => 'الخانة :attribute إلزامية إذا كانت خانة :other تساوي :value.',
'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.', 'required_unless' => 'الخانة :attribute تكون إلزامية ما لم تكن خانة :other تحتوي على :values.',
'required_with' => ':attribute مطلوب إذا توفّر :values.', 'required_with' => 'الخانة :attribute إلزامية إذا توفّر :values.',
'required_with_all' => ':attribute مطلوب إذا توفّر :values.', 'required_with_all' => 'الخانة :attribute إلزامية إذا توفّر :values.',
'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.', 'required_without' => 'الخانة :attribute إلزامية إذا لم يتوفّر :values.',
'required_without_all' => ':attribute مطلوب إذا لم يتوفّر :values.', 'required_without_all' => 'الخانة :attribute إلزامية إذا لم يتوفّر أياً من :values.',
'same' => 'يجب أن يتطابق :attribute مع :other', 'same' => 'يجب أن تتطابق خانة :attribute مع :other.',
'size' => [ 'size' => [
'numeric' => 'يجب أن تكون قيمة :attribute مساوية لـ :size', 'numeric' => 'يجب أن تكون قيمة خانة :attribute مساوية للعدد :size.',
'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت', 'file' => 'يجب أن يكون حجم الملف :attribute يساوي :size كيلوبايت.',
'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالظبط', 'string' => 'يجب أن يحتوي خانة :attribute على :size حرف/أحرف.',
'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالظبط', 'array' => 'يجب أن تحتوي خانة :attribute على :size من العناصر.',
], ],
'string' => 'يجب أن يكون :attribute نصآ.', 'string' => 'يجب أن تكون خانة :attribute نصًا.',
'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا', 'timezone' => 'يجب أن تكون خانة :attribute نطاقًا زمنيًا صحيحًا.',
'unique' => 'قيمة :attribute مُستخدمة من قبل', 'unique' => 'قيمة :attribute مُستخدمة من قبل.',
'uploaded' => 'فشل في تحميل الـ :attribute', 'uploaded' => 'فشل في رفع :attribute.',
'url' => 'صيغة الرابط :attribute غير صحيحة', 'url' => 'صيغة :attribute غير صحيحة.',
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -101,7 +101,7 @@ return [
'attribute-name' => [ 'attribute-name' => [
'rule-name' => 'رسالة مخصصة', 'rule-name' => 'رسالة مخصصة',
], ],
'invalid_currency' => 'The :attribute code is invalid.', 'invalid_currency' => 'رمز خانة :attribute غير صحيحة.',
], ],
/* /*

View File

@ -13,18 +13,27 @@ return [
'current_email' => 'דוא ל הנוכחי', 'current_email' => 'דוא ל הנוכחי',
'reset' => 'איפוס', 'reset' => 'איפוס',
'never' => 'לעולם לא', 'never' => 'לעולם לא',
'password' => [ 'password' => [
'current' => 'סיסמה', 'current' => 'סיסמה',
'current_confirm' => 'אימות סיסמה', 'current_confirm' => 'אימות סיסמה',
'new' => 'סיסמה חדשה', 'new' => 'סיסמה חדשה',
'new_confirm' => 'אימות סיסמה חדשה', 'new_confirm' => 'אימות סיסמה חדשה',
], ],
'error' => [ 'error' => [
'self_delete' => 'שגיאה: לא ניתן למחוק את עצמך!' 'self_delete' => 'שגיאה: לא ניתן למחוק את עצמך!',
'no_company' => 'שגיאה: אין חברה המוקצה לחשבון שלך.. אנא, פנה אל מנהל המערכת.',
], ],
'failed' => 'פרטים אלה אינם תואמים את רישומינו.', 'failed' => 'פרטים אלה אינם תואמים את רישומינו.',
'disabled' => 'חשבון זה אינו זמין. אנא, פנה אל מנהל המערכת.', 'disabled' => 'חשבון זה אינו זמין. אנא, פנה אל מנהל המערכת.',
'throttle' => 'ניסיונות כניסה רבים מדי. אנא נסו שוב בעוד :seconds שניות.', 'throttle' => 'ניסיונות כניסה רבים מדי. אנא נסו שוב בעוד :seconds שניות.',
'notification' => [
'message_1' => 'אתה מקבל את האימייל הזה כי קיבלנו בקשת איפוס סיסמה עבור החשבון שלך.',
'message_2' => 'אם לא אתה ביקשת את איפוס הסיסמה, לא נדרשת פעולה נוספת.',
'button' => 'איפוס סיסמה',
],
]; ];

View File

@ -2,7 +2,7 @@
return [ return [
'total_incomes' => 'סה"כ ההכנסות', 'total_incomes' => 'סה"כ הכנסות',
'receivables' => 'חשבונות חייבים', 'receivables' => 'חשבונות חייבים',
'open_invoices' => 'חשבוניות פתוחות', 'open_invoices' => 'חשבוניות פתוחות',
'overdue_invoices' => 'חשבוניות שפרעונן חלף', 'overdue_invoices' => 'חשבוניות שפרעונן חלף',

View File

@ -3,7 +3,6 @@
return [ return [
'accounts_cash' => 'מזומנים', 'accounts_cash' => 'מזומנים',
'categories_uncat' => 'ללא קטגוריה',
'categories_deposit' => 'פיקדון', 'categories_deposit' => 'פיקדון',
'categories_sales' => 'מכירות', 'categories_sales' => 'מכירות',
'currencies_usd' => 'דולר אמריקאי', 'currencies_usd' => 'דולר אמריקאי',

View File

@ -100,11 +100,15 @@ return [
'overdue' => 'באיחור', 'overdue' => 'באיחור',
'partially' => 'חלקי', 'partially' => 'חלקי',
'partially_paid' => 'תשלום חלקי', 'partially_paid' => 'תשלום חלקי',
'export' => 'Export',
'enable' => 'Enable',
'disable' => 'Disable',
'title' => [ 'title' => [
'new' => ':type חדש', 'new' => ':type חדש',
'edit' => 'עריכת :type', 'edit' => 'עריכת :type',
], ],
'form' => [ 'form' => [
'enter' => 'הכנס :field', 'enter' => 'הכנס :field',
'select' => [ 'select' => [

View File

@ -4,6 +4,6 @@ return [
'import' => 'ייבוא', 'import' => 'ייבוא',
'title' => 'ייבוא :type', 'title' => 'ייבוא :type',
'message' => 'סוגי קבצים מותרים: CSV, XLS. אנא, <a target="_blank" href=":link"><strong>הורד</strong></a> את קובץ ההדגמה.', 'message' => 'Allowed file types: XLS, XLSX. Please, <a target="_blank" href=":link"><strong>download</strong></a> the sample file.',
]; ];

View File

@ -6,7 +6,7 @@ return [
'refresh' => 'רענן', 'refresh' => 'רענן',
'steps' => [ 'steps' => [
'requirements' => 'בבקשה, לעמוד בדרישות הבאות!', 'requirements' => 'בבקשה, בקש מספק האחסון שלך לתקן את השגיאות!',
'language' => 'שלב 1/3: בחירת שפה', 'language' => 'שלב 1/3: בחירת שפה',
'database' => 'שלב 2/3: הגדרות מסד נתונים', 'database' => 'שלב 2/3: הגדרות מסד נתונים',
'settings' => 'שלב 3/3: פרטי החברה והמנהל', 'settings' => 'שלב 3/3: פרטי החברה והמנהל',
@ -19,7 +19,7 @@ return [
'requirements' => [ 'requirements' => [
'enabled' => ':feature צריך להיות פעיל!', 'enabled' => ':feature צריך להיות פעיל!',
'disabled' => ':feature צריך להיות כבוי!', 'disabled' => ':feature צריך להיות כבוי!',
'extension' => ':extension סיומת צריך להיות טעון!', 'extension' => ':extension extension needs to be installed and loaded!',
'directory' => ':directory צריכה להיות writable!', 'directory' => ':directory צריכה להיות writable!',
], ],

View File

@ -8,6 +8,8 @@ return [
'deleted' => ':type נמחק!', 'deleted' => ':type נמחק!',
'duplicated' => ':type שוכפל!', 'duplicated' => ':type שוכפל!',
'imported' => ':type יובא!', 'imported' => ':type יובא!',
'enabled' => ':type enabled!',
'disabled' => ':type disabled!',
], ],
'error' => [ 'error' => [
'over_payment' => 'שגיאה: התשלום לא הוסף! הסכום עובר את הסכום הכולל.', 'over_payment' => 'שגיאה: התשלום לא הוסף! הסכום עובר את הסכום הכולל.',
@ -16,6 +18,8 @@ return [
'no_file' => 'שגיאה: אין קובץ שנבחר!', 'no_file' => 'שגיאה: אין קובץ שנבחר!',
'last_category' => 'שגיאה: לא ניתן למחוק האחרונים :type קטגוריה!', 'last_category' => 'שגיאה: לא ניתן למחוק האחרונים :type קטגוריה!',
'invalid_token' => 'שגיאה: ה-token שהוזן אינו חוקי!', 'invalid_token' => 'שגיאה: ה-token שהוזן אינו חוקי!',
'import_column' => 'שגיאה:: שם הגיליון ההודעה:: גיליון. שורה מספר:: שורה.',
'import_sheet' => 'שגיאה: שם הגיליון אינו חוקי. יש לבדוק את הקובץ לדוגמה.',
], ],
'warning' => [ 'warning' => [
'deleted' => 'אזהרה: אסור לך למחוק <b>:name</b> כי יש לו :text מקושר.', 'deleted' => 'אזהרה: אסור לך למחוק <b>:name</b> כי יש לו :text מקושר.',

View File

@ -4,6 +4,7 @@ return [
'title' => 'אסימון API', 'title' => 'אסימון API',
'api_token' => 'אסימון', 'api_token' => 'אסימון',
'my_apps' => 'My Apps',
'top_paid' => 'תשלומים מובילים', 'top_paid' => 'תשלומים מובילים',
'new' => 'חדש', 'new' => 'חדש',
'top_free' => 'מובילים חינם', 'top_free' => 'מובילים חינם',
@ -40,9 +41,18 @@ return [
'install' => 'מתקין קבצים :module.', 'install' => 'מתקין קבצים :module.',
], ],
'badge' => [
'installed' => 'Installed',
],
'button' => [ 'button' => [
'uninstall' => 'הסרה', 'uninstall' => 'הסרה',
'disable' => 'השבת', 'disable' => 'השבת',
'enable' => 'אפשר', 'enable' => 'אפשר',
], ],
'my' => [
'purchased' => 'Purchased',
'installed' => 'Installed',
],
]; ];

View File

@ -0,0 +1,10 @@
<?php
return [
'whoops' => 'אופס...',
'hello' => 'שלום!',
'salutation' => 'ברכות,<br> : שם_החברה',
'subcopy' => 'If youre having trouble clicking the ":text" button, copy and paste the URL below into your web browser: [:url](:url)',
];

View File

@ -5,4 +5,8 @@ return [
'from_account' => 'מחשבון', 'from_account' => 'מחשבון',
'to_account' => 'לחשבון', 'to_account' => 'לחשבון',
'messages' => [
'delete' => ':מ אל :ל (: כמות)',
],
]; ];

View File

@ -101,6 +101,7 @@ return [
'attribute-name' => [ 'attribute-name' => [
'rule-name' => 'הודעה מותאמת אישית', 'rule-name' => 'הודעה מותאמת אישית',
], ],
'invalid_currency' => 'The :attribute code is invalid.',
], ],
/* /*

View File

@ -13,18 +13,27 @@ return [
'current_email' => 'Email attuale', 'current_email' => 'Email attuale',
'reset' => 'Reimposta', 'reset' => 'Reimposta',
'never' => 'mai', 'never' => 'mai',
'password' => [ 'password' => [
'current' => 'Password', 'current' => 'Password',
'current_confirm' => 'Conferma Password', 'current_confirm' => 'Conferma Password',
'new' => 'Nuova Password', 'new' => 'Nuova Password',
'new_confirm' => 'Conferma Nuova Password', 'new_confirm' => 'Conferma Nuova Password',
], ],
'error' => [ 'error' => [
'self_delete' => 'Errore: Non puoi eliminarlo!' 'self_delete' => 'Errore: Non puoi eliminarlo!',
'no_company' => 'Errore: Nessuna società assegnata al tuo account. Per favore, contatta l\'amministratore di sistema.',
], ],
'failed' => 'Credenziali non corrispondenti ai dati registrati.', 'failed' => 'Credenziali non corrispondenti ai dati registrati.',
'disabled' => 'Questo account è disattivato. Si prega di contattare l\'amministratore di sistema.', 'disabled' => 'Questo account è disattivato. Si prega di contattare l\'amministratore di sistema.',
'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.', 'throttle' => 'Troppi tentativi di accesso. Riprova tra :seconds secondi.',
'notification' => [
'message_1' => 'Hai ricevuto questa email perché abbiamo ricevuto una richiesta di reimpostazione della password per il tuo account.',
'message_2' => 'Se non hai richiesto la reimpostazione della password, non sono necessarie ulteriori azioni.',
'button' => 'Resetta la Password',
],
]; ];

View File

@ -12,15 +12,15 @@ return [
'quantity' => 'Quantità', 'quantity' => 'Quantità',
'price' => 'Prezzo', 'price' => 'Prezzo',
'sub_total' => 'Subtotale', 'sub_total' => 'Subtotale',
'discount' => 'Discount', 'discount' => 'Sconto',
'tax_total' => 'Totale imposta', 'tax_total' => 'Totale imposta',
'total' => 'Totale', 'total' => 'Totale',
'item_name' => 'Nome dell\'articolo|Nomi degli articoli', 'item_name' => 'Nome dell\'articolo|Nomi degli articoli',
'show_discount' => ':discount% Discount', 'show_discount' => ': discount% Sconto',
'add_discount' => 'Add Discount', 'add_discount' => 'Aggiungi Sconto',
'discount_desc' => 'of subtotal', 'discount_desc' => 'di subtotale',
'payment_due' => 'Scadenza pagamento', 'payment_due' => 'Scadenza pagamento',
'amount_due' => 'Importo dovuto', 'amount_due' => 'Importo dovuto',

View File

@ -3,7 +3,6 @@
return [ return [
'accounts_cash' => 'Contanti', 'accounts_cash' => 'Contanti',
'categories_uncat' => 'Non categorizzato',
'categories_deposit' => 'Deposito', 'categories_deposit' => 'Deposito',
'categories_sales' => 'Vendite', 'categories_sales' => 'Vendite',
'currencies_usd' => 'Dollaro USA', 'currencies_usd' => 'Dollaro USA',

View File

@ -37,7 +37,7 @@ return [
'updates' => 'Aggiornamento|Aggiornamenti', 'updates' => 'Aggiornamento|Aggiornamenti',
'numbers' => 'Numero|Numeri', 'numbers' => 'Numero|Numeri',
'statuses' => 'Stato|Stati', 'statuses' => 'Stato|Stati',
'others' => 'Other|Others', 'others' => 'Altro|Altri',
'dashboard' => 'Cruscotto', 'dashboard' => 'Cruscotto',
'banking' => 'Banca', 'banking' => 'Banca',
@ -100,11 +100,15 @@ return [
'overdue' => 'In Ritardo', 'overdue' => 'In Ritardo',
'partially' => 'Parzialmente', 'partially' => 'Parzialmente',
'partially_paid' => 'Parzialmente Pagato', 'partially_paid' => 'Parzialmente Pagato',
'export' => 'Esporta',
'enable' => 'Attiva',
'disable' => 'Disattiva',
'title' => [ 'title' => [
'new' => 'Nuovo :type', 'new' => 'Nuovo :type',
'edit' => 'Modifica :type', 'edit' => 'Modifica :type',
], ],
'form' => [ 'form' => [
'enter' => 'Immettere :field', 'enter' => 'Immettere :field',
'select' => [ 'select' => [

View File

@ -4,6 +4,6 @@ return [
'import' => 'Importa', 'import' => 'Importa',
'title' => 'Importazione :type', 'title' => 'Importazione :type',
'message' => 'Tipi di file consentiti: CSV, XLS. Prego, <a target="_blank" href=":link"> <strong>scaricare</strong></a> il file di esempio.', 'message' => 'Tipi di file consentiti: XLS, XLSX. Prego, <a target="_blank" href=":link"><strong>scaricare</strong></a> il file di esempio.',
]; ];

View File

@ -6,7 +6,7 @@ return [
'refresh' => 'Aggiorna', 'refresh' => 'Aggiorna',
'steps' => [ 'steps' => [
'requirements' => 'Per favore, segui i seguenti requisiti!', 'requirements' => 'Per favore, chiedi al tuo fornitore di hosting di correggere gli errori!',
'language' => 'Passo 1/3: Selezione della lingua', 'language' => 'Passo 1/3: Selezione della lingua',
'database' => 'Passo 2/3: Configurazione del Database', 'database' => 'Passo 2/3: Configurazione del Database',
'settings' => 'Passo 3/3: Azienda e dettagli Amministrazione', 'settings' => 'Passo 3/3: Azienda e dettagli Amministrazione',
@ -19,7 +19,7 @@ return [
'requirements' => [ 'requirements' => [
'enabled' => ':feature deve essere abilitata!', 'enabled' => ':feature deve essere abilitata!',
'disabled' => ':feature deve essere disabilitata!', 'disabled' => ':feature deve essere disabilitata!',
'extension' => 'l\'esetnsione :extension deve essere caricata!', 'extension' => ':extension estensione deve essere installata e caricata!',
'directory' => 'la cartella :directory deve essere scrivibile!', 'directory' => 'la cartella :directory deve essere scrivibile!',
], ],

View File

@ -12,15 +12,15 @@ return [
'quantity' => 'Quantità', 'quantity' => 'Quantità',
'price' => 'Prezzo', 'price' => 'Prezzo',
'sub_total' => 'Subtotale', 'sub_total' => 'Subtotale',
'discount' => 'Discount', 'discount' => 'Sconto',
'tax_total' => 'Totale imposte', 'tax_total' => 'Totale imposte',
'total' => 'Totale', 'total' => 'Totale',
'item_name' => 'Nome dell\'articolo|Nomi degli articoli', 'item_name' => 'Nome dell\'articolo|Nomi degli articoli',
'show_discount' => ':discount% Discount', 'show_discount' => ': discount% Sconto',
'add_discount' => 'Add Discount', 'add_discount' => 'Aggiungi Sconto',
'discount_desc' => 'of subtotal', 'discount_desc' => 'di subtotale',
'payment_due' => 'Scadenza pagamento', 'payment_due' => 'Scadenza pagamento',
'paid' => 'Pagato', 'paid' => 'Pagato',

View File

@ -8,6 +8,8 @@ return [
'deleted' => ':type eliminato!', 'deleted' => ':type eliminato!',
'duplicated' => ':type duplicato!', 'duplicated' => ':type duplicato!',
'imported' => ':type importato!', 'imported' => ':type importato!',
'enabled' => ':type enabled!',
'disabled' => ':type disabled!',
], ],
'error' => [ 'error' => [
'over_payment' => 'Errore: Pagamento non aggiunto! L\'importo supera il totale.', 'over_payment' => 'Errore: Pagamento non aggiunto! L\'importo supera il totale.',
@ -16,6 +18,8 @@ return [
'no_file' => 'Errore: Nessun file selezionato!', 'no_file' => 'Errore: Nessun file selezionato!',
'last_category' => 'Error: Can not delete the last :type category!', 'last_category' => 'Error: Can not delete the last :type category!',
'invalid_token' => 'Error: The token entered is invalid!', 'invalid_token' => 'Error: The token entered is invalid!',
'import_column' => 'Error: :message Sheet name: :sheet. Line number: :line.',
'import_sheet' => 'Error: Sheet name is not valid. Please, check the sample file.',
], ],
'warning' => [ 'warning' => [
'deleted' => 'Attenzione: Non è consentito eliminare <b>:name</b> perché ha :text collegato.', 'deleted' => 'Attenzione: Non è consentito eliminare <b>:name</b> perché ha :text collegato.',

View File

@ -4,11 +4,12 @@ return [
'title' => 'API Token', 'title' => 'API Token',
'api_token' => 'Token', 'api_token' => 'Token',
'my_apps' => 'Le mie Applicazioni',
'top_paid' => 'Più pagate', 'top_paid' => 'Più pagate',
'new' => 'Nuovo', 'new' => 'Nuovo',
'top_free' => 'Top gratis', 'top_free' => 'Top gratis',
'free' => 'GRATIS', 'free' => 'GRATIS',
'search' => 'Search', 'search' => 'Ricerca',
'install' => 'Installa', 'install' => 'Installa',
'buy_now' => 'Acquista ora', 'buy_now' => 'Acquista ora',
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank"> Clicca qui</a> per ottenere il tuo API token.', 'token_link' => '<a href="https://akaunting.com/tokens" target="_blank"> Clicca qui</a> per ottenere il tuo API token.',
@ -40,9 +41,18 @@ return [
'install' => 'Installazione dei files del modulo :module.', 'install' => 'Installazione dei files del modulo :module.',
], ],
'badge' => [
'installed' => 'Installato',
],
'button' => [ 'button' => [
'uninstall' => 'Disinstalla', 'uninstall' => 'Disinstalla',
'disable' => 'Disabilita', 'disable' => 'Disabilita',
'enable' => 'Attiva', 'enable' => 'Attiva',
], ],
'my' => [
'purchased' => 'Acquistato',
'installed' => 'Installato',
],
]; ];

View File

@ -0,0 +1,10 @@
<?php
return [
'whoops' => 'Whoops!',
'hello' => 'Ciao!',
'salutation' => 'Saluti,<br> : company_name',
'subcopy' => 'Se stai avendo problemi cliccando il ":testo" pulsante, copiare e incollare l\'URL qui sotto nel tuo browser web: [:url](:url)',
];

View File

@ -3,13 +3,13 @@
return [ return [
'recurring' => 'Recurring', 'recurring' => 'Recurring',
'every' => 'Every', 'every' => 'Ogni',
'period' => 'Period', 'period' => 'Periodo',
'times' => 'Times', 'times' => 'Volte',
'daily' => 'Daily', 'daily' => 'Quotidiano',
'weekly' => 'Weekly', 'weekly' => 'Settimanalmente',
'monthly' => 'Monthly', 'monthly' => 'Mensile',
'yearly' => 'Yearly', 'yearly' => 'Annuale',
'custom' => 'Custom', 'custom' => 'Custom',
'days' => 'Day(s)', 'days' => 'Day(s)',
'weeks' => 'Week(s)', 'weeks' => 'Week(s)',

View File

@ -22,9 +22,9 @@ return [
], ],
'timezone' => 'Fuso Orario', 'timezone' => 'Fuso Orario',
'percent' => [ 'percent' => [
'title' => 'Percent (%) Position', 'title' => 'Percentuale (%) Posizione',
'before' => 'Before Number', 'before' => 'Prima del Numero',
'after' => 'After Number', 'after' => 'Dopo il Numero',
], ],
], ],
'invoice' => [ 'invoice' => [

View File

@ -5,4 +5,8 @@ return [
'from_account' => 'Dal conto', 'from_account' => 'Dal conto',
'to_account' => 'Al Conto', 'to_account' => 'Al Conto',
'messages' => [
'delete' => ':from to :to (:amount)',
],
]; ];

View File

@ -101,6 +101,7 @@ return [
'attribute-name' => [ 'attribute-name' => [
'rule-name' => 'messaggio-personalizzato', 'rule-name' => 'messaggio-personalizzato',
], ],
'invalid_currency' => ':attribute codice non è valido.',
], ],
/* /*