mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
Merge branch 'DotNetCore' of https://github.com/tidusjar/Ombi into DotNetCore
This commit is contained in:
commit
eb5eb074b8
11 changed files with 126 additions and 159 deletions
|
@ -31,7 +31,7 @@
|
|||
<ul class="nav navbar-nav">
|
||||
<li id="Requests" [routerLinkActive]="['active']">
|
||||
<a [routerLink]="['/requests']">
|
||||
<i class="fa fa-plus"></i> {{ 'NavigationBar.Requests' | translate }}</a>
|
||||
<i class="fa fa-th-list"></i> {{ 'NavigationBar.Requests' | translate }}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul *ngIf="issuesEnabled" class="nav navbar-nav">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div *ngIf="landingPageSettings && customizationSettings">
|
||||
<img *ngIf="background" class="landingDiv bg" [style.background-image]="background" />
|
||||
<div *ngIf="background" class="bg" [style.background-image]="background"></div>
|
||||
|
||||
<div class="centered col-md-12">
|
||||
<div class="row">
|
||||
|
|
|
@ -1,29 +1,19 @@
|
|||
landingDiv {
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
div.centered {
|
||||
div.centered {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
img.bg {
|
||||
/* Set rules to fill background */
|
||||
min-height: 100%;
|
||||
min-width: 1024px;
|
||||
/* Set up proportionate scaling */
|
||||
width: 100%;
|
||||
height: auto;
|
||||
/* Set up positioning */
|
||||
div.bg {
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-clip: inherit;
|
||||
background-size: cover;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.vcenter {
|
||||
|
@ -47,12 +37,4 @@ img.bg {
|
|||
|
||||
p {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 1024px) { /* Specific to this particular image */
|
||||
img.bg {
|
||||
left: 50%;
|
||||
margin-left: -512px; /* 50% */
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,7 +4,7 @@ include the remember me checkbox
|
|||
-->
|
||||
<div *ngIf="form && customizationSettings">
|
||||
|
||||
<img *ngIf="background" class="landingDiv bg" [style.background-image]="background" />
|
||||
<div *ngIf="background" class="bg" [style.background-image]="background"></div>
|
||||
<div class="container" id="login">
|
||||
<div class="card card-container">
|
||||
<!-- <img class="profile-img-card" src="//lh3.googleusercontent.com/-6V8xOA6M7BA/AAAAAAAAAAI/AAAAAAAAAAA/rzlHcD0KYwo/photo.jpg?sz=120" alt="" /> -->
|
||||
|
|
|
@ -16,36 +16,21 @@ body, html {
|
|||
background-image: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33)) !important;
|
||||
}
|
||||
|
||||
landingDiv {
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
img.center {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
img.bg {
|
||||
/* Set rules to fill background */
|
||||
min-height: 100%;
|
||||
min-width: 1024px;
|
||||
/* Set up proportionate scaling */
|
||||
width: 100%;
|
||||
height: auto;
|
||||
/* Set up positioning */
|
||||
div.bg {
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-clip: inherit;
|
||||
background-size: cover;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: -1;
|
||||
/*-webkit-filter: blur(5px);
|
||||
-moz-filter: blur(5px);
|
||||
-o-filter: blur(5px);
|
||||
-ms-filter: blur(5px);
|
||||
filter: blur(5px);*/
|
||||
}
|
||||
|
||||
.card-container.card {
|
||||
|
|
|
@ -3,7 +3,7 @@ you can substitue the span of reauth email for a input with the email and
|
|||
include the remember me checkbox
|
||||
-->
|
||||
<div *ngIf="form && customizationSettings && background">
|
||||
<img class="landingDiv bg" [style.background-image]="background" />
|
||||
<div class="bg" [style.background-image]="background"></div>
|
||||
<div class="container" id="login">
|
||||
<div class="card card-container">
|
||||
<!-- <img class="profile-img-card" src="//lh3.googleusercontent.com/-6V8xOA6M7BA/AAAAAAAAAAI/AAAAAAAAAAA/rzlHcD0KYwo/photo.jpg?sz=120" alt="" /> -->
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"Search": "Søg",
|
||||
"Requests": "Anmodninger",
|
||||
"UserManagement": "Brugeradministration",
|
||||
"Issues": "Issues",
|
||||
"Issues": "Problemer",
|
||||
"Donate": "Donér!",
|
||||
"DonateTooltip": "Sådan overbeviser jeg min kone om, at jeg skal bruge min fritid på at udvikle Ombi :)",
|
||||
"UpdateAvailableTooltip": "Ny opdatering venter!",
|
||||
|
@ -105,22 +105,22 @@
|
|||
"GridStatus": "Status"
|
||||
},
|
||||
"Issues": {
|
||||
"Title": "Issues",
|
||||
"PendingTitle": "Pending Issues",
|
||||
"InProgressTitle": "In Progress Issues",
|
||||
"ResolvedTitle": "Resolved Issues",
|
||||
"ColumnTitle": "Title",
|
||||
"Category": "Category",
|
||||
"Title": "Problemer",
|
||||
"PendingTitle": "Afventende problemer",
|
||||
"InProgressTitle": "Igangværende probemer",
|
||||
"ResolvedTitle": "Løste problemer",
|
||||
"ColumnTitle": "Titel",
|
||||
"Category": "Kategori",
|
||||
"Status": "Status",
|
||||
"Details": "Details",
|
||||
"Description": "Description",
|
||||
"NoComments": "No Comments!",
|
||||
"MarkInProgress": "Mark In Progress",
|
||||
"MarkResolved": "Mark Resolved",
|
||||
"Details": "Detaljer",
|
||||
"Description": "Beskrivelse",
|
||||
"NoComments": "Ingen kommentarer!",
|
||||
"MarkInProgress": "Markér som igangværende",
|
||||
"MarkResolved": "Markér som løst",
|
||||
"SendMessageButton": "Send",
|
||||
"Subject": "Subject",
|
||||
"Comments": "Comments",
|
||||
"WriteMessagePlaceholder": "Write your message here...",
|
||||
"ReportedBy": "Reported By"
|
||||
"Subject": "Emne",
|
||||
"Comments": "Kommentarer",
|
||||
"WriteMessagePlaceholder": "Indtast din besked her...",
|
||||
"ReportedBy": "Anmeldt af"
|
||||
}
|
||||
}
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"Login": {
|
||||
"SignInButton": "Entrar",
|
||||
"UsernamePlaceholder": "Nombre de usuario",
|
||||
"SignInButton": "Iniciar sesión",
|
||||
"UsernamePlaceholder": "Usuario",
|
||||
"PasswordPlaceholder": "Contraseña",
|
||||
"RememberMe": "Recordarme",
|
||||
"ForgottenPassword": "Has olvidado tu contraseña?",
|
||||
"RememberMe": "Recuérdame",
|
||||
"ForgottenPassword": "¿Has olvidado tu contraseña?",
|
||||
"Errors": {
|
||||
"IncorrectCredentials": "Nombre de usuario o contraseña\nincorrectos"
|
||||
}
|
||||
},
|
||||
"Common": {
|
||||
"ContinueButton": "Continuar",
|
||||
"ContinueButton": "Continue",
|
||||
"Available": "Disponible",
|
||||
"ProcessingRequest": "Procesando solicitud",
|
||||
"PendingApproval": "Pendiente de aprobación",
|
||||
|
@ -21,36 +21,36 @@
|
|||
"Denied": "Denegado",
|
||||
"Approve": "Aprobar",
|
||||
"Errors": {
|
||||
"Validation": "Por favor, compruebe los valores introducidos"
|
||||
"Validation": "Por favor, comprueba los datos introducidos"
|
||||
}
|
||||
},
|
||||
"PasswordReset": {
|
||||
"EmailAddressPlaceholder": "Dirección de correo electrónico",
|
||||
"ResetPasswordButton": "Restablecer contraseña"
|
||||
"EmailAddressPlaceholder": "Correo electrónico",
|
||||
"ResetPasswordButton": "Reset Password"
|
||||
},
|
||||
"LandingPage": {
|
||||
"OnlineHeading": "Actualmente en línea",
|
||||
"OnlineParagraph": "El servidor de medios es actualmente en línea",
|
||||
"PartiallyOnlineHeading": "Parcialmente en línea",
|
||||
"PartiallyOnlineParagraph": "El servidor de medios es parcialmente en línea.",
|
||||
"MultipleServersUnavailable": "Hay servidores de {{serversUnavailable}} línea de {{totalServers}}.",
|
||||
"SingleServerUnavailable": "Hay {{serversUnavailable}} servidor offline fuera de {{totalServers}}.",
|
||||
"OfflineHeading": "Actualmente fuera de línea",
|
||||
"OfflineParagraph": "El servidor de medios está actualmente fuera de línea.",
|
||||
"CheckPageForUpdates": "Consulte esta página para estar actualizado con las últiimas novedades."
|
||||
"OnlineHeading": "En línea",
|
||||
"OnlineParagraph": "El servidor de medios esta en línea",
|
||||
"PartiallyOnlineHeading": "Partially Online",
|
||||
"PartiallyOnlineParagraph": "El servidor de medios está parcialmente en línea.",
|
||||
"MultipleServersUnavailable": "{{serversUnavailable}} de {{totalServers}} servidores están fuera de línea.",
|
||||
"SingleServerUnavailable": "There is {{serversUnavailable}} server offline out of {{totalServers}}.",
|
||||
"OfflineHeading": "Fuera de línea",
|
||||
"OfflineParagraph": "El servidor de medios está fuera de línea.",
|
||||
"CheckPageForUpdates": "Consulte esta página para ver las últimas novedades."
|
||||
},
|
||||
"NavigationBar": {
|
||||
"Search": "Búsqueda de",
|
||||
"Requests": "Solicitudes de",
|
||||
"UserManagement": "Gestión de usuarios",
|
||||
"Issues": "Issues",
|
||||
"Donate": "¡Dona!",
|
||||
"DonateTooltip": "Esto es cómo convencer a mi esposa que me dejara pasar mi tiempo libre desarrollando Ombi ;)",
|
||||
"UpdateAvailableTooltip": "¡Actualización disponible!",
|
||||
"Settings": "Configuración",
|
||||
"Welcome": "Bienvenido {{username}}",
|
||||
"UpdateDetails": "Actualizar datos",
|
||||
"Logout": "Cierre de sesión",
|
||||
"Search": "Buscar",
|
||||
"Requests": "Solicitar",
|
||||
"UserManagement": "User Management",
|
||||
"Issues": "Incidencias",
|
||||
"Donate": "¡Donar!",
|
||||
"DonateTooltip": "Para que mi esposa me deje desarrollar Ombi ;)",
|
||||
"UpdateAvailableTooltip": "Update Available!",
|
||||
"Settings": "Ajustes",
|
||||
"Welcome": "Welcome {{username}}",
|
||||
"UpdateDetails": "Update Details",
|
||||
"Logout": "Cerrar sesión",
|
||||
"Language": {
|
||||
"English": "Inglés",
|
||||
"French": "Francés",
|
||||
|
@ -63,7 +63,7 @@
|
|||
},
|
||||
"Search": {
|
||||
"Title": "Buscar",
|
||||
"Paragraph": "¿Quieres ver algo que no está disponible actualmente? No hay problema, sólo tienes que buscarlo debajo y solicitarlo!",
|
||||
"Paragraph": "¿Quieres ver algo que no está disponible? No hay problema, búscalo y solicítalo!",
|
||||
"MoviesTab": "Películas",
|
||||
"TvTab": "Series",
|
||||
"Suggestions": "Sugerencias",
|
||||
|
@ -105,22 +105,22 @@
|
|||
"GridStatus": "Estado"
|
||||
},
|
||||
"Issues": {
|
||||
"Title": "Issues",
|
||||
"PendingTitle": "Pending Issues",
|
||||
"InProgressTitle": "In Progress Issues",
|
||||
"ResolvedTitle": "Resolved Issues",
|
||||
"ColumnTitle": "Title",
|
||||
"Category": "Category",
|
||||
"Status": "Status",
|
||||
"Details": "Details",
|
||||
"Description": "Description",
|
||||
"NoComments": "No Comments!",
|
||||
"MarkInProgress": "Mark In Progress",
|
||||
"MarkResolved": "Mark Resolved",
|
||||
"SendMessageButton": "Send",
|
||||
"Subject": "Subject",
|
||||
"Comments": "Comments",
|
||||
"WriteMessagePlaceholder": "Write your message here...",
|
||||
"ReportedBy": "Reported By"
|
||||
"Title": "Incidencias",
|
||||
"PendingTitle": "Incidencias pendientes",
|
||||
"InProgressTitle": "Incidencias en progreso",
|
||||
"ResolvedTitle": "Incidencias resueltas",
|
||||
"ColumnTitle": "Título",
|
||||
"Category": "Categoría",
|
||||
"Status": "Estado",
|
||||
"Details": "Detalles",
|
||||
"Description": "Descripción",
|
||||
"NoComments": "¡Sin comentarios!",
|
||||
"MarkInProgress": "Marcar En Proceso",
|
||||
"MarkResolved": "Marcar resuelto",
|
||||
"SendMessageButton": "Enviar",
|
||||
"Subject": "Asunto",
|
||||
"Comments": "Comentarios",
|
||||
"WriteMessagePlaceholder": "Escribe tu mensaje aquí...",
|
||||
"ReportedBy": "Informado por"
|
||||
}
|
||||
}
|
|
@ -43,7 +43,7 @@
|
|||
"Search": "Rechercher",
|
||||
"Requests": "Demandes",
|
||||
"UserManagement": "Gestion des utilisateurs",
|
||||
"Issues": "Issues",
|
||||
"Issues": "Problèmes",
|
||||
"Donate": "Faire un don !",
|
||||
"DonateTooltip": "C’est pour convaincre ma femme de me laisser passer mon temps libre à développer Ombi ;)",
|
||||
"UpdateAvailableTooltip": "Mise à jour disponible !",
|
||||
|
@ -105,22 +105,22 @@
|
|||
"GridStatus": "Statut"
|
||||
},
|
||||
"Issues": {
|
||||
"Title": "Issues",
|
||||
"PendingTitle": "Pending Issues",
|
||||
"InProgressTitle": "In Progress Issues",
|
||||
"ResolvedTitle": "Resolved Issues",
|
||||
"ColumnTitle": "Title",
|
||||
"Category": "Category",
|
||||
"Status": "Status",
|
||||
"Details": "Details",
|
||||
"Title": "Problèmes",
|
||||
"PendingTitle": "Problèmes en attente",
|
||||
"InProgressTitle": "Problèmes en cours de traitement",
|
||||
"ResolvedTitle": "Problèmes résolus",
|
||||
"ColumnTitle": "Titre",
|
||||
"Category": "Catégorie",
|
||||
"Status": "Statut",
|
||||
"Details": "Détails",
|
||||
"Description": "Description",
|
||||
"NoComments": "No Comments!",
|
||||
"MarkInProgress": "Mark In Progress",
|
||||
"MarkResolved": "Mark Resolved",
|
||||
"SendMessageButton": "Send",
|
||||
"Subject": "Subject",
|
||||
"Comments": "Comments",
|
||||
"WriteMessagePlaceholder": "Write your message here...",
|
||||
"ReportedBy": "Reported By"
|
||||
"NoComments": "Aucun commentaire !",
|
||||
"MarkInProgress": "Marquer en cours de traitement",
|
||||
"MarkResolved": "Marquer résolu",
|
||||
"SendMessageButton": "Envoyer",
|
||||
"Subject": "Sujet",
|
||||
"Comments": "Commentaires",
|
||||
"WriteMessagePlaceholder": "Ecrivez votre message ici...",
|
||||
"ReportedBy": "Signalé par"
|
||||
}
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
"SignInButton": "Aanmelden",
|
||||
"UsernamePlaceholder": "Gebruikersnaam",
|
||||
"PasswordPlaceholder": "Wachtwoord",
|
||||
"RememberMe": "Onthoud mijn gegevens",
|
||||
"RememberMe": "Onthoud Mij",
|
||||
"ForgottenPassword": "Wachtwoord vergeten?",
|
||||
"Errors": {
|
||||
"IncorrectCredentials": "Onjuiste gebruikersnaam of wachtwoord"
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"Available": "Tillgänglig",
|
||||
"ProcessingRequest": "Bearbetar förfrågan",
|
||||
"PendingApproval": "I väntan på godkännande",
|
||||
"RequestDenied": "Begäran nekas",
|
||||
"RequestDenied": "Efterfrågan nekas",
|
||||
"NotRequested": "Inte önskad",
|
||||
"Requested": "Begärd önskan",
|
||||
"Request": "Begär",
|
||||
|
@ -43,7 +43,7 @@
|
|||
"Search": "Sök",
|
||||
"Requests": "Förfrågningar",
|
||||
"UserManagement": "Användarhantering",
|
||||
"Issues": "Issues",
|
||||
"Issues": "Problem",
|
||||
"Donate": "Donera!",
|
||||
"DonateTooltip": "Det är så här jag övertygar min fru att jag vill spendera min fritid att utveckla Ombi ;)",
|
||||
"UpdateAvailableTooltip": "Uppdatering tillgänglig!",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"NoResults": "Tyvärr, hittade vi inte några resultat!",
|
||||
"ReleaseDate": "Publiceringsdatum",
|
||||
"ViewOnPlex": "Visa på Plex",
|
||||
"RequestAdded": "Begäran om {{title}} har lagts till framgångsrikt",
|
||||
"RequestAdded": "Efterfrågan om {{title}} har lagts till",
|
||||
"Movies": {
|
||||
"PopularMovies": "Populära filmer",
|
||||
"UpcomingMovies": "Kommande filmer",
|
||||
|
@ -81,16 +81,16 @@
|
|||
}
|
||||
},
|
||||
"Requests": {
|
||||
"Title": "Förfrågningar",
|
||||
"Paragraph": "Nedan kan du se din och andra förfrågningar, samt status och godkännande.",
|
||||
"Title": "Efterfrågningar",
|
||||
"Paragraph": "Nedan kan du se din och andras efterfrågningar, samt nedladdnings och godkännande status.",
|
||||
"MoviesTab": "Filmer",
|
||||
"TvTab": "TV-serier",
|
||||
"RequestedBy": "Begärts av:",
|
||||
"RequestedBy": "Efterfrågats av:",
|
||||
"Status": "Status:",
|
||||
"RequestStatus:": "Begärandestatus för:",
|
||||
"RequestStatus:": "Efterfrågandestatus för:",
|
||||
"Denied": " Nekad:",
|
||||
"ReleaseDate": "Releasedatum:",
|
||||
"RequestDate": "Datum för begäran:",
|
||||
"RequestDate": "Datum för efterfrågan:",
|
||||
"QualityOverride": "Kvalité överskridande:",
|
||||
"RootFolderOverride": "Root mapp överskridande:",
|
||||
"ChangeRootFolder": "Byt Root mapp",
|
||||
|
@ -105,22 +105,22 @@
|
|||
"GridStatus": "Status"
|
||||
},
|
||||
"Issues": {
|
||||
"Title": "Issues",
|
||||
"PendingTitle": "Pending Issues",
|
||||
"InProgressTitle": "In Progress Issues",
|
||||
"ResolvedTitle": "Resolved Issues",
|
||||
"ColumnTitle": "Title",
|
||||
"Category": "Category",
|
||||
"Title": "Problem",
|
||||
"PendingTitle": "Väntande Problem",
|
||||
"InProgressTitle": "Pågående problem",
|
||||
"ResolvedTitle": "Lösta problem",
|
||||
"ColumnTitle": "Titel",
|
||||
"Category": "Kategori",
|
||||
"Status": "Status",
|
||||
"Details": "Details",
|
||||
"Description": "Description",
|
||||
"NoComments": "No Comments!",
|
||||
"MarkInProgress": "Mark In Progress",
|
||||
"MarkResolved": "Mark Resolved",
|
||||
"SendMessageButton": "Send",
|
||||
"Subject": "Subject",
|
||||
"Comments": "Comments",
|
||||
"WriteMessagePlaceholder": "Write your message here...",
|
||||
"ReportedBy": "Reported By"
|
||||
"Details": "Detaljer",
|
||||
"Description": "Beskrivning",
|
||||
"NoComments": "Inga Kommentarer!",
|
||||
"MarkInProgress": "Markera som pågående",
|
||||
"MarkResolved": "Markera som löst",
|
||||
"SendMessageButton": "Skicka",
|
||||
"Subject": "Ämne",
|
||||
"Comments": "Kommentarer",
|
||||
"WriteMessagePlaceholder": "Skriv ditt meddelande här...",
|
||||
"ReportedBy": "Rapporterad av"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue