Skip to content

Commit

Permalink
convert all to translation files
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Jul 30, 2024
1 parent d3f2bc5 commit 266ecc0
Show file tree
Hide file tree
Showing 53 changed files with 852 additions and 561 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"flowframe/laravel-trend": "^0.2",
"guava/filament-icon-picker": "^2.0",
"lara-zeus/accordion": "^1.1",
"lara-zeus/core": "^3.1",
"lara-zeus/core": "^4.0",
"lara-zeus/list-group": "^1.0",
"ryangjchandler/blade-tabler-icons": "^2.3"
},
Expand Down
50 changes: 29 additions & 21 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions resources/lang/en/category.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
return [
'label' => 'Category',
'plural_label' => 'Categories',
'navigation_label' => 'Categories',
'name' => 'Name',
'slug' => 'Slug',
'ordering' => 'Ordering',
'is_active' => 'Is Active',
'not_active' => 'Not Active',
'description' => 'Description',
'logo' => 'Logo',
'Forms' => 'forms',
];
12 changes: 12 additions & 0 deletions resources/lang/en/collection.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
return [
'label' => 'Collection',
'plural_label' => 'Collections',
'navigation_label' => 'Collections',
'name' => 'Collections Name',
'values' => 'Collections Values',
'value' => 'Value',
'key' => 'what the user will see',
'key_help' => 'what store in the form',
'default' => 'selected by default',
];
55 changes: 55 additions & 0 deletions resources/lang/en/fields_types.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php
return [
'checkbox_list' => [
'title' => 'Checkbox List',
'description' => 'checkbox items from data source',
],
'color_picker' => [
'title' => 'Color Picker',
'description' => 'pick a color with rgb, rgba or hsl',
],
'date_picker' => [
'title' => 'Date Picker',
'description' => 'full date picker',
],
'date_time_picker' => [
'title' => 'Date Time Picker',
'description' => 'full date and time picker',
],
'file_upload' => [
'title' => 'File Upload',
'description' => 'single or multiple file uploader',
],
'paragraph' => [
'title' => 'Paragraph',
'description' => 'display a paragraph in your form',
],
'radio' => [
'title' => 'Radio',
'description' => 'single choice from a datasource',
],
'rich_editor' => [
'title' => 'Rich Editor',
'description' => 'Text editor with styling',
],
'select' => [
'title' => 'Select Menu',
'description' => 'select single or multiple items from a dropdown list',
],
'textarea' => [
'title' => 'Textarea',
'description' => 'multi line textarea',
],
'text_input' => [
'title' => 'Text Input',
'description' => 'text input',
],
'time_picker' => [
'title' => 'Time Picker',
'description' => 'time picker',
],
'toggle' => [
'title' => 'Toggle',
'description' => 'toggle',
],
];
Loading

0 comments on commit 266ecc0

Please sign in to comment.