Use correct language codes, updated strings

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2023-12-19 17:23:16 +00:00
parent b07133a008
commit 026ea41dee
9112 changed files with 294698 additions and 81093 deletions
@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class FixLanguageDirs extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Pull the autoglossonym array from the localizations translation file
foreach (trans('localizations.languages') as $abbr) {
$select .= '<option value="'.$abbr.'"'.(($selected == $abbr) ? ' selected="selected" role="option" aria-selected="true"' : ' aria-selected="false"').'>'.$locale.'</option> ';
}
Schema::table('models', function (Blueprint $table) {
$table->integer('min_amt')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}