mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-23 14:35:24 -07:00
Localize a few isolated strings
This commit is contained in:
parent
66465ad9ae
commit
fb19ace3e9
4 changed files with 9 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
<div class="container top-spacing" *ngIf="details">
|
<div class="container top-spacing" *ngIf="details">
|
||||||
|
|
||||||
<h1>Issues for {{details.title}}</h1>
|
<h1>{{ 'Issues.IssuesForTitle' | translate: { title: details.title} }}</h1>
|
||||||
<div>
|
<div>
|
||||||
<span>{{'Issues.Requested' | translate}}
|
<span>{{'Issues.Requested' | translate}}
|
||||||
<i *ngIf="!hasRequest" class="far fa-times-circle"></i>
|
<i *ngIf="!hasRequest" class="far fa-times-circle"></i>
|
||||||
|
|
|
@ -5,8 +5,9 @@
|
||||||
<div> {{ request.requestStatus | translate }}</div>
|
<div> {{ request.requestStatus | translate }}</div>
|
||||||
</mat-panel-title>
|
</mat-panel-title>
|
||||||
<mat-panel-description>
|
<mat-panel-description>
|
||||||
{{'Requests.RequestedBy' | translate}} '{{request.requestedUser.userAlias}}' on
|
{{'Requests.RequestedByOn' | translate: {
|
||||||
{{request.requestedDate | amLocal | amUserLocale | amDateFormat: 'LL' }}
|
user: request.requestedUser.userAlias,
|
||||||
|
date: request.requestedDate | amLocal | amUserLocale | amDateFormat: 'LL' } }}
|
||||||
<span *ngIf="request.denied"> - {{request.deniedReason}}</span>
|
<span *ngIf="request.denied"> - {{request.deniedReason}}</span>
|
||||||
</mat-panel-description>
|
</mat-panel-description>
|
||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<div class="wizard-background">
|
<div class="wizard-background">
|
||||||
<h2 style="color:white">Unsubscribed!</h2>
|
<h2 style="color:white">{{ 'UserPreferences.Unsubscribed' | translate }}</h2>
|
||||||
</div>
|
</div>
|
|
@ -224,6 +224,7 @@
|
||||||
},
|
},
|
||||||
"Issues": {
|
"Issues": {
|
||||||
"Title": "Issues",
|
"Title": "Issues",
|
||||||
|
"IssuesForTitle": "Issues for {{title}}",
|
||||||
"PendingTitle": "Pending Issues",
|
"PendingTitle": "Pending Issues",
|
||||||
"InProgressTitle": "In Progress Issues",
|
"InProgressTitle": "In Progress Issues",
|
||||||
"ResolvedTitle": "Resolved Issues",
|
"ResolvedTitle": "Resolved Issues",
|
||||||
|
@ -344,6 +345,7 @@
|
||||||
"PleaseSelectUser": "Please select a user",
|
"PleaseSelectUser": "Please select a user",
|
||||||
"StreamingOn": "Streaming On:",
|
"StreamingOn": "Streaming On:",
|
||||||
"RequestedBy": "Requested By:",
|
"RequestedBy": "Requested By:",
|
||||||
|
"RequestedByOn": "Requested By {{user}} on {{date}}",
|
||||||
"RequestDate": "Request Date:",
|
"RequestDate": "Request Date:",
|
||||||
"DeniedReason": "Denied Reason:",
|
"DeniedReason": "Denied Reason:",
|
||||||
"ReProcessRequest": "Re-Process Request",
|
"ReProcessRequest": "Re-Process Request",
|
||||||
|
@ -397,7 +399,8 @@
|
||||||
"NewPasswordConfirm": "New Password Confirm",
|
"NewPasswordConfirm": "New Password Confirm",
|
||||||
"Security": "Security",
|
"Security": "Security",
|
||||||
"Profile": "Profile",
|
"Profile": "Profile",
|
||||||
"UpdatedYourInformation": "Updated your information"
|
"UpdatedYourInformation": "Updated your information",
|
||||||
|
"Unsubscribed": "Unsubscribed!"
|
||||||
},
|
},
|
||||||
"UserTypeLabel": {
|
"UserTypeLabel": {
|
||||||
"1": "Local User",
|
"1": "Local User",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue