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