1
0

Merge branch 'develop' into hazelnoot/following-timeline

This commit is contained in:
Hazel K
2024-10-07 10:45:16 -04:00
26 changed files with 542 additions and 41 deletions
+78 -4
View File
@@ -260,6 +260,18 @@ export interface Locale extends ILocale {
* URLをコピー
*/
"copyProfileUrl": string;
/**
*
*/
"trustedLinkUrlPatterns": string;
/**
* AND指定になりOR指定になります
*/
"trustedLinkUrlPatternsDescription": string;
/**
*
*/
"open": string;
/**
*
*/
@@ -624,6 +636,10 @@ export interface Locale extends ILocale {
* NSFWとしてマークする
*/
"markAsNSFW": string;
/**
* Mark as NSFW
*/
"markInstanceAsNSFW": string;
/**
*
*/
@@ -920,6 +936,10 @@ export interface Locale extends ILocale {
*
*/
"mediaSilenceThisInstance": string;
/**
* Reject reports from this instance
*/
"rejectReports": string;
/**
*
*/
@@ -1080,6 +1100,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;
/**
*
*/
@@ -1192,10 +1224,6 @@ export interface Locale extends ILocale {
*
*/
"areYouSure": string;
/**
* {x}
*/
"confirmRemoteUrl": ParameterizedString<"x">;
/**
*
*/
@@ -2512,6 +2540,10 @@ export interface Locale extends ILocale {
*
*/
"deleteAllFilesConfirm": string;
/**
*
*/
"deleteAllFilesQueued": string;
/**
*
*/
@@ -5353,6 +5385,18 @@ export interface Locale extends ILocale {
*
*/
"createdAntennas": string;
/**
*
*/
"severAllFollowRelations": string;
/**
* {instanceName}{followingCount}{followersCount}
*/
"severAllFollowRelationsConfirm": ParameterizedString<"instanceName" | "followingCount" | "followersCount">;
/**
* {host}
*/
"severAllFollowRelationsQueued": ParameterizedString<"host">;
"_delivery": {
/**
*
@@ -9988,6 +10032,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 +10989,20 @@ export interface Locale extends ILocale {
*/
"native": string;
};
"_externalNavigationWarning": {
/**
*
*/
"title": string;
/**
* {host}
*/
"description": ParameterizedString<"host">;
/**
*
*/
"trustThisDomain": string;
};
}
declare const locales: {
[lang: string]: Locale;