1
0

Merge branch 'develop' of https://activitypub.software/TransFem-org/Sharkey into feat/instance-admin-ui

This commit is contained in:
PrivateGER
2024-10-06 23:13:10 +02:00
37 changed files with 541 additions and 65 deletions
+70 -4
View File
@@ -260,6 +260,18 @@ export interface Locale extends ILocale {
* URLをコピー
*/
"copyProfileUrl": string;
/**
*
*/
"trustedLinkUrlPatterns": string;
/**
* AND指定になりOR指定になります
*/
"trustedLinkUrlPatternsDescription": string;
/**
*
*/
"open": string;
/**
*
*/
@@ -588,6 +600,10 @@ export interface Locale extends ILocale {
*
*/
"mute": string;
/**
* Muted
*/
"muted": string;
/**
*
*/
@@ -596,6 +612,10 @@ export interface Locale extends ILocale {
*
*/
"renoteMute": string;
/**
* Boosts muted
*/
"renoteMuted": string;
/**
*
*/
@@ -612,6 +632,10 @@ export interface Locale extends ILocale {
* NSFWとしてマークする
*/
"markAsNSFW": string;
/**
* Mark as NSFW
*/
"markInstanceAsNSFW": string;
/**
*
*/
@@ -908,6 +932,10 @@ export interface Locale extends ILocale {
*
*/
"mediaSilenceThisInstance": string;
/**
* Reject reports from this instance
*/
"rejectReports": string;
/**
*
*/
@@ -1068,6 +1096,18 @@ export interface Locale extends ILocale {
*
*/
"blocked": string;
/**
* This host is blocked implicitly because a base domain is blocked. To unblock this host, first unblock the base domain(s).
*/
"blockedByBase": string;
/**
* This host is silenced implicitly because a base domain is silenced. To un-silence this host, first un-silence the base domain(s).
*/
"silencedByBase": string;
/**
* This host's media is silenced implicitly because a base domain's media is silenced. To un-silence this host, first un-silence the base domain(s).
*/
"mediaSilencedByBase": string;
/**
*
*/
@@ -1180,10 +1220,6 @@ export interface Locale extends ILocale {
*
*/
"areYouSure": string;
/**
* {x}
*/
"confirmRemoteUrl": ParameterizedString<"x">;
/**
*
*/
@@ -9988,6 +10024,22 @@ export interface Locale extends ILocale {
*
*/
"unsuspendRemoteInstance": string;
/**
* Set remote instance as NSFW
*/
"setRemoteInstanceNSFW": string;
/**
* Set remote instance as NSFW
*/
"unsetRemoteInstanceNSFW": string;
/**
* Rejected reports from remote instance
*/
"rejectRemoteInstanceReports": string;
/**
* Accepted reports from remote instance
*/
"acceptRemoteInstanceReports": string;
/**
*
*/
@@ -10929,6 +10981,20 @@ export interface Locale extends ILocale {
*/
"native": string;
};
"_externalNavigationWarning": {
/**
*
*/
"title": string;
/**
* {host}
*/
"description": ParameterizedString<"host">;
/**
*
*/
"trustThisDomain": string;
};
}
declare const locales: {
[lang: string]: Locale;