Merge branch 'develop' of https://activitypub.software/TransFem-org/Sharkey into feat/instance-admin-ui
This commit is contained in:
Vendored
+70
-4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user