mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
new library added
This commit is contained in:
14
config/eloquent-sortable.php
Normal file
14
config/eloquent-sortable.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
* Which column will be used as the order column.
|
||||
*/
|
||||
'order_column_name' => 'order_column',
|
||||
|
||||
/*
|
||||
* Define if the models should sort when creating.
|
||||
* When true, the package will automatically assign the highest order number to a new mode
|
||||
*/
|
||||
'sort_when_creating' => true,
|
||||
];
|
||||
234
config/ignition.php
Normal file
234
config/ignition.php
Normal file
@@ -0,0 +1,234 @@
|
||||
<?php
|
||||
|
||||
use Spatie\Ignition\Solutions\SolutionProviders\BadMethodCallSolutionProvider;
|
||||
use Spatie\Ignition\Solutions\SolutionProviders\MergeConflictSolutionProvider;
|
||||
use Spatie\Ignition\Solutions\SolutionProviders\UndefinedPropertySolutionProvider;
|
||||
use Spatie\LaravelIgnition\Recorders\DumpRecorder\DumpRecorder;
|
||||
use Spatie\LaravelIgnition\Recorders\JobRecorder\JobRecorder;
|
||||
use Spatie\LaravelIgnition\Recorders\LogRecorder\LogRecorder;
|
||||
use Spatie\LaravelIgnition\Recorders\QueryRecorder\QueryRecorder;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\DefaultDbNameSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\GenericLaravelExceptionSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\IncorrectValetDbCredentialsSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\InvalidRouteActionSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingAppKeySolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingColumnSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingImportSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingLivewireComponentSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingMixManifestSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingViteManifestSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\RunningLaravelDuskInProductionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\TableNotFoundSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UndefinedViewVariableSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UnknownValidationSolutionProvider;
|
||||
use Spatie\LaravelIgnition\Solutions\SolutionProviders\ViewNotFoundSolutionProvider;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Editor
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Choose your preferred editor to use when clicking any edit button.
|
||||
|
|
||||
| Supported: "phpstorm", "vscode", "vscode-insiders", "textmate", "emacs",
|
||||
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
|
||||
| "xdebug"
|
||||
|
|
||||
*/
|
||||
|
||||
'editor' => env('IGNITION_EDITOR', 'phpstorm'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Theme
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which theme Ignition should use.
|
||||
|
|
||||
| Supported: "light", "dark", "auto"
|
||||
|
|
||||
*/
|
||||
|
||||
'theme' => env('IGNITION_THEME', 'dark'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sharing
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You can share local errors with colleagues or others around the world.
|
||||
| Sharing is completely free and doesn't require an account on Flare.
|
||||
|
|
||||
| If necessary, you can completely disable sharing below.
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_share_button' => env('IGNITION_SHARING_ENABLED', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register Ignition commands
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Ignition comes with an additional make command that lets you create
|
||||
| new solution classes more easily. To keep your default Laravel
|
||||
| installation clean, this command is not registered by default.
|
||||
|
|
||||
| You can enable the command registration below.
|
||||
|
|
||||
*/
|
||||
|
||||
'register_commands' => env('REGISTER_IGNITION_COMMANDS', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Solution Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may specify a list of solution providers (as fully qualified class
|
||||
| names) that shouldn't be loaded. Ignition will ignore these classes
|
||||
| and possible solutions provided by them will never be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'solution_providers' => [
|
||||
// from spatie/ignition
|
||||
BadMethodCallSolutionProvider::class,
|
||||
MergeConflictSolutionProvider::class,
|
||||
UndefinedPropertySolutionProvider::class,
|
||||
|
||||
// from spatie/laravel-ignition
|
||||
IncorrectValetDbCredentialsSolutionProvider::class,
|
||||
MissingAppKeySolutionProvider::class,
|
||||
DefaultDbNameSolutionProvider::class,
|
||||
TableNotFoundSolutionProvider::class,
|
||||
MissingImportSolutionProvider::class,
|
||||
InvalidRouteActionSolutionProvider::class,
|
||||
ViewNotFoundSolutionProvider::class,
|
||||
RunningLaravelDuskInProductionProvider::class,
|
||||
MissingColumnSolutionProvider::class,
|
||||
UnknownValidationSolutionProvider::class,
|
||||
MissingMixManifestSolutionProvider::class,
|
||||
MissingViteManifestSolutionProvider::class,
|
||||
MissingLivewireComponentSolutionProvider::class,
|
||||
UndefinedViewVariableSolutionProvider::class,
|
||||
GenericLaravelExceptionSolutionProvider::class,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Ignored Solution Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may specify a list of solution providers (as fully qualified class
|
||||
| names) that shouldn't be loaded. Ignition will ignore these classes
|
||||
| and possible solutions provided by them will never be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'ignored_solution_providers' => [
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Runnable Solutions
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some solutions that Ignition displays are runnable and can perform
|
||||
| various tasks. By default, runnable solutions are only enabled when your
|
||||
| app has debug mode enabled and the environment is `local` or
|
||||
| `development`.
|
||||
|
|
||||
| Using the `IGNITION_ENABLE_RUNNABLE_SOLUTIONS` environment variable, you
|
||||
| can override this behaviour and enable or disable runnable solutions
|
||||
| regardless of the application's environment.
|
||||
|
|
||||
| Default: env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS')
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Remote Path Mapping
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you are using a remote dev server, like Laravel Homestead, Docker, or
|
||||
| even a remote VPS, it will be necessary to specify your path mapping.
|
||||
|
|
||||
| Leaving one, or both of these, empty or null will not trigger the remote
|
||||
| URL changes and Ignition will treat your editor links as local files.
|
||||
|
|
||||
| "remote_sites_path" is an absolute base path for your sites or projects
|
||||
| in Homestead, Vagrant, Docker, or another remote development server.
|
||||
|
|
||||
| Example value: "/home/vagrant/Code"
|
||||
|
|
||||
| "local_sites_path" is an absolute base path for your sites or projects
|
||||
| on your local computer where your IDE or code editor is running on.
|
||||
|
|
||||
| Example values: "/Users/<name>/Code", "C:\Users\<name>\Documents\Code"
|
||||
|
|
||||
*/
|
||||
|
||||
'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', '/var/www/html'),
|
||||
'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', '/home/fsociety/Code/side/einundzwanzig-bitcoin-school'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Housekeeping Endpoint Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Ignition registers a couple of routes when it is enabled. Below you may
|
||||
| specify a route prefix that will be used to host all internal links.
|
||||
|
|
||||
*/
|
||||
|
||||
'housekeeping_endpoint_prefix' => '_ignition',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Settings File
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Ignition allows you to save your settings to a specific global file.
|
||||
|
|
||||
| If no path is specified, a file with settings will be saved to the user's
|
||||
| home directory. The directory depends on the OS and its settings but it's
|
||||
| typically `~/.ignition.json`. In this case, the settings will be applied
|
||||
| to all of your projects where Ignition is used and the path is not
|
||||
| specified.
|
||||
|
|
||||
| However, if you want to store your settings on a project basis, or you
|
||||
| want to keep them in another directory, you can specify a path where
|
||||
| the settings file will be saved. The path should be an existing directory
|
||||
| with correct write access.
|
||||
| For example, create a new `ignition` folder in the storage directory and
|
||||
| use `storage_path('ignition')` as the `settings_file_path`.
|
||||
|
|
||||
| Default value: '' (empty string)
|
||||
*/
|
||||
|
||||
'settings_file_path' => '',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Recorders
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Ignition registers a couple of recorders when it is enabled. Below you may
|
||||
| specify a recorders will be used to record specific events.
|
||||
|
|
||||
*/
|
||||
|
||||
'recorders' => [
|
||||
DumpRecorder::class,
|
||||
JobRecorder::class,
|
||||
LogRecorder::class,
|
||||
QueryRecorder::class
|
||||
]
|
||||
];
|
||||
188
config/languages/languages.php
Normal file
188
config/languages/languages.php
Normal file
@@ -0,0 +1,188 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'ab' => 'Abkhazian',
|
||||
'aa' => 'Afar',
|
||||
'af' => 'Afrikaans',
|
||||
'ak' => 'Akan',
|
||||
'sq' => 'Albanian',
|
||||
'am' => 'Amharic',
|
||||
'ar' => 'Arabic',
|
||||
'an' => 'Aragonese',
|
||||
'hy' => 'Armenian',
|
||||
'as' => 'Assamese',
|
||||
'av' => 'Avaric',
|
||||
'ae' => 'Avestan',
|
||||
'ay' => 'Aymara',
|
||||
'az' => 'Azerbaijani',
|
||||
'bm' => 'Bambara',
|
||||
'ba' => 'Bashkir',
|
||||
'eu' => 'Basque',
|
||||
'be' => 'Belarusian',
|
||||
'bn' => 'Bengali',
|
||||
'bh' => 'Bihari languages',
|
||||
'bi' => 'Bislama',
|
||||
'bs' => 'Bosnian',
|
||||
'br' => 'Breton',
|
||||
'bg' => 'Bulgarian',
|
||||
'my' => 'Burmese',
|
||||
'ca' => 'Catalan, Valencian',
|
||||
'km' => 'Central Khmer',
|
||||
'ch' => 'Chamorro',
|
||||
'ce' => 'Chechen',
|
||||
'ny' => 'Chichewa, Chewa, Nyanja',
|
||||
'zh' => 'Chinese',
|
||||
'cu' => 'Church Slavonic, Old Bulgarian, Old Church Slavonic',
|
||||
'cv' => 'Chuvash',
|
||||
'kw' => 'Cornish',
|
||||
'co' => 'Corsican',
|
||||
'cr' => 'Cree',
|
||||
'hr' => 'Croatian',
|
||||
'cs' => 'Czech',
|
||||
'da' => 'Danish',
|
||||
'dv' => 'Divehi, Dhivehi, Maldivian',
|
||||
'nl' => 'Dutch, Flemish',
|
||||
'dz' => 'Dzongkha',
|
||||
'en' => 'English',
|
||||
'eo' => 'Esperanto',
|
||||
'et' => 'Estonian',
|
||||
'ee' => 'Ewe',
|
||||
'fo' => 'Faroese',
|
||||
'fj' => 'Fijian',
|
||||
'fi' => 'Finnish',
|
||||
'fr' => 'French',
|
||||
'ff' => 'Fulah',
|
||||
'gd' => 'Gaelic, Scottish Gaelic',
|
||||
'gl' => 'Galician',
|
||||
'lg' => 'Ganda',
|
||||
'ka' => 'Georgian',
|
||||
'de' => 'German',
|
||||
'ki' => 'Gikuyu, Kikuyu',
|
||||
'el' => 'Greek (Modern)',
|
||||
'kl' => 'Greenlandic, Kalaallisut',
|
||||
'gn' => 'Guarani',
|
||||
'gu' => 'Gujarati',
|
||||
'ht' => 'Haitian, Haitian Creole',
|
||||
'ha' => 'Hausa',
|
||||
'he' => 'Hebrew',
|
||||
'hz' => 'Herero',
|
||||
'hi' => 'Hindi',
|
||||
'ho' => 'Hiri Motu',
|
||||
'hu' => 'Hungarian',
|
||||
'is' => 'Icelandic',
|
||||
'io' => 'Ido',
|
||||
'ig' => 'Igbo',
|
||||
'id' => 'Indonesian',
|
||||
'ia' => 'Interlingua (International Auxiliary Language Association)',
|
||||
'ie' => 'Interlingue',
|
||||
'iu' => 'Inuktitut',
|
||||
'ik' => 'Inupiaq',
|
||||
'ga' => 'Irish',
|
||||
'it' => 'Italian',
|
||||
'ja' => 'Japanese',
|
||||
'jv' => 'Javanese',
|
||||
'kn' => 'Kannada',
|
||||
'kr' => 'Kanuri',
|
||||
'ks' => 'Kashmiri',
|
||||
'kk' => 'Kazakh',
|
||||
'rw' => 'Kinyarwanda',
|
||||
'kv' => 'Komi',
|
||||
'kg' => 'Kongo',
|
||||
'ko' => 'Korean',
|
||||
'kj' => 'Kwanyama, Kuanyama',
|
||||
'ku' => 'Kurdish',
|
||||
'ky' => 'Kyrgyz',
|
||||
'lo' => 'Lao',
|
||||
'la' => 'Latin',
|
||||
'lv' => 'Latvian',
|
||||
'lb' => 'Letzeburgesch, Luxembourgish',
|
||||
'li' => 'Limburgish, Limburgan, Limburger',
|
||||
'ln' => 'Lingala',
|
||||
'lt' => 'Lithuanian',
|
||||
'lu' => 'Luba-Katanga',
|
||||
'mk' => 'Macedonian',
|
||||
'mg' => 'Malagasy',
|
||||
'ms' => 'Malay',
|
||||
'ml' => 'Malayalam',
|
||||
'mt' => 'Maltese',
|
||||
'gv' => 'Manx',
|
||||
'mi' => 'Maori',
|
||||
'mr' => 'Marathi',
|
||||
'mh' => 'Marshallese',
|
||||
'ro' => 'Moldovan, Moldavian, Romanian',
|
||||
'mn' => 'Mongolian',
|
||||
'na' => 'Nauru',
|
||||
'nv' => 'Navajo, Navaho',
|
||||
'nd' => 'Northern Ndebele',
|
||||
'ng' => 'Ndonga',
|
||||
'ne' => 'Nepali',
|
||||
'se' => 'Northern Sami',
|
||||
'no' => 'Norwegian',
|
||||
'nb' => 'Norwegian Bokmål',
|
||||
'nn' => 'Norwegian Nynorsk',
|
||||
'ii' => 'Nuosu, Sichuan Yi',
|
||||
'oc' => 'Occitan (post 1500)',
|
||||
'oj' => 'Ojibwa',
|
||||
'or' => 'Oriya',
|
||||
'om' => 'Oromo',
|
||||
'os' => 'Ossetian, Ossetic',
|
||||
'pi' => 'Pali',
|
||||
'pa' => 'Panjabi, Punjabi',
|
||||
'ps' => 'Pashto, Pushto',
|
||||
'fa' => 'Persian',
|
||||
'pl' => 'Polish',
|
||||
'pt' => 'Portuguese',
|
||||
'qu' => 'Quechua',
|
||||
'rm' => 'Romansh',
|
||||
'rn' => 'Rundi',
|
||||
'ru' => 'Russian',
|
||||
'sm' => 'Samoan',
|
||||
'sg' => 'Sango',
|
||||
'sa' => 'Sanskrit',
|
||||
'sc' => 'Sardinian',
|
||||
'sr' => 'Serbian',
|
||||
'sn' => 'Shona',
|
||||
'sd' => 'Sindhi',
|
||||
'si' => 'Sinhala, Sinhalese',
|
||||
'sk' => 'Slovak',
|
||||
'sl' => 'Slovenian',
|
||||
'so' => 'Somali',
|
||||
'st' => 'Sotho, Southern',
|
||||
'nr' => 'South Ndebele',
|
||||
'es' => 'Spanish, Castilian',
|
||||
'su' => 'Sundanese',
|
||||
'sw' => 'Swahili',
|
||||
'ss' => 'Swati',
|
||||
'sv' => 'Swedish',
|
||||
'tl' => 'Tagalog',
|
||||
'ty' => 'Tahitian',
|
||||
'tg' => 'Tajik',
|
||||
'ta' => 'Tamil',
|
||||
'tt' => 'Tatar',
|
||||
'te' => 'Telugu',
|
||||
'th' => 'Thai',
|
||||
'bo' => 'Tibetan',
|
||||
'ti' => 'Tigrinya',
|
||||
'to' => 'Tonga (Tonga Islands)',
|
||||
'ts' => 'Tsonga',
|
||||
'tn' => 'Tswana',
|
||||
'tr' => 'Turkish',
|
||||
'tk' => 'Turkmen',
|
||||
'tw' => 'Twi',
|
||||
'ug' => 'Uighur, Uyghur',
|
||||
'uk' => 'Ukrainian',
|
||||
'ur' => 'Urdu',
|
||||
'uz' => 'Uzbek',
|
||||
've' => 'Venda',
|
||||
'vi' => 'Vietnamese',
|
||||
'vo' => 'Volap_k',
|
||||
'wa' => 'Walloon',
|
||||
'cy' => 'Welsh',
|
||||
'fy' => 'Western Frisian',
|
||||
'wo' => 'Wolof',
|
||||
'xh' => 'Xhosa',
|
||||
'yi' => 'Yiddish',
|
||||
'yo' => 'Yoruba',
|
||||
'za' => 'Zhuang, Chuang',
|
||||
'zu' => 'Zulu'
|
||||
];
|
||||
@@ -1,44 +1,98 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
[
|
||||
'de' => 'Hardware Wallet',
|
||||
'en' => 'Hardware Wallet',
|
||||
'icon' => 'wallet',
|
||||
'course' => [
|
||||
[
|
||||
'de' => 'Hardware Wallet',
|
||||
'en' => 'Hardware Wallet',
|
||||
'icon' => 'wallet',
|
||||
],
|
||||
[
|
||||
'de' => 'Software Wallet',
|
||||
'en' => 'Software Wallet',
|
||||
'icon' => 'message-code',
|
||||
],
|
||||
[
|
||||
'de' => 'Lightning',
|
||||
'en' => 'Lightning',
|
||||
'icon' => 'bolt-lightning',
|
||||
],
|
||||
[
|
||||
'de' => 'On-Chain',
|
||||
'en' => 'On-Chain',
|
||||
'icon' => 'link-horizontal',
|
||||
],
|
||||
[
|
||||
'de' => 'Off-Chain',
|
||||
'en' => 'Off-Chain',
|
||||
'icon' => 'link-horizontal-slash',
|
||||
],
|
||||
[
|
||||
'de' => 'Für Unternehmen',
|
||||
'en' => 'For Businesses',
|
||||
'icon' => 'buildings',
|
||||
],
|
||||
[
|
||||
'de' => 'Mining',
|
||||
'en' => 'Mining',
|
||||
'icon' => 'pickaxe',
|
||||
],
|
||||
[
|
||||
'de' => 'Datenschutz',
|
||||
'en' => 'Privacy',
|
||||
'icon' => 'shield-keyhole',
|
||||
],
|
||||
],
|
||||
[
|
||||
'de' => 'Software Wallet',
|
||||
'en' => 'Software Wallet',
|
||||
'icon' => 'message-code',
|
||||
],
|
||||
[
|
||||
'de' => 'Lightning',
|
||||
'en' => 'Lightning',
|
||||
'icon' => 'bolt-lightning',
|
||||
],
|
||||
[
|
||||
'de' => 'On-Chain',
|
||||
'en' => 'On-Chain',
|
||||
'icon' => 'link-horizontal',
|
||||
],
|
||||
[
|
||||
'de' => 'Off-Chain',
|
||||
'en' => 'Off-Chain',
|
||||
'icon' => 'link-horizontal-slash',
|
||||
],
|
||||
[
|
||||
'de' => 'Für Unternehmen',
|
||||
'en' => 'For Businesses',
|
||||
'icon' => 'buildings',
|
||||
],
|
||||
[
|
||||
'de' => 'Mining',
|
||||
'en' => 'Mining',
|
||||
'icon' => 'pickaxe',
|
||||
],
|
||||
[
|
||||
'de' => 'Datenschutz',
|
||||
'en' => 'Privacy',
|
||||
'icon' => 'shield-keyhole',
|
||||
'library_item' => [
|
||||
[
|
||||
'de' => 'Bitcoin',
|
||||
'en' => 'Bitcoin',
|
||||
'icon' => 'book',
|
||||
],
|
||||
[
|
||||
'de' => 'Lightning',
|
||||
'en' => 'Lightning',
|
||||
'icon' => 'bolt-lightning',
|
||||
],
|
||||
[
|
||||
'de' => 'Blockchain',
|
||||
'en' => 'Blockchain',
|
||||
'icon' => 'link-horizontal',
|
||||
],
|
||||
[
|
||||
'de' => 'On-Chain',
|
||||
'en' => 'On-Chain',
|
||||
'icon' => 'link-horizontal',
|
||||
],
|
||||
[
|
||||
'de' => 'Off-Chain',
|
||||
'en' => 'Off-Chain',
|
||||
'icon' => 'link-horizontal-slash',
|
||||
],
|
||||
[
|
||||
'de' => 'Mining',
|
||||
'en' => 'Mining',
|
||||
'icon' => 'pickaxe',
|
||||
],
|
||||
[
|
||||
'de' => 'Proof of Work',
|
||||
'en' => 'Proof of Work',
|
||||
'icon' => 'pickaxe',
|
||||
],
|
||||
[
|
||||
'de' => 'Datenschutz',
|
||||
'en' => 'Privacy',
|
||||
'icon' => 'shield-keyhole',
|
||||
],
|
||||
[
|
||||
'de' => 'Downloads',
|
||||
'en' => 'Downloads',
|
||||
'icon' => 'download',
|
||||
],
|
||||
[
|
||||
'de' => 'Präsentationen',
|
||||
'en' => 'Presentations',
|
||||
'icon' => 'presentation-screen',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user