* Started designing the backend localization service * Worked in Transloco for initial PoC * Worked in Transloco for initial PoC * Translated the login screen * translated dashboard screen * Started work on the backend * Fixed a logic bug * translated edit-user screen * Hooked up the backend for having a locale property. * Hooked up the ability to view the available locales and switch to them. * Made the localization service languages be derived from what's in langs/ directory. * Fixed up localization switching * Switched when we check for a license on UI bootstrap * Tweaked some code * Fixed the bug where dashboard wasn't loading and made it so language switching is working. * Fixed a bug on dashboard with languagePath * Converted user-scrobble-history.component.html * Converted spoiler.component.html * Converted review-series-modal.component.html * Converted review-card-modal.component.html * Updated the readme * Translated using Weblate (English) Currently translated at 100.0% (54 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/en/ * Converted review-card.component.html * Deleted dead component * Converted want-to-read.component.html * Added translation using Weblate (Korean) * Translated using Weblate (Spanish) Currently translated at 40.7% (22 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/es/ * Translated using Weblate (Korean) Currently translated at 62.9% (34 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/ko/ * Converted user-preferences.component.html * Translated using Weblate (Korean) Currently translated at 92.5% (50 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/ko/ * Converted user-holds.component.html * Converted theme-manager.component.html * Converted restriction-selector.component.html * Converted manage-devices.component.html * Converted edit-device.component.html * Converted change-password.component.html * Converted change-email.component.html * Converted change-age-restriction.component.html * Converted api-key.component.html * Converted anilist-key.component.html * Converted typeahead.component.html * Converted user-stats-info-cards.component.html * Converted user-stats.component.html * Converted top-readers.component.html * Converted some pipes and ensure translation is loaded before the app. * Finished all but one pipe for localization * Converted directory-picker.component.html * Converted library-access-modal.component.html * Converted a few components * Converted a few components * Converted a few components * Converted a few components * Converted a few components * Merged weblate in * ... -> … update * Updated the readme * Updateded all fonts to be woff2 * Cleaned up some strings to increase re-use * Removed an old flow (that doesn't exist in backend any longer) from when we introduced emails on Kavita. * Converted Series detail * Lots more converted * Lots more converted & hooked up the ability to flatten during prod build the language files. * Lots more converted * Lots more converted & fixed a bunch of broken pipes due to inject() * Lots more converted * Lots more converted * Lots more converted & fixed some bad keys * Lots more converted * Fixed some bugs with admin dasbhoard nested tabs not rendering on first load due to not using onpush change detection * Fixed up some localization errors and fixed forgot password error when the user doesn't have change password permission * Fixed a stupid build issue again * Started adding errors for interceptor and backend. * Finished off manga-reader * More translations * Few fixes * Fixed a bug where character tag badges weren't showing the name on chapter info * All components are translated * All toasts are translated * All confirm/alerts are translated * Trying something new for the backend * Migrated the localization strings for the backend into a new file. * Updated the localization service to be able to do backend localization with fallback to english. * Cleaned up some external reviews code to reduce looping * Localized AccountController.cs * 60% done with controllers * All controllers are done * All KavitaExceptions are covered * Some shakeout fixes * Prep for initial merge * Everything is done except options and basic shakeout proves response times are good. Unit tests are broken. * Fixed up the unit tests * All unit tests are now working * Removed some quantifier * I'm not sure I can support localization for some Volume/Chapter/Book strings within the codebase. --------- Co-authored-by: Robbie Davis <robbie@therobbiedavis.com> Co-authored-by: majora2007 <kavitareader@gmail.com> Co-authored-by: expertjun <jtrobin@naver.com> Co-authored-by: ThePromidius <thepromidiusyt@gmail.com>
210 lines
11 KiB
HTML
210 lines
11 KiB
HTML
<ng-container *transloco="let t; read: 'library-settings-modal'">
|
|
<div class="modal-header">
|
|
<h4 class="modal-title" id="modal-basic-title">
|
|
<ng-container *ngIf="!isAddLibrary; else addLibraryTitle">
|
|
{{t('edit-title', {name: library.name | sentenceCase})}}
|
|
</ng-container>
|
|
<ng-template #addLibraryTitle>
|
|
{{t('add-title')}}
|
|
</ng-template>
|
|
</h4>
|
|
<button type="button" class="btn-close" [attr.aria-label]="t('close')" (click)="close()"></button>
|
|
</div>
|
|
<form [formGroup]="libraryForm">
|
|
<div class="modal-body scrollable-modal {{utilityService.getActiveBreakpoint() === Breakpoint.Mobile ? '' : 'd-flex'}}">
|
|
<ul ngbNav #nav="ngbNav" [(activeId)]="active" class="nav-pills"
|
|
orientation="{{utilityService.getActiveBreakpoint() === Breakpoint.Mobile ? 'horizontal' : 'vertical'}}" style="min-width: 135px;">
|
|
|
|
<li [ngbNavItem]="TabID.General">
|
|
<a ngbNavLink>{{t(TabID.General)}}</a>
|
|
<ng-template ngbNavContent>
|
|
<div class="mb-3">
|
|
<label for="library-name" class="form-label">{{t('name-label')}}</label>
|
|
<input id="library-name" class="form-control" formControlName="name" type="text" [class.is-invalid]="libraryForm.get('name')?.invalid && libraryForm.get('name')?.touched">
|
|
<div id="inviteForm-validations" class="invalid-feedback" *ngIf="libraryForm.dirty || libraryForm.touched">
|
|
<div *ngIf="libraryForm.get('name')?.errors?.required">
|
|
{{t('required-field')}}
|
|
</div>
|
|
<div *ngIf="libraryForm.get('name')?.errors?.duplicateName">
|
|
{{t('library-name-unique')}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="library-type" class="form-label">{{t('type-label')}}</label><i class="fa fa-info-circle ms-1" placement="right" [ngbTooltip]="typeTooltip" role="button" tabindex="0"></i>
|
|
<ng-template #typeTooltip>{{t('type-tooltip')}}</ng-template>
|
|
<span class="visually-hidden" id="library-type-help">
|
|
<ng-container [ngTemplateOutlet]="typeTooltip"></ng-container>
|
|
</span>
|
|
<select class="form-select" id="library-type" formControlName="type" aria-describedby="library-type-help">
|
|
<option [value]="i" *ngFor="let opt of libraryTypes; let i = index">{{opt}}</option>
|
|
</select>
|
|
</div>
|
|
<div *ngIf="!isAddLibrary">
|
|
{{t('last-scanned-label')}}
|
|
<span>{{library.lastScanned | date: 'short' | defaultDate}}</span>
|
|
</div>
|
|
</ng-template>
|
|
</li>
|
|
|
|
|
|
<li [ngbNavItem]="TabID.Folder" [disabled]="isAddLibrary && setupStep < 1">
|
|
<a ngbNavLink>{{t(TabID.Folder)}}</a>
|
|
<ng-template ngbNavContent>
|
|
<p>{{t('folder-description')}}</p>
|
|
<ul class="list-group" style="width: 100%">
|
|
<li class="list-group-item" *ngFor="let folder of selectedFolders; let i = index">
|
|
{{folder}}
|
|
<button class="btn float-end btn-sm" (click)="removeFolder(folder)"><i class="fa fa-times-circle" aria-hidden="true"></i></button>
|
|
</li>
|
|
</ul>
|
|
<div class="row mt-2">
|
|
<button class="btn btn-secondary float-end btn-sm" (click)="openDirectoryPicker()">
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
|
{{t('browse')}}
|
|
</button>
|
|
</div>
|
|
<div class="row mt-2">
|
|
<p>{{t('help-us-part-1')}}<a href="https://wiki.kavitareader.com/en/guides/managing-your-files" rel="noopener noreferrer" target="_blank" referrerpolicy="no-refer">{{t('help-us-part-2')}}</a> {{t('help-us-part-3')}}</p>
|
|
</div>
|
|
<div class="row mt-2">
|
|
<p>{{t('naming-conventions-part-1')}}<a href="https://wiki.kavitareader.com/en/guides/managing-your-files/scanner#introduction" rel="noopener noreferrer" target="_blank" referrerpolicy="no-refer">{{t('naming-conventions-part-2')}}</a> {{t('naming-conventions-part-3')}}</p>
|
|
</div>
|
|
</ng-template>
|
|
</li>
|
|
|
|
<li [ngbNavItem]="TabID.Cover" [disabled]="isAddLibrary && setupStep < 2">
|
|
<a ngbNavLink>{{t(TabID.Cover)}}</a>
|
|
<ng-template ngbNavContent>
|
|
<p *ngIf="isAddLibrary" class="alert alert-secondary" role="alert">{{t('cover-description')}}</p>
|
|
<p>{{t('cover-description-extra')}}</p>
|
|
<app-cover-image-chooser [(imageUrls)]="imageUrls"
|
|
[showReset]="false"
|
|
[showApplyButton]="true"
|
|
(applyCover)="applyCoverImage($event)"
|
|
(resetCover)="resetCoverImage()"
|
|
>
|
|
</app-cover-image-chooser>
|
|
</ng-template>
|
|
</li>
|
|
|
|
<li [ngbNavItem]="TabID.Advanced" [disabled]="isAddLibrary && setupStep < 3">
|
|
<a ngbNavLink>{{t(TabID.Advanced)}}</a>
|
|
<ng-template ngbNavContent>
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="manage-collections" role="switch" formControlName="manageCollections" class="form-check-input">
|
|
<label class="form-check-label" for="manage-collections">{{t('manage-collection-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('manage-collection-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="manage-readinglists" role="switch" formControlName="manageReadingLists" class="form-check-input">
|
|
<label class="form-check-label" for="manage-readinglists">{{t('manage-reading-list-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('manage-reading-list-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="scrobbling" role="switch" formControlName="allowScrobbling" class="form-check-input">
|
|
<label class="form-check-label" for="scrobbling">{{t('allow-scrobbling-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('allow-scrobbling-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="lib-folder-watching" role="switch" formControlName="folderWatching" class="form-check-input" aria-labelledby="auto-close-label">
|
|
<label class="form-check-label" for="lib-folder-watching">{{t('folder-watching-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('folder-watching-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="include-dashboard" role="switch" formControlName="includeInDashboard" class="form-check-input" aria-labelledby="auto-close-label">
|
|
<label class="form-check-label" for="include-dashboard">{{t('include-in-dashboard-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('include-in-dashboard-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="include-recommended" role="switch" formControlName="includeInRecommended" class="form-check-input" aria-labelledby="auto-close-label">
|
|
<label class="form-check-label" for="include-recommended">{{t('include-in-recommendation-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('include-in-recommendation-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 col-sm-12 pe-2 mb-2">
|
|
<div class="mb-3 mt-1">
|
|
<div class="form-check form-switch">
|
|
<input type="checkbox" id="include-search" role="switch" formControlName="includeInSearch" class="form-check-input" aria-labelledby="auto-close-label">
|
|
<label class="form-check-label" for="include-search">{{t('include-in-search-label')}}</label>
|
|
</div>
|
|
</div>
|
|
<p class="accent">
|
|
{{t('include-in-search-tooltip')}}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</ng-template>
|
|
</li>
|
|
</ul>
|
|
|
|
<div [ngbNavOutlet]="nav" class="tab-content {{utilityService.getActiveBreakpoint() === Breakpoint.Mobile ? 'mt-3' : 'ms-4 flex-fill'}}"></div>
|
|
</div>
|
|
</form>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-light" (click)="forceScan()" position="above"
|
|
[ngbTooltip]="t('force-scan-tooltip')">{{t('force-scan')}}</button>
|
|
<button type="button" class="btn btn-light" (click)="reset()">{{t('reset')}}</button>
|
|
<button type="button" class="btn btn-secondary" (click)="close()">{{t('cancel')}}</button>
|
|
|
|
<ng-container *ngIf="isAddLibrary && setupStep !== 3; else editLibraryButton">
|
|
<button type="button" class="btn btn-primary" (click)="nextStep()" [disabled]="isNextDisabled() || libraryForm.invalid">{{t('next')}}</button>
|
|
</ng-container>
|
|
<ng-template #editLibraryButton>
|
|
<button type="button" class="btn btn-primary" [disabled]="isDisabled()" (click)="save()">{{t('save')}}</button>
|
|
</ng-template>
|
|
</div>
|
|
|
|
</ng-container>
|