🌐 Translate missing pdf archiving lines

This commit is contained in:
MarceauKa 2020-04-09 19:37:23 +02:00
parent d83cf2374e
commit ddfa5559d6
5 changed files with 29 additions and 15 deletions

View File

@ -36,6 +36,8 @@ return [
'title' => "Archivierung",
'link_archive_pdf' => "PDF-Archivierung (Webseiten zu PDF)",
'node_bin' => "ausführbare Node.js-Datei",
'archive_pdf_width' => 'Seitenbreite',
'archive_pdf_height' => 'Seitenhöhe',
'link_archive_media' => "Archvierung der Medien (Youtube, Soundcloud, ...)",
'youtube_dl_bin' => "ausführbare Youtube-dl-Datei",
'python_bin' => 'ausführbare Python-Datei',

View File

@ -36,6 +36,8 @@ return [
'title' => "Archivage",
'link_archive_pdf' => "Archiver les pages en PDF",
'node_bin' => "Éxécutable node.js",
'archive_pdf_width' => 'Largeur du PDF',
'archive_pdf_height' => 'Hauteur du PDF',
'link_archive_media' => "Archiver les médias (Youtube, Soundcloud, ...)",
'youtube_dl_bin' => "Éxécutable Youtube-dl",
'python_bin' => 'Éxécutable Python',

View File

@ -36,6 +36,8 @@ return [
'title' => 'アーカイブ中',
'link_archive_pdf' => 'PDFアーカイブ (サイトをPDF化)',
'node_bin' => 'Node.jsバイナリ',
'archive_pdf_width' => 'ページ幅',
'archive_pdf_height' => 'ページの高さ',
'link_archive_media' => 'メディアアーカイブ (Youtube, Soundcloud, ...)',
'youtube_dl_bin' => 'Youtube-dlバイナリ',
'python_bin' => 'Pythonバイナリ',

View File

@ -37,6 +37,8 @@ return [
'title' => 'Archiveren',
'link_archive_pdf' => 'PDF archiveren (Web pagina\'s naar PDF)',
'node_bin' => 'Node.js binary',
'archive_pdf_width' => 'Paginabreedte',
'archive_pdf_height' => 'Paginahoogte',
'link_archive_media' => 'Media archiveren (Youtube, Soundcloud, ...)',
'youtube_dl_bin' => 'Youtube-dl binary',
'python_bin' => 'Python binary',

View File

@ -193,22 +193,28 @@
@enderror
</div>
<div class="form-group">
<label for="archive_pdf_width">{{ __('shaark.settings.archiving.archive_pdf_width') }}</label>
<input type="number" class="form-control {{ $errors->has('archive_pdf_width') ? ' is-invalid' : '' }}" step="1" min="800" max="5000"
name="archive_pdf_width" id="archive_pdf_width" value="{{ old('archive_pdf_width', $settings['archive_pdf_width']) }}">
@error('archive_pdf_width')
<span class="invalid-feedback" role="alert">{{ $message }}</span>
@enderror
</div>
<div class="row">
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="archive_pdf_width">{{ __('shaark.settings.archiving.archive_pdf_width') }}</label>
<input type="number" class="form-control {{ $errors->has('archive_pdf_width') ? ' is-invalid' : '' }}" step="1" min="100" max="3840"
name="archive_pdf_width" id="archive_pdf_width" value="{{ old('archive_pdf_width', $settings['archive_pdf_width']) }}">
@error('archive_pdf_width')
<span class="invalid-feedback" role="alert">{{ $message }}</span>
@enderror
</div>
</div>
<div class="form-group">
<label for="archive_pdf_height">{{ __('shaark.settings.archiving.archive_pdf_height') }}</label>
<input type="number" class="form-control {{ $errors->has('archive_pdf_height') ? ' is-invalid' : '' }}" step="1" min="800" max="5000"
name="archive_pdf_height" id="archive_pdf_height" value="{{ old('archive_pdf_height', $settings['archive_pdf_height']) }}">
@error('archive_pdf_height')
<span class="invalid-feedback" role="alert">{{ $message }}</span>
@enderror
<div class="col-12 col-sm-6">
<div class="form-group">
<label for="archive_pdf_height">{{ __('shaark.settings.archiving.archive_pdf_height') }}</label>
<input type="number" class="form-control {{ $errors->has('archive_pdf_height') ? ' is-invalid' : '' }}" step="1" min="100" max="2160"
name="archive_pdf_height" id="archive_pdf_height" value="{{ old('archive_pdf_height', $settings['archive_pdf_height']) }}">
@error('archive_pdf_height')
<span class="invalid-feedback" role="alert">{{ $message }}</span>
@enderror
</div>
</div>
</div>
<div class="form-group">