diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index e1d5448625..089552ecf9 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2266,6 +2266,20 @@ $LANG = array( 'analytics_key' => 'Analytics Key', 'analytics_key_help' => 'Track payments using :link', 'start_date_required' => 'The start date is required', + 'application_settings' => 'Application Settings', + 'database_connection' => 'Database Connection', + 'driver' => 'Driver', + 'host' => 'Host', + 'database' => 'Database', + 'test_connection' => 'Test connection', + 'from_name' => 'From Name', + 'from_address' => 'From Address', + 'port' => 'Port', + 'encryption' => 'Encryption', + 'mailgun_domain' => 'Mailgun Domain', + 'mailgun_private_key' => 'Mailgun Private Key', + 'send_test_email' => 'Send test email', + ); diff --git a/resources/views/partials/system_settings.blade.php b/resources/views/partials/system_settings.blade.php index 30b38eb77e..f58728da04 100644 --- a/resources/views/partials/system_settings.blade.php +++ b/resources/views/partials/system_settings.blade.php @@ -1,6 +1,6 @@
-

Application Settings

+

{{ trans('texts.application_settings') }}

{!! Former::text('app[url]')->label(trans('texts.url'))->value(isset($_ENV['APP_URL']) ? $_ENV['APP_URL'] : Request::root()) !!} @@ -12,52 +12,52 @@
-

Database Connection

+

{{ trans('texts.database_connection') }}

- {{--- Former::select('database[default]')->label('Driver')->options(['mysql' => 'MySQL', 'pgsql' => 'PostgreSQL', 'sqlite' => 'SQLite']) + {{--- Former::select('database[default]')->label('driver')->options(['mysql' => 'MySQL', 'pgsql' => 'PostgreSQL', 'sqlite' => 'SQLite']) ->value(isset($_ENV['DB_TYPE']) ? $_ENV['DB_TYPE'] : 'mysql') ---}} {!! Former::plaintext('Driver')->value('MySQL') !!} - {!! Former::text('database[type][host]')->label('Host')->value(isset($_ENV['DB_HOST']) ? $_ENV['DB_HOST'] : 'localhost') !!} - {!! Former::text('database[type][database]')->label('Database')->value(isset($_ENV['DB_DATABASE']) ? $_ENV['DB_DATABASE'] : 'ninja') !!} - {!! Former::text('database[type][username]')->label('Username')->value(isset($_ENV['DB_USERNAME']) ? $_ENV['DB_USERNAME'] : 'ninja') !!} - {!! Former::password('database[type][password]')->label('Password')->value(isset($_ENV['DB_PASSWORD']) ? $_ENV['DB_PASSWORD'] : 'ninja') !!} - {!! Former::actions( Button::primary('Test connection')->small()->withAttributes(['onclick' => 'testDatabase()']), '  ' ) !!} + {!! Former::text('database[type][host]')->label('host')->value(isset($_ENV['DB_HOST']) ? $_ENV['DB_HOST'] : 'localhost') !!} + {!! Former::text('database[type][database]')->label('database')->value(isset($_ENV['DB_DATABASE']) ? $_ENV['DB_DATABASE'] : 'ninja') !!} + {!! Former::text('database[type][username]')->label('username')->value(isset($_ENV['DB_USERNAME']) ? $_ENV['DB_USERNAME'] : 'ninja') !!} + {!! Former::password('database[type][password]')->label('password')->value(isset($_ENV['DB_PASSWORD']) ? $_ENV['DB_PASSWORD'] : 'ninja') !!} + {!! Former::actions( Button::primary(trans('texts.test_connection'))->small()->withAttributes(['onclick' => 'testDatabase()']), '  ' ) !!}
@if (!isset($_ENV['POSTMARK_API_TOKEN']))
-

Email Settings

+

{{ trans('texts.email_settings') }}

- {!! Former::select('mail[driver]')->label('Driver')->options(['smtp' => 'SMTP', 'mail' => 'Mail', 'sendmail' => 'Sendmail', 'mailgun' => 'Mailgun']) + {!! Former::select('mail[driver]')->label('driver')->options(['smtp' => 'SMTP', 'mail' => 'Mail', 'sendmail' => 'Sendmail', 'mailgun' => 'Mailgun']) ->value(isset($_ENV['MAIL_DRIVER']) ? $_ENV['MAIL_DRIVER'] : 'smtp')->setAttributes(['onchange' => 'mailDriverChange()']) !!} - {!! Former::text('mail[from][name]')->label('From Name') + {!! Former::text('mail[from][name]')->label('from_name') ->value(isset($_ENV['MAIL_FROM_NAME']) ? $_ENV['MAIL_FROM_NAME'] : '') !!} - {!! Former::text('mail[from][address]')->label('From Address') + {!! Former::text('mail[from][address]')->label('from_address') ->value(isset($_ENV['MAIL_FROM_ADDRESS']) ? $_ENV['MAIL_FROM_ADDRESS'] : '') !!} - {!! Former::text('mail[username]')->label('Username') + {!! Former::text('mail[username]')->label('username') ->value(isset($_ENV['MAIL_USERNAME']) ? $_ENV['MAIL_USERNAME'] : '') !!}
- {!! Former::text('mail[host]')->label('Host') + {!! Former::text('mail[host]')->label('host') ->value(isset($_ENV['MAIL_HOST']) ? $_ENV['MAIL_HOST'] : '') !!} - {!! Former::text('mail[port]')->label('Port') + {!! Former::text('mail[port]')->label('port') ->value(isset($_ENV['MAIL_PORT']) ? $_ENV['MAIL_PORT'] : '587') !!} - {!! Former::select('mail[encryption]')->label('Encryption') + {!! Former::select('mail[encryption]')->label('encryption') ->options(['tls' => 'TLS', 'ssl' => 'SSL', '' => 'None']) ->value(isset($_ENV['MAIL_ENCRYPTION']) ? $_ENV['MAIL_ENCRYPTION'] : 'tls') !!} - {!! Former::password('mail[password]')->label('Password') + {!! Former::password('mail[password]')->label('password') ->value(isset($_ENV['MAIL_PASSWORD']) ? $_ENV['MAIL_PASSWORD'] : '') !!}
- {!! Former::text('mail[mailgun_domain]')->label('Mailgun Domain') + {!! Former::text('mail[mailgun_domain]')->label('mailgun_domain') ->value(isset($_ENV['MAILGUN_DOMAIN']) ? $_ENV['MAILGUN_DOMAIN'] : '') !!} - {!! Former::text('mail[mailgun_secret]')->label('Mailgun Private Key') + {!! Former::text('mail[mailgun_secret]')->label('mailgun_private_key') ->value(isset($_ENV['MAILGUN_SECRET']) ? $_ENV['MAILGUN_SECRET'] : '') !!}
- {!! Former::actions( Button::primary('Send test email')->small()->withAttributes(['onclick' => 'testMail()']), '  ' ) !!} + {!! Former::actions( Button::primary(trans('texts.send_test_email'))->small()->withAttributes(['onclick' => 'testMail()']), '  ' ) !!}
@endif