diff --git a/config/translation-manager.php b/config/translation-manager.php deleted file mode 100644 index f5cf0be9..00000000 --- a/config/translation-manager.php +++ /dev/null @@ -1,72 +0,0 @@ - [ - 'prefix' => 'translations', - 'middleware' => [ - 'web', - 'auth', - ], - ], - - /** - * Enable deletion of translations - * - * @type boolean - */ - 'delete_enabled' => true, - - /** - * Exclude specific groups from Laravel Translation Manager. - * This is useful if, for example, you want to avoid editing the official Laravel language files. - * - * @type array - * - * array( - * 'pagination', - * 'reminders', - * 'validation', - * ) - */ - 'exclude_groups' => [], - - /** - * Exclude specific languages from Laravel Translation Manager. - * - * @type array - * - * array( - * 'fr', - * 'de', - * ) - */ - 'exclude_langs' => [], - - /** - * Export translations with keys output alphabetically. - */ - 'sort_keys' => false, - - 'trans_functions' => [ - 'trans', - 'trans_choice', - 'Lang::get', - 'Lang::choice', - 'Lang::trans', - 'Lang::transChoice', - '@lang', - '@choice', - '__', - '$trans.get', - ], - -]; diff --git a/database/migrations/2014_04_02_193005_create_translations_table.php b/database/migrations/2014_04_02_193005_create_translations_table.php deleted file mode 100644 index 053d09c2..00000000 --- a/database/migrations/2014_04_02_193005_create_translations_table.php +++ /dev/null @@ -1,38 +0,0 @@ -collation = 'utf8mb4_bin'; - $table->bigIncrements('id'); - $table->integer('status')->default(0); - $table->string('locale'); - $table->string('group'); - $table->text('key'); - $table->text('value')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::drop('ltm_translations'); - } - -}