You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using clusters, it is recommended that you move all of your resources and pages into a directory with the same name as the cluster. For example, here is a directory structure for a panel that uses a cluster called `Settings`, containing a `ColorResource` and two custom pages:
70
70
71
71
```
72
-
Clusters/
73
-
└── Settings/
74
-
├── SettingsCluster.php
75
-
├── Pages/
76
-
│ ├── ManageBranding.php
77
-
│ └── ManageNotifications.php
78
-
└── Resources/
79
-
└── Colors/
80
-
├── ColorResource.php
81
-
└── Pages/
82
-
├── CreateColor.php
83
-
├── EditColor.php
84
-
└── ListColors.php
72
+
.
73
+
+-- Clusters
74
+
| +-- Settings
75
+
| | +-- SettingsCluster.php
76
+
| | +-- Pages
77
+
| | | +-- ManageBranding.php
78
+
| | | +-- ManageNotifications.php
79
+
| | +-- Resources
80
+
| | | +-- Colors
81
+
| | | | +-- ColorResource.php
82
+
| | | | +-- Pages
83
+
| | | | | +-- CreateColor.php
84
+
| | | | | +-- EditColor.php
85
+
| | | | | +-- ListColors.php
85
86
```
86
87
87
88
This is a recommendation, not a requirement. You can structure your panel however you like, as long as the resources and pages in your cluster use the [`$cluster`](#adding-resources-and-pages-to-a-cluster) property. This is just a suggestion to help you keep your panel organized.
Copy file name to clipboardExpand all lines: packages/actions/resources/lang/lt/import.php
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,12 @@
12
12
13
13
'file' => [
14
14
'label' => 'Failas',
15
+
15
16
'placeholder' => 'Įkelti CSV failą',
17
+
18
+
'rules' => [
19
+
'duplicate_columns' => '{0} Failas neturi turėti daugiau nei vieną tuščią stulpelio antraštę.|{1,*} Failas neturi turėti pasikartojančių stulpelio antraščių: :columns.',
0 commit comments