Skip to content

Commit

Permalink
# This is a combination of 3 commits.
Browse files Browse the repository at this point in the history
# This is the 1st commit message:

update category sales langauge for frontend.

# This is the commit message #2:

lang

# This is the commit message #3:

add-register-inlang

add-review-lang

code format
  • Loading branch information
yushine committed Oct 22, 2024
1 parent c56e1fc commit 1db2916
Show file tree
Hide file tree
Showing 180 changed files with 2,347 additions and 1,898 deletions.
7 changes: 6 additions & 1 deletion innopacks/front/resources/views/brands/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@

@hookinsert('brand.index.bottom')

@endsection
@endsection
@push('footer')
<script>
</script>
@endpush
4 changes: 2 additions & 2 deletions innopacks/front/resources/views/categories/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<span class="d-none d-md-block">{{ __('front/common.sort') }}:</span>
<select class="form-select order-select">
<option value="">{{ __('/front/category.default') }}</option>
<option value="products.sales|asc" {{ request('sort') == 'products.sales' && request('order') == 'asc' ? 'selected' : '' }}>{{ __('/front/category.sales_volume') }} ({{ __('/front/category.low') . ' - ' . __('/front/category.high')}})</option>
<option value="products.sales|desc" {{ request('sort') == 'products.sales' && request('order') == 'desc' ? 'selected' : '' }}>{{ __('/front/category.sales_volume') }} ({{ __('/front/category.high') . ' - ' . __('/front/category.low')}})</option>
<option value="products.sales|asc" {{ request('sort') == 'products.sales' && request('order') == 'asc' ? 'selected' : '' }}>{{ __('/front/category.sales') }} ({{ __('/front/category.low') . ' - ' . __('/front/category.high')}})</option>
<option value="products.sales|desc" {{ request('sort') == 'products.sales' && request('order') == 'desc' ? 'selected' : '' }}>{{ __('/front/category.sales') }} ({{ __('/front/category.high') . ' - ' . __('/front/category.low')}})</option>
<option value="pt.name|asc" {{ request('sort') == 'pt.name' && request('order') == 'asc' ? 'selected' : '' }}>{{ __('/front/category.name') }} (A - Z)</option>
<option value="pt.name|desc" {{ request('sort') == 'pt.name' && request('order') == 'desc' ? 'selected' : '' }}>{{ __('/front/category.name') }} (Z - A)</option>
<option value="ps.price|asc" {{ request('sort') == 'ps.price' && request('order') == 'asc' ? 'selected' : '' }}>{{ __('/front/category.price') }} ({{ __('/front/category.low') . ' - ' . __('/front/category.high')}})</option>
Expand Down
1 change: 1 addition & 0 deletions innopacks/front/resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<div class="module-title-wrap">
<div class="module-title">{{ __('front/home.feature_product') }}</div>
<div class="module-sub-title">{{ __('front/home.feature_product_text') }}</div>

</div>

<ul class="nav nav-tabs">
Expand Down
10 changes: 5 additions & 5 deletions innopacks/panel/resources/views/products/_form_variant.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,20 +133,20 @@
</div>
</td>
<td>
<input type="text" :class="['form-control form-control-sm', sku.error ? 'is-invalid other-error' : '']" @input="modifySku(sku.init_index, index, 'code')" v-model="sku.code" :placeholder="sku.sku_quantity == null || variants.length == 1 ? 'SKU Code' : '{{ __('panel/product.batch_edit') }}'">
<input type="text" :class="['form-control form-control-sm', sku.error ? 'is-invalid other-error' : '']" @input="modifySku(sku.init_index, index, 'code')" v-model="sku.code" :placeholder="sku.sku_quantity == null || variants.length == 1 ? 'SKU Code' : '{{ __("panel/product.batch_edit") }}'">
<div class="invalid-feedback">{{ __('panel/product.error_sku_repeat') }}</div>
</td>
<td>
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'price')" v-model="sku.price" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __('panel/product.price') }}' : '{{ __('panel/product.batch_edit') }}'">
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'price')" v-model="sku.price" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __("panel/product.price") }}' : '{{ __("panel/product.batch_edit") }}'">
</td>
<td>
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'origin_price')" v-model="sku.origin_price" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __('panel/product.origin_price') }}' : '{{ __('panel/product.batch_edit') }}'">
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'origin_price')" v-model="sku.origin_price" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __("panel/product.origin_price") }}' : '{{ __("panel/product.batch_edit") }}'">
</td>
<td>
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'model')" v-model="sku.model" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __('panel/product.model') }}' : '{{ __('panel/product.batch_edit') }}'">
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'model')" v-model="sku.model" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __("panel/product.model") }}' : '{{ __("panel/product.batch_edit") }}'">
</td>
<td>
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'quantity')" v-model="sku.quantity" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __('panel/product.quantity') }}' : '{{ __('panel/product.batch_edit') }}'">
<input type="text" class="form-control form-control-sm" @input="modifySku(sku.init_index, index, 'quantity')" v-model="sku.quantity" :placeholder="sku.sku_quantity == null || variants.length == 1 ? '{{ __("panel/product.quantity") }}' : '{{ __("panel/product.batch_edit") }}'">
</td>
</tr>
</tbody>
Expand Down
8 changes: 4 additions & 4 deletions lang/ar/common/address.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
*/

return [
'address' => 'العنوان',
'add_new_address' => 'إضافة عنوان جديد',
'billing_address' => 'عنوان الفاتورة',
'name' => 'الاسم',
'email' => 'البريد الإلكتروني',
'address' => 'العنوان',
'address_1' => 'العنوان الأول',
'address_2' => 'العنوان الثاني',
'billing_address' => 'عنوان الفاتورة',
'city' => 'المدينة',
'country' => 'الدولة',
'email' => 'البريد الإلكتروني',
'name' => 'الاسم',
'phone' => 'رقم الهاتف',
'shipping_address' => 'عنوان الشحن',
'state' => 'الولاية',
Expand Down
4 changes: 2 additions & 2 deletions lang/ar/front/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
*/

return [
'addresses' => 'عناويني',
'account' => 'مركز الحساب',
'addresses' => 'عناويني',
'edit' => 'تعديل البيانات',
'favorites' => 'المفضلة',
'forgotten' => 'نسيت كلمة المرور',
'hello' => 'مرحبا',
'login' => 'تسجيل الدخول',
'logout' => 'تسجيل الخروج',
'no_order' => 'ليس لديك أي أوامر حتى الآن',
'orders' => 'طلباتي',
'order_returns' => 'إرجاع الطلبات',
'orders' => 'طلباتي',
'password' => 'تغيير كلمة المرور',
'register' => 'تسجيل',
'reviews' => 'التعليقات',
Expand Down
2 changes: 1 addition & 1 deletion lang/ar/front/cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
'continue' => 'واصل التسوق',
'empty_cart' => 'عربة التسوق الخاصة بك فارغة',
'go_checkout' => 'الدفع الآن',
'product' => 'المنتج',
'price' => 'السعر',
'product' => 'المنتج',
'quantity' => 'الكمية',
'selected' => 'محدد',
'subtotal' => 'المجموع الفرعي',
Expand Down
15 changes: 7 additions & 8 deletions lang/ar/front/category.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
*/

return [
'category' => 'تصنيفات المنتجات',
'default' => 'افتراضي',
'high' => 'عالي',
'low' => 'منخفض',
'name' => 'الاسم',
'price' => 'السعر',
'sales' => 'جميع التصنيفات',
'sales_volume' => 'المبيعات',
'category' => 'تصنيفات المنتجات',
'default' => 'افتراضي',
'high' => 'عالي',
'low' => 'منخفض',
'name' => 'الاسم',
'price' => 'السعر',
'sales' => 'المبيعات',
];
4 changes: 2 additions & 2 deletions lang/ar/front/checkout.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
'order_comment' => 'تعليق على الطلب',
'password' => 'كلمة المرور غير صحيحة',
'place_order' => 'وضع الطلب',
'same_shipping_address' => 'عنوان الشحن هو نفسه لعنوان الفواتير',
'shipping_address' => 'عنوان الشحن',
'shipping_methods' => 'طرق الشحن',
'same_shipping_address' => 'عنوان الشحن هو نفسه لعنوان الفواتير',
'shipping_quote_error' => 'يرجى تنفيذ الطريقة: public function getQuotes($checkoutService)" في الإضافة :classname',
'shipping_quote_error' => 'يرجى تنفيذ الطريقة: public function getQuotes($checkoutService)\" في الإضافة :classname',
'throttle' => 'لقد قمت بمحاولات تسجيل دخول متعددة، يرجى الانتظار :seconds ثوان قبل المحاولة مرة أخرى.',
];
86 changes: 46 additions & 40 deletions lang/ar/front/common.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,44 +8,50 @@
*/

return [
'action' => 'الإجراء',
'add' => 'إضافة',
'all' => 'الكل',
'back_page' => 'عودة إلى الصفحة السابقة',
'cancel' => 'إلغاء',
'confirm' => 'تأكيد',
'created_at' => 'تاريخ الإنشاء',
'date' => 'التاريخ',
'delete' => 'حذف',
'delete_confirm' => 'هل أنت متأكد من الحذف؟',
'edit' => 'تعديل',
'error_required' => 'الرجاء ملء :name',
'first' => 'الأول',
'home' => 'الرئيسية',
'in_stock' => 'متوفر',
'last' => 'الأخير',
'logo' => 'الشعار',
'name' => 'الاسم',
'news' => 'الأخبار',
'no_order' => 'ليس لديك أي أوامر حتى الآن',
'not_enough_stock' => 'المخزون غير كافي',
'operation' => 'العمليات',
'out_of_stock' => 'غير متوفر',
'page_total_show' => 'عرض من :first إلى :last من إجمالي :total',
'password' => 'كلمة المرور',
'please_choose' => 'الرجاء التحديد',
'products' => 'المنتجات',
'register' => 'تسجيل',
'saved_success' => 'تم الحفظ بنجاح',
'search' => 'بحث',
'show' => 'عرض',
'sort' => 'ترتيب',
'status' => 'الحالة',
'submit' => 'إرسال',
'telephone' => 'رقم الهاتف',
'text_hint' => 'تلميح نصي',
'total' => 'الإجمالي',
'unpaid' => 'غير مدفوع',
'updated_success' => 'تم التحديث بنجاح',
'view' => 'عرض',
'action' => 'الإجراء',
'add' => 'إضافة',
'all' => 'الكل',
'back_page' => 'عودة إلى الصفحة السابقة',
'cancel' => 'إلغاء',
'confirm' => 'تأكيد',
'created_at' => 'تاريخ الإنشاء',
'date' => 'التاريخ',
'delete' => 'حذف',
'delete_confirm' => 'هل أنت متأكد من الحذف؟',
'deleted_success' => 'تم الحذف بنجاح',
'edit' => 'تعديل',
'error_required' => 'الرجاء ملء :name',
'first' => 'الأول',
'home' => 'الرئيسية',
'image' => 'صورة',
'in_stock' => 'متوفر',
'last' => 'الأخير',
'login' => 'تسجيل الدخول',
'logo' => 'الشعار',
'name' => 'الاسم',
'news' => 'الأخبار',
'no_order' => 'ليس لديك أي أوامر حتى الآن',
'not_enough_stock' => 'المخزون غير كافي',
'operation' => 'العمليات',
'out_of_stock' => 'غير متوفر',
'page_total_show' => 'عرض من :first إلى :last من إجمالي :total',
'pages' => 'صفحة واحدة',
'password' => 'كلمة المرور',
'please_choose' => 'الرجاء التحديد',
'products' => 'المنتجات',
'read_success' => 'تم الحصول بنجاح',
'register' => 'تسجيل',
'saved_success' => 'تم الحفظ بنجاح',
'search' => 'بحث',
'show' => 'عرض',
'sort' => 'ترتيب',
'status' => 'الحالة',
'submit' => 'إرسال',
'submitted_success' => 'تم تقديم الطلب بنجاح',
'telephone' => 'رقم الهاتف',
'text_hint' => 'تلميح نصي',
'total' => 'الإجمالي',
'unpaid' => 'غير مدفوع',
'updated_success' => 'تم التحديث بنجاح',
'view' => 'عرض',
];
2 changes: 1 addition & 1 deletion lang/ar/front/forgotten.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
'password' => 'كلمة المرور',
'password_updated' => 'تم تحديث كلمة المرور بنجاح',
'send_code' => 'إرسال الرمز',
'submit' => 'إرسال',
'subtitle_confirm' => 'الرجاء إدخال الرمز المرسل وتعيين كلمة مرور جديدة',
'subtitle_send' => 'الرجاء إدخال بريدك الإلكتروني المسجل لإرسال الرمز',
'submit' => 'إرسال',
'title' => 'الرجاء اتباع التعليمات لاستعادة كلمة المرور الخاصة بك',
'verification_code' => 'رمز التحقق',
'verification_code_sent' => 'تم إرسال الرمز إلى البريد الإلكتروني',
Expand Down
1 change: 1 addition & 0 deletions lang/ar/front/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
'retrieve_password_btn' => 'اضغط هنا لإعادة تعيين كلمة المرور',
'retrieve_password_text' => 'أنت في طريق استعادة كلمة المرور، يرجى النقر على الزر أدناه لاستكمال العملية.',
'retrieve_password_title' => 'استعادة كلمة المرور',
'welcome_register' => 'أهلاً وسهلاًبالتسجيل',
];
33 changes: 17 additions & 16 deletions lang/ar/front/order.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,37 @@
*/

return [
'product_image' => 'صورة المنتج',
'product_name' => 'اسم المنتج',
'product_spec' => 'مواصفات المنتج',
'add_review' => 'إضافة تعليق',
'add_review' => 'إضافة تقييم',
'all' => 'الكل',
'cancelled' => 'ملغى',
'close' => 'إغلاق',
'completed' => 'مكتمل',
'continue_pay' => 'الدفع الآن',
'create_rma' => 'بدء الخدمة بعد البيع',
'order' => 'الطلب',
'continue_pay' => 'تابع للدفع الآن',
'create_rma' => 'إنشاء RMA',
'image' => 'صورة',
'operation' => 'عملية',
'order' => 'طلب',
'order_billing' => 'طريقة الدفع',
'order_date' => 'تاريخ الطلب',
'order_date' => 'التاريخ',
'order_details' => 'تفاصيل الطلب',
'order_history' => 'تاريخ الطلبات',
'order_history' => 'تاريخ الطلب',
'order_items' => 'عناصر الطلب',
'order_number' => 'رقم الطلب',
'order_status' => 'حالة الطلب',
'order_total' => 'إجمالي الطلب',
'operation' => 'العملية',
'order_status' => 'الحالة',
'order_total' => 'الإجمالي',
'paid' => 'مدفوع',
'price' => 'السعر',
'product' => 'المنتج',
'product' => 'منتج',
'product_image' => 'صورة المنتج',
'product_name' => 'اسم المنتج',
'product_spec' => 'مواصفات المنتج',
'quantity' => 'الكمية',
'remark' => 'الملاحظة',
'remark' => 'ملاحظة',
'shipped' => 'تم الشحن',
'state' => 'الحالة',
'subtotal' => 'المجموع الفرعي',
'to_be_bound' => 'لربط بعد',
'to_be_used' => 'لاستخدام بعد',
'to_be_bound' => 'للربط',
'to_be_used' => 'للاستخدام',
'unpaid' => 'غير مدفوع',
'unshipped' => 'لم يتم الشحن',
];
39 changes: 20 additions & 19 deletions lang/ar/front/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,24 @@
*/

return [
'add_wishlist' => 'إضافة إلى القائمة المفضلة',
'add_to_cart' => 'إضافة إلى السلة',
'attribute' => 'السمة',
'buy_now' => 'اشترى الآن',
'category' => 'التصنيف',
'description' => 'الوصف',
'in_stock' => 'متوفر',
'model' => 'الموديل',
'out_stock' => 'غير متوفر',
'products' => 'المنتجات',
'product' => 'المنتج',
'product_name' => 'اسم المنتج',
'product_spec' => 'مواصفات المنتج',
'product_image' => 'صورة المنتج',
'review' => 'التعليق',
'sku_code' => 'كود SKU',
'submit_review' => 'إرسال التعليق',
'view_details' => 'عرض التفاصيل',
'your_review' => 'تعليقك',
'add_to_cart' => 'أضف إلى السلة',
'add_wishlist' => 'أضف إلى المفضلة',
'attribute' => 'خصائص المنتج',
'brand' => 'علامة تجارية',
'buy_now' => 'اشتري الآن',
'category' => 'فئة',
'description' => 'تفاصيل المنتج',
'in_stock' => 'متوفر',
'input_some_text_here' => 'أدخل بعض النصوص هنا',
'input_your_review' => 'أدخل مراجعتك',
'model' => 'طراز',
'out_stock' => 'غير متوفر',
'please_login_first' => 'يرجى تسجيل الدخول أولاً لتقديم المراجعة',
'products' => 'قائمة المنتجات',
'review' => 'مراجعة المنتج',
'sku_code' => 'رمز SKU',
'submit_review' => 'إرسال المراجعة',
'view_details' => 'عرض التفاصيل الآن',
'visit_order_to_review' => 'يرجى زيارة المركز الشخصي لترك مراجعة',
'your_review' => 'مراجعتك',
];
4 changes: 2 additions & 2 deletions lang/ar/front/register.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
'have_account' => 'هل لديك حساب؟ انقر للتسجيل',
'register_submit' => 'تسجيل الآن',
'register_success' => 'تم التسجيل بنجاح',
'review_date' => 'تاريخ المراجعة',
'review_number' => 'رقم المراجعة',
'register' => 'تسجيل',
'register_text' => 'يرجى ملء معلومات التسجيل في النموذج أدناه',
];
2 changes: 2 additions & 0 deletions lang/ar/front/review.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
'rating' => 'التقييم',
'review' => 'التعليق',
'review_content' => 'محتوى التعليق',
'review_date' => 'تاريخ المراجعة',
'review_number' => 'رقم المراجعة',
];
Loading

0 comments on commit 1db2916

Please sign in to comment.