Skip to content

Commit

Permalink
Merge branch '3.x' into 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Jan 11, 2025
2 parents 9253249 + 522c428 commit 3668365
Show file tree
Hide file tree
Showing 4 changed files with 236 additions and 1 deletion.
77 changes: 77 additions & 0 deletions packages/actions/resources/lang/uz/export.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?php

return [

'label' => ':labelni export qilish',

'modal' => [

'heading' => ':labelni export qilish',

'form' => [

'columns' => [

'label' => 'Ustunlar',

'form' => [

'is_enabled' => [
'label' => ':column yoqilgan',
],

'label' => [
'label' => ':column belgi',
],

],

],

],

'actions' => [

'export' => [
'label' => 'Export',
],

],

],

'notifications' => [

'completed' => [

'title' => 'Export yakunlandi',

'actions' => [

'download_csv' => [
'label' => 'Yuklab olish .csv',
],

'download_xlsx' => [
'label' => 'Yuklab olish .xlsx',
],

],

],

'max_rows' => [
'title' => 'Export qilish uchun juda katta',
'body' => 'Bir vaqtning o\'zida 1 tadan ortiq qatorni eksport qila olmaysiz.|Bir vaqtning o\'zida :count satrdan ortiq eksport qila olmaysiz.',
],

'started' => [
'title' => 'Export boshlandi',
'body' => 'Eksportingiz boshlandi va 1 qator fonda qayta ishlanadi. Tugallangach, yuklab olish havolasi bilan bildirishnoma olasiz.|Eksportingiz boshlandi va :count qatorlari fonda qayta ishlanadi. Yuklab olish tugallangandan so\'ng siz yuklab olish havolasi bilan bildirishnoma olasiz.',
],

],

'file_name' => 'export-:export_id-:model',

];
85 changes: 85 additions & 0 deletions packages/actions/resources/lang/uz/import.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<?php

return [

'label' => ':labelni import qilish',

'modal' => [

'heading' => ':labelni import qilish',

'form' => [

'file' => [

'label' => 'Fayl',

'placeholder' => 'CSV faylini yuklang',

'rules' => [
'duplicate_columns' => '{0} Faylda bittadan ortiq boʻsh ustun sarlavhasi boʻlmasligi kerak.|{1,*} Faylda ikki nusxadagi ustun sarlavhalari boʻlmasligi kerak: :columns.',
],

],

'columns' => [
'label' => 'Ustunlar',
'placeholder' => 'Ustunni tanlang',
],

],

'actions' => [

'download_example' => [
'label' => 'Na\'muna CSV faylni yuklab oling',
],

'import' => [
'label' => 'Import',
],

],

],

'notifications' => [

'completed' => [

'title' => 'Import yakunlandi',

'actions' => [

'download_failed_rows_csv' => [
'label' => 'Muvaffaqiyatsiz satr haqida ma\'lumotni yuklab oling|Muvaffaqiyatsiz qatorlar haqida ma\'lumotni yuklab oling',
],

],

],

'max_rows' => [
'title' => 'Yuklangan CSV fayl juda katta',
'body' => 'Bir vaqtning o\'zida 1 tadan ortiq qatorni import qila olmaysiz.|Bir vaqtning o\'zida :count dan ortiq qatorni import qila olmaysiz.',
],

'started' => [
'title' => 'Import boshlandi',
'body' => 'Importingiz boshlandi va 1 qator fonda qayta ishlanadi.|Importingiz boshlandi va :count qatorlari fonda qayta ishlanadi.',
],

],

'example_csv' => [
'file_name' => ':importer-example',
],

'failure_csv' => [
'file_name' => 'import-:import_id-:csv_name-failed-rows',
'error_header' => 'xatolik',
'system_error' => 'Tizim xatosi, yordam xizmatiga murojaat qiling.',
'column_mapping_required_for_new_record' => ':atribut ustuni fayldagi ustunga moslashtirilmagan, lekin u yangi yozuvlar yaratish uchun talab qilinadi.',
],

];
73 changes: 73 additions & 0 deletions packages/forms/resources/lang/uz/components.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,64 @@

'add' => [
'label' => ':labelga qo\'shish',

'modal' => [

'heading' => ':labelga qo\'shish',

'actions' => [

'add' => [
'label' => 'Qo\'shish',
],

],

],
],

'add_between' => [
'label' => 'Orasiga kiritish',

'modal' => [

'heading' => ':labelga qo\'shish',

'actions' => [

'add' => [
'label' => 'Qo\'shish',
],

],

],
],

'delete' => [
'label' => 'O\'chirish',
],

'edit' => [

'label' => 'O\'zgartirish',

'modal' => [

'heading' => 'O\'zgartirish',

'actions' => [

'save' => [
'label' => 'O\'zgarishlarni saqlash',
],

],

],

],

'reorder' => [
'label' => 'Ko\'chirish',
],
Expand Down Expand Up @@ -406,4 +454,29 @@
'placeholder' => 'Yangi teg',
],

'text_input' => [

'actions' => [

'hide_password' => [
'label' => 'Parolni yashirish',
],

'show_password' => [
'label' => 'Parolni ko\'rsatish',
],

],

],

'toggle_buttons' => [

'boolean' => [
'true' => 'Ha',
'false' => 'Yo\'q',
],

],

];
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
@if ($datalistOptions)
<datalist id="{{ $id }}-list">
@foreach ($datalistOptions as $option)
<option value="{{ $option }}" />
<option value="{{ $option }}"></option>
@endforeach
</datalist>
@endif
Expand Down

0 comments on commit 3668365

Please sign in to comment.