ci: Update plugins

This commit is contained in:
2025-06-06 19:30:21 +08:00
parent 1af4afc7c6
commit a162f345c4
78 changed files with 590 additions and 38 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,33 @@
fileFormatVersion: 2
guid: 9add703a85e306e41a5f1f424b9e5980
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Any:
second:
enabled: 1
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
- first:
Windows Store Apps: WindowsStoreApps
second:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -0,0 +1,33 @@
fileFormatVersion: 2
guid: 1fa7d6d104052f447b49fc53f65d55cd
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Any:
second:
enabled: 1
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
- first:
Windows Store Apps: WindowsStoreApps
second:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@@ -0,0 +1,33 @@
fileFormatVersion: 2
guid: 590f9955e3e1e36458e2f7b807a05188
PluginImporter:
externalObjects: {}
serializedVersion: 2
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
- first:
Any:
second:
enabled: 1
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
- first:
Windows Store Apps: WindowsStoreApps
second:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -76,6 +76,20 @@
The shared instance of the <see cref="T:Cryville.EEW.Heartbeat" /> class.
</summary>
</member>
<member name="T:Cryville.EEW.HttpExtensions">
<summary>
Provides a set of <see langword="static" /> methods related to HTTP.
</summary>
</member>
<member name="M:Cryville.EEW.HttpExtensions.EnsureNonErrorStatusCode(System.Net.Http.HttpResponseMessage)">
<summary>
Throws an exception if the HTTP response has a client error status code (400~499) or a server error status code (500~599).
</summary>
<param name="response">The response message.</param>
<returns>The response message if there is no error.</returns>
<exception cref="T:System.InvalidOperationException">The response has a client error status code (400~499).</exception>
<exception cref="T:System.Net.Http.HttpRequestException">The response has a server error status code (500~599).</exception>
</member>
<member name="T:Cryville.EEW.HttpPullWorker">
<summary>
A source worker that pulls events with HTTP GET requests.
@@ -117,6 +131,34 @@
<returns>The task.</returns>
<exception cref="T:System.InvalidOperationException">The server responses with an unhandled status code.</exception>
</member>
<member name="M:Cryville.EEW.HttpPullWorker.HandleRawResponse(System.Net.Http.HttpResponseMessage,System.Threading.CancellationToken)">
<summary>
Handles a raw response message.
</summary>
<param name="response">The response message.</param>
<param name="cancellationToken">A cancellation token.</param>
<returns>A task.</returns>
</member>
<member name="M:Cryville.EEW.HttpPullWorker.TryGetAsync(System.Uri,System.Threading.CancellationToken,System.Boolean,System.Int32)">
<summary>
Try to send a GET request to the specified URI.
</summary>
<param name="uri">The URI.</param>
<param name="cancellationToken">The cancellation token.</param>
<param name="retryOnErrorStatusCode">Whether to retry if the server responses with an error status code.</param>
<param name="retries">Times to retry before the request fails.</param>
<returns>The response message, or <see langword="null" /> if the request fails.</returns>
</member>
<member name="M:Cryville.EEW.HttpPullWorker.TrySendAsync(System.Func{System.Net.Http.HttpRequestMessage},System.Threading.CancellationToken,System.Boolean,System.Int32)">
<summary>
Try to send a request to the specified URI.
</summary>
<param name="msgFactory">A function that creates the request message.</param>
<param name="cancellationToken">The cancellation token.</param>
<param name="retryOnErrorStatusCode">Whether to retry if the server responses with an error status code.</param>
<param name="retries">Times to retry before the request fails.</param>
<returns>The response message, or <see langword="null" /> if the request fails.</returns>
</member>
<member name="M:Cryville.EEW.HttpPullWorker.GetUri">
<summary>
Gets the URI of the next request, usually based on <see cref="P:Cryville.EEW.HttpPullWorker.BaseUri" />.
@@ -128,7 +170,7 @@
</member>
<member name="M:Cryville.EEW.HttpPullWorker.AfterHandled(System.Threading.CancellationToken)">
<summary>
Called when a response is handled successfully, or when the server reponses with No Content (204) or Not Modified (304).
Called when a response is handled successfully, or when the server responses with a non-error status code (100~399).
</summary>
</member>
<member name="M:Cryville.EEW.HttpPullWorker.Handle(System.IO.Stream,System.Net.Http.Headers.HttpResponseHeaders,System.Threading.CancellationToken)">
@@ -549,6 +591,61 @@
<member name="P:Cryville.EEW.Models.GeoJSON.Feature.Properties">
<summary>The properties of the feature.</summary>
</member>
<member name="T:Cryville.EEW.Models.GeoJSON.Feature`1">
<summary>
Represents a spatially bounded thing.
</summary>
<typeparam name="T">The type of the properties.</typeparam>
<param name="Id">A JSON string or number representing the commonly used identifier of the feature.</param>
<param name="Geometry">The geometry of the feature.</param>
<param name="Properties">The properties of the feature.</param>
<param name="BoundingBox">The bounding box.</param>
</member>
<member name="M:Cryville.EEW.Models.GeoJSON.Feature`1.#ctor(System.Text.Json.JsonElement,Cryville.EEW.Models.GeoJSON.Geometry,`0,System.Double[])">
<summary>
Represents a spatially bounded thing.
</summary>
<typeparam name="T">The type of the properties.</typeparam>
<param name="Id">A JSON string or number representing the commonly used identifier of the feature.</param>
<param name="Geometry">The geometry of the feature.</param>
<param name="Properties">The properties of the feature.</param>
<param name="BoundingBox">The bounding box.</param>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.Feature`1.Id">
<summary>A JSON string or number representing the commonly used identifier of the feature.</summary>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.Feature`1.Geometry">
<summary>The geometry of the feature.</summary>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.Feature`1.Properties">
<summary>The properties of the feature.</summary>
</member>
<member name="T:Cryville.EEW.Models.GeoJSON.IFeature`1">
<summary>
Represents a spatially bounded thing.
</summary>
<typeparam name="T">The type of the properties.</typeparam>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.IFeature`1.Id">
<summary>
A JSON string or number representing the commonly used identifier of the feature.
</summary>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.IFeature`1.Geometry">
<summary>
The geometry of the feature.
</summary>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.IFeature`1.Properties">
<summary>
The properties of the feature.
</summary>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.IFeature`1.BoundingBox">
<summary>
The bounding box.
</summary>
</member>
<member name="T:Cryville.EEW.Models.GeoJSON.FeatureCollection">
<summary>
Represents a feature collection.
@@ -566,6 +663,25 @@
<member name="P:Cryville.EEW.Models.GeoJSON.FeatureCollection.Features">
<summary>The features.</summary>
</member>
<member name="T:Cryville.EEW.Models.GeoJSON.FeatureCollection`1">
<summary>
Represents a feature collection.
</summary>
<typeparam name="T">The type of the properties of the features.</typeparam>
<param name="Features">The features.</param>
<param name="BoundingBox">The bounding box.</param>
</member>
<member name="M:Cryville.EEW.Models.GeoJSON.FeatureCollection`1.#ctor(Cryville.EEW.Models.GeoJSON.Feature{`0}[],System.Double[])">
<summary>
Represents a feature collection.
</summary>
<typeparam name="T">The type of the properties of the features.</typeparam>
<param name="Features">The features.</param>
<param name="BoundingBox">The bounding box.</param>
</member>
<member name="P:Cryville.EEW.Models.GeoJSON.FeatureCollection`1.Features">
<summary>The features.</summary>
</member>
<member name="T:Cryville.EEW.Models.GeoJSON.GeoJSONObject">
<summary>
A Geometry, Feature, or collection of Features.
@@ -983,6 +1099,37 @@
<member name="M:Cryville.EEW.NonstandardDateTimeJsonConverter.Write(System.Text.Json.Utf8JsonWriter,System.DateTime,System.Text.Json.JsonSerializerOptions)">
<inheritdoc />
</member>
<member name="T:Cryville.EEW.ProgressiveDelay">
<summary>
A helper class that produces progressive delay.
</summary>
</member>
<member name="P:Cryville.EEW.ProgressiveDelay.CurrentDelay">
<summary>
The delay to next tick.
</summary>
</member>
<member name="M:Cryville.EEW.ProgressiveDelay.#ctor(System.Double,System.Double,System.Double)">
<summary>
Creates an instance of the <see cref="T:Cryville.EEW.ProgressiveDelay" /> class.
</summary>
<param name="baseDelay">The minimum delay.</param>
<param name="maxDelay">The maximum delay.</param>
<param name="delayMultiplier">The multiplier between adjacent delay values.</param>
<exception cref="T:System.ArgumentOutOfRangeException"><paramref name="baseDelay" /> is negative or zero. -or- <paramref name="maxDelay" /> is negative or zero. -or- <paramref name="delayMultiplier" /> is less than or equal to 1.</exception>
</member>
<member name="M:Cryville.EEW.ProgressiveDelay.Step(System.Double)">
<summary>
Decrements the current delay and ticks if the delay has run over.
</summary>
<param name="amount">The amount of delay to decrement.</param>
<returns>Whether to tick.</returns>
</member>
<member name="M:Cryville.EEW.ProgressiveDelay.Reset">
<summary>
Resets to the base delay.
</summary>
</member>
<member name="T:Cryville.EEW.Report.EmptyRVMGeneratorContext">
<summary>
An empty <see cref="T:Cryville.EEW.Report.IRVMGeneratorContext" />.
@@ -1018,7 +1165,7 @@
</summary>
<param name="Latitude">The latitude of the hypocenter.</param>
<param name="Longitude">The longitude of the hypocenter.</param>
<param name="DateTime">The origin date time.</param>
<param name="DateTime">The origin date time in UTC.</param>
<param name="Magnitude">The magnitude.</param>
</member>
<member name="M:Cryville.EEW.Report.HypocenterGroupKey.#ctor(System.Double,System.Double,System.DateTime,System.Double)">
@@ -1027,7 +1174,7 @@
</summary>
<param name="Latitude">The latitude of the hypocenter.</param>
<param name="Longitude">The longitude of the hypocenter.</param>
<param name="DateTime">The origin date time.</param>
<param name="DateTime">The origin date time in UTC.</param>
<param name="Magnitude">The magnitude.</param>
</member>
<member name="P:Cryville.EEW.Report.HypocenterGroupKey.Latitude">
@@ -1037,7 +1184,7 @@
<summary>The longitude of the hypocenter.</summary>
</member>
<member name="P:Cryville.EEW.Report.HypocenterGroupKey.DateTime">
<summary>The origin date time.</summary>
<summary>The origin date time in UTC.</summary>
</member>
<member name="P:Cryville.EEW.Report.HypocenterGroupKey.Magnitude">
<summary>The magnitude.</summary>
@@ -1317,11 +1464,6 @@
<see cref="P:Cryville.EEW.Report.ReportViewModel.InvalidatedTime" /> converted to UTC.
</summary>
</member>
<member name="P:Cryville.EEW.Report.ReportViewModel.IssueTime">
<summary>
The time when the report is issued, in the time zone indicated by <see cref="P:Cryville.EEW.Report.ReportViewModel.TimeZone" />.
</summary>
</member>
<member name="P:Cryville.EEW.Report.ReportViewModel.UtcIssueTime">
<summary>
The time when the report is issued, in UTC.
@@ -1445,14 +1587,6 @@
The parent type.
</summary>
</member>
<member name="M:Cryville.EEW.Report.ReportViewModelPropertyType.#ctor(System.String,Cryville.EEW.Report.ReportViewModelPropertyType)">
<summary>
Creates an instance of the <see cref="T:Cryville.EEW.Report.ReportViewModelPropertyType" /> class.
</summary>
<param name="name">The name of the type.</param>
<param name="parent">The parent type.</param>
<exception cref="T:System.ArgumentException"><paramref name="name" /> contains the sub-type delimiter <c>:</c>.</exception>
</member>
<member name="M:Cryville.EEW.Report.ReportViewModelPropertyType.OfSubtype(System.String)">
<summary>
Creates a sub-type from this type.
@@ -1463,6 +1597,14 @@
<member name="M:Cryville.EEW.Report.ReportViewModelPropertyType.ToString">
<inheritdoc/>
</member>
<member name="M:Cryville.EEW.Report.ReportViewModelPropertyType.Of(System.String,Cryville.EEW.Report.ReportViewModelPropertyType)">
<summary>
Gets an instance of the <see cref="T:Cryville.EEW.Report.ReportViewModelPropertyType" /> class.
</summary>
<param name="name">The name of the type.</param>
<param name="parent">The parent type.</param>
<exception cref="T:System.ArgumentException"><paramref name="name" /> contains the sub-type delimiter <c>:</c>.</exception>
</member>
<member name="M:Cryville.EEW.Report.ReportViewModelPropertyType.FromString(System.String)">
<summary>
Creates a report view model property type from a string.

View File

@@ -2,6 +2,7 @@
"Culture": "en-US",
"Strings": {
"AuthorityName": "CWA",
"ErrorUnauthorized": "Authorization token is invalid.",
"PropertyDepth": "Depth",
"PropertyDepthValue": "{0}km",
"PropertyMaxIntensity": "Max intensity",

View File

@@ -2,6 +2,7 @@
"Culture": "zh-TW",
"Strings": {
"AuthorityName": "CWA",
"ErrorUnauthorized": "授權碼無效。",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMaxIntensity": "最大震度",

View File

@@ -2,6 +2,7 @@
"Culture": "yue-HK",
"Strings": {
"AuthorityName": "CWA",
"ErrorUnauthorized": "授權碼無效。",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMaxIntensity": "最大震度",

View File

@@ -2,6 +2,7 @@
"Culture": "zh-CN",
"Strings": {
"AuthorityName": "CWA",
"ErrorUnauthorized": "授权码无效。",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMaxIntensity": "最大震度",

View File

@@ -1,5 +1,5 @@
{
"Culture": "en-US",
"Culture": "en-GB",
"Strings": {
"AuthorityName": "EMSC",
"AuthorityNameForwarded": "EMSC | {0}",

View File

@@ -642,7 +642,7 @@
"674": "聖勞倫斯島",
"675": "波弗特海",
"676": "阿拉斯加北部",
"677": "加拿大育空地區北部",
"677": "育空地區北部",
"678": "伊利沙伯女皇群島",
"679": "西北地區—努拿烏特地區",
"68": "恰帕斯近海",

View File

@@ -642,7 +642,7 @@
"674": "聖勞倫斯島",
"675": "波弗特海",
"676": "阿拉斯加北部",
"677": "加拿大育空地區北部",
"677": "育空地區北部",
"678": "伊莉莎白女王群島",
"679": "西北地區—努納福特地區",
"68": "恰帕斯近海",

View File

@@ -642,7 +642,7 @@
"674": "圣劳伦斯岛",
"675": "波弗特海",
"676": "阿拉斯加北部",
"677": "加拿大育空地区北部",
"677": "育空地区北部",
"678": "伊丽莎白女王群岛",
"679": "西北地区—努纳武特地区",
"68": "恰帕斯近海",

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a68851283bf763f498b6efc1e7fd7d3e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,11 @@
{
"Culture": "en-NZ",
"Strings": {
"BodyQuake": "Quake information. At {0}, a magnitude {1} earthquake occurred in {2}. Hypocenter depth {3} kilometers.",
"BodyQuakeDeleted": "A previously reported quake has been deleted.",
"BodyStrong": "Strong motion information. A magnitude {0} earthquake occurred in {1}. Hypocenter depth {2} kilometers. Max measured intensity {3}.",
"MaxIntensity": " Max intensity {0}.",
"TitleQuake": "Quake information",
"TitleStrong": "Strong motion information"
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 7dda4437bc429f946a3606eb5182c26a
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,11 @@
{
"Culture": "yue-HK",
"Strings": {
"BodyQuake": "地震資訊。{0}{2}發生震級{1}級地震。震源深度{3}公里。",
"BodyQuakeDeleted": "頭先發佈嘅一條地震資訊已被刪除。",
"BodyStrong": "強震動資訊。{1}發生震級{0}級地震。震源深度{2}公里。最大儀器烈度{3}。",
"MaxIntensity": "最大烈度{0}。",
"TitleQuake": "地震資訊",
"TitleStrong": "強震動資訊"
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 22fbb2e4ace53904689d749d9121f63f
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,11 @@
{
"Culture": "zh-TW",
"Strings": {
"BodyQuake": "地震資訊。{0}{2}發生規模{1}級地震。震源深度{3}公里。",
"BodyQuakeDeleted": "先前發佈的一條地震資訊已被刪除。",
"BodyStrong": "強震動資訊。{1}發生規模{0}級地震。震源深度{2}公里。最大計測震度{3}。",
"MaxIntensity": "最大震度{0}。",
"TitleQuake": "地震資訊",
"TitleStrong": "強震動資訊"
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: bc25877491739c64f9796c1c10f00291
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,11 @@
{
"Culture": "zh-CN",
"Strings": {
"BodyQuake": "地震信息。{0}{2}发生震级{1}级地震。震源深度{3}千米。",
"BodyQuakeDeleted": "先前发布的一条地震信息已被删除。",
"BodyStrong": "强震动信息。{1}发生震级{0}级地震。震源深度{2}千米。最大仪器烈度{3}。",
"MaxIntensity": "最大烈度{0}。",
"TitleQuake": "地震信息",
"TitleStrong": "强震动信息"
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 15d5046e9e6258d4eb6f6290681de662
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5d5f90e1fe276574da03cf1e5722e915
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,24 @@
{
"Culture": "en-NZ",
"Strings": {
"AuthorityName": "GeoNet",
"PropertyDepth": "Depth",
"PropertyDepthValue": "{0}km",
"PropertyMagnitude": "M",
"PropertyMaxIntensity": "Max intensity",
"SourceName": "GeoNet",
"TitleQuake": "Quake information",
"TitleStrong": "Strong motion information"
},
"StringSets": {
"PropertyQualityValue": {
"Strings": {
"": "Unknown",
"best": "Best",
"preliminary": "Preliminary",
"automatic": "Automatic",
"deleted": "Deleted"
}
}
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: ca2c1d5bc70b5ed49948d18a239b95b5
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,24 @@
{
"Culture": "yue-HK",
"Strings": {
"AuthorityName": "GeoNet",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMagnitude": "M",
"PropertyMaxIntensity": "最大烈度",
"SourceName": "GeoNet",
"TitleQuake": "地震資訊",
"TitleStrong": "強震動資訊"
},
"StringSets": {
"PropertyQualityValue": {
"Strings": {
"": "不明",
"best": "精確",
"preliminary": "速報",
"automatic": "自動",
"deleted": "刪除"
}
}
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 3cabe2d850c5b2c4c987036edefbdf1d
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,24 @@
{
"Culture": "zh-TW",
"Strings": {
"AuthorityName": "GeoNet",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMagnitude": "M",
"PropertyMaxIntensity": "最大震度",
"SourceName": "GeoNet",
"TitleQuake": "地震資訊",
"TitleStrong": "強震動資訊"
},
"StringSets": {
"PropertyQualityValue": {
"Strings": {
"": "不明",
"best": "精確",
"preliminary": "速報",
"automatic": "自動",
"deleted": "刪除"
}
}
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 99ceee37962c37646bd9eb43fd445f01
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,24 @@
{
"Culture": "zh-CN",
"Strings": {
"AuthorityName": "GeoNet",
"PropertyDepth": "深度",
"PropertyDepthValue": "{0}km",
"PropertyMagnitude": "M",
"PropertyMaxIntensity": "最大烈度",
"SourceName": "GeoNet",
"TitleQuake": "地震信息",
"TitleStrong": "强震动信息"
},
"StringSets": {
"PropertyQualityValue": {
"Strings": {
"": "不明",
"best": "精确",
"preliminary": "速报",
"automatic": "自动",
"deleted": "删除"
}
}
}
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 75acceaa142e0b34ea805d36298102df
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -25,6 +25,7 @@
"HeadlineTsunamiInformationForecast": "The high tide time and estimated initial tsunami arrival time per area is as follows.",
"HeadlineTsunamiInformationObservation": "Currently, tsunami observed is as follows.",
"HeadlineTsunamiWarning": "{0} has been issued.",
"HeadlineTsunamiWarningDowngraded": "{0} has been lifted and switched to {1}.",
"HeadlineTsunamiWarningLifted": "{0} has been lifted.",
"HeadlineTsunamiWarningUpdate": "The current {0} in effect has been updated.",
"Intensity": "seismic intensity",
@@ -34,8 +35,9 @@
"LongIntensity": "long-period ground motion intensity",
"LongIntensityObservationMax": "This earthquake resulted in {0} of the maximum long-period ground motion intensity recorded.",
"Maximum": "the maximum {0}",
"MinorItemSeparator": "; ",
"MediumItemSeparator": "; ",
"PlumeDirectionValue": "{0} direction",
"ShortItemSeparator": ", ",
"TsunamiForecast": "{0} has been issued for the following coastal regions of Japan.",
"TsunamiForecastArea": "{0}. {1}.",
"TsunamiForecastFirstHeightArrivalTime": "Estimated arrival time {0:t}",
@@ -169,7 +171,7 @@
"北海道・三陸沖後発地震注意情報": "Hokkaido and off-Sanriku aftershock notice",
"南海トラフ地震に関連する情報": "Information related to Nankai Trough earthquake",
"噴火に関する火山観測報": "Volcano observation information about eruption",
"噴火警報・予報": "Vocanic warning and forecast",
"噴火警報・予報": "Volcanic warning and forecast",
"噴火速報": "Volcanic eruption notice",
"地震の活動状況等に関する情報": "Earthquake activity information",
"地震回数情報": "Earthquake count information",
@@ -196,6 +198,13 @@
"73": "Tsunami Forecast (slight sea-level changes)"
}
},
"TsunamiForecastCategoryShort": {
"Strings": {
"71": "Tsunami Forecast",
"72": "Tsunami Forecast",
"73": "Tsunami Forecast"
}
},
"TsunamiForecastFirstHeightCondition": {
"Strings": {
"ただちに津波来襲と予測": "Imminent tsunami arrival expected",

View File

@@ -21,8 +21,9 @@
"LongIntensity": "長周期地震動階級",
"LongIntensityObservationMax": "この地震で、最大長周期地震動階級{0}を観測しました。",
"Maximum": "最大{0}",
"MinorItemSeparator": "、",
"MediumItemSeparator": "、",
"PlumeDirectionValue": "{0}方向",
"ShortItemSeparator": "、",
"TsunamiForecast": "{0}が、次の地域に発表されています。",
"TsunamiForecastArea": "{0}。{1}。",
"TsunamiForecastFirstHeightArrivalTime": "到達予想時刻{0:t}",
@@ -75,6 +76,13 @@
"73": "津波予報(若干の海面変動)"
}
},
"TsunamiForecastCategoryShort": {
"Strings": {
"71": "津波予報",
"72": "津波予報",
"73": "津波予報"
}
},
"VolcanoObservationPlumeHeightAboveCraterValue": {
"Strings": {
"": "{0}メートル",

View File

@@ -25,6 +25,7 @@
"HeadlineTsunamiInformationForecast": "各地嘅滿潮時刻同海嘯到達預測時刻如下。",
"HeadlineTsunamiInformationObservation": "目前,海嘯嘅觀測值如下。",
"HeadlineTsunamiWarning": "{0}已被發佈。",
"HeadlineTsunamiWarningDowngraded": "{0}已被解除,切換為{1}。",
"HeadlineTsunamiWarningLifted": "{0}已被解除。",
"HeadlineTsunamiWarningUpdate": "而家發佈緊嘅{0}已被更新。",
"Intensity": "震度",
@@ -34,9 +35,10 @@
"LongIntensity": "長週期地震動階級",
"LongIntensityObservationMax": "呢次地震,觀測到嘅最大長週期地震動階級為{0}。",
"Maximum": "最大{0}",
"MinorItemSeparator": "",
"MediumItemSeparator": "",
"PlumeDirectionValue": "{0}方向",
"TsunamiForecast": "以下嘅區域正在發佈{0}。",
"ShortItemSeparator": "、",
"TsunamiForecast": "{0}正在向以下嘅區域發佈。",
"TsunamiForecastArea": "{0}。{1}。",
"TsunamiForecastFirstHeightArrivalTime": "預測到達時刻{0:t}",
"TsunamiForecastMaxHeight": "預測海嘯高度為{0}。",
@@ -196,6 +198,13 @@
"73": "海嘯預報(若干嘅海面變動)"
}
},
"TsunamiForecastCategoryShort": {
"Strings": {
"71": "海嘯預報",
"72": "海嘯預報",
"73": "海嘯預報"
}
},
"TsunamiForecastFirstHeightCondition": {
"Strings": {
"ただちに津波来襲と予測": "預測海嘯即將到達",

View File

@@ -25,6 +25,7 @@
"HeadlineTsunamiInformationForecast": "各地的滿潮時刻和海嘯到達預測時刻如下。",
"HeadlineTsunamiInformationObservation": "目前,海嘯的觀測值如下。",
"HeadlineTsunamiWarning": "{0}已被發佈。",
"HeadlineTsunamiWarningDowngraded": "{0}已被解除,切換為{1}。",
"HeadlineTsunamiWarningLifted": "{0}已被解除。",
"HeadlineTsunamiWarningUpdate": "當前發佈中的{0}已被更新。",
"Intensity": "震度",
@@ -34,9 +35,10 @@
"LongIntensity": "長周期地震動階級",
"LongIntensityObservationMax": "本次地震,觀測到的最大長周期地震動階級為{0}。",
"Maximum": "最大{0}",
"MinorItemSeparator": "",
"MediumItemSeparator": "",
"PlumeDirectionValue": "{0}方向",
"TsunamiForecast": "以下的區域正在發布{0}。",
"ShortItemSeparator": "、",
"TsunamiForecast": "{0}正在對以下的區域發布。",
"TsunamiForecastArea": "{0}。{1}。",
"TsunamiForecastFirstHeightArrivalTime": "預測到達時刻{0:t}",
"TsunamiForecastMaxHeight": "預測海嘯高度為{0}。",
@@ -119,7 +121,7 @@
"EarthquakeMagnitudeUnknown": {
"Strings": {
"": "地震的規模不明。",
"M8を超える巨大地震": "推定本次地震為規模大於8的巨大地震"
"M8を超える巨大地震": "推定本次地震為規模大於8的巨大地震"
}
},
"HeadlineVolcanoWarning": {
@@ -196,6 +198,13 @@
"73": "海嘯預報(若干的海面變動)"
}
},
"TsunamiForecastCategoryShort": {
"Strings": {
"71": "海嘯預報",
"72": "海嘯預報",
"73": "海嘯預報"
}
},
"TsunamiForecastFirstHeightCondition": {
"Strings": {
"ただちに津波来襲と予測": "預測海嘯即將來襲",

View File

@@ -25,6 +25,7 @@
"HeadlineTsunamiInformationForecast": "各地的满潮时刻和海啸到达预测时刻如下。",
"HeadlineTsunamiInformationObservation": "目前,海啸的观测值如下。",
"HeadlineTsunamiWarning": "{0}已被发布。",
"HeadlineTsunamiWarningDowngraded": "{0}已被解除,切换为{1}。",
"HeadlineTsunamiWarningLifted": "{0}已被解除。",
"HeadlineTsunamiWarningUpdate": "当前发布中的{0}已被更新。",
"Intensity": "震度",
@@ -34,9 +35,10 @@
"LongIntensity": "长周期地震动阶级",
"LongIntensityObservationMax": "本次地震,观测到的最大长周期地震动阶级为{0}。",
"Maximum": "最大{0}",
"MinorItemSeparator": "",
"MediumItemSeparator": "",
"PlumeDirectionValue": "{0}方向",
"TsunamiForecast": "以下的区域正在发布{0}。",
"ShortItemSeparator": "、",
"TsunamiForecast": "{0}正在对以下的区域发布。",
"TsunamiForecastArea": "{0}。{1}。",
"TsunamiForecastFirstHeightArrivalTime": "预测到达时刻{0:t}",
"TsunamiForecastMaxHeight": "预测海啸高度为{0}。",
@@ -119,7 +121,7 @@
"EarthquakeMagnitudeUnknown": {
"Strings": {
"": "地震的震级不明。",
"M8を超える巨大地震": "推定本次地震为震级大于8的巨大地震"
"M8を超える巨大地震": "推定本次地震为震级大于8的巨大地震"
}
},
"HeadlineVolcanoWarning": {
@@ -196,6 +198,13 @@
"73": "海啸预报(若干的海面变动)"
}
},
"TsunamiForecastCategoryShort": {
"Strings": {
"71": "海啸预报",
"72": "海啸预报",
"73": "海啸预报"
}
},
"TsunamiForecastFirstHeightCondition": {
"Strings": {
"ただちに津波来襲と予測": "预测海啸即将来袭",

View File

@@ -18,6 +18,7 @@
"PropertyPlumeHeightAboveCraterValue": "{0}km",
"PropertyPlumeHeightAboveCraterValueNone": "No plume",
"PropertyPlumeHeightAboveCraterValueUnknown": "Unknown",
"ShortItemSeparator": ", ",
"SourceName": "JMA Atom"
},
"StringSets": {
@@ -27,7 +28,7 @@
"北海道・三陸沖後発地震注意情報": "Hokkaido and off-Sanriku aftershock notice",
"南海トラフ地震に関連する情報": "Information related to Nankai Trough earthquake",
"噴火に関する火山観測報": "Volcano observation information about eruption",
"噴火警報・予報": "Vocanic warning and forecast",
"噴火警報・予報": "Volcanic warning and forecast",
"噴火速報": "Volcanic eruption notice",
"地震の活動状況等に関する情報": "Earthquake activity information",
"地震回数情報": "Earthquake count information",
@@ -87,7 +88,7 @@
"": "Lifted"
}
},
"PropertyVocanicWarningValue": {
"PropertyVolcanicWarningValue": {
"Strings": {
"11": "Level 1",
"12": "Level 2",
@@ -112,6 +113,17 @@
"訓練": "{0} (Drilling)",
"試験": "{0} (Testing)"
}
},
"TsunamiForecastCategory": {
"Strings": {
"51": "Tsunami Warning",
"52": "Major Tsunami Warning",
"53": "Major Tsunami Warning",
"62": "Tsunami Advisory",
"71": "Tsunami Forecast",
"72": "Tsunami Forecast",
"73": "Tsunami Forecast"
}
}
}
}

View File

@@ -43,7 +43,7 @@
"": "解\u2060除"
}
},
"PropertyVocanicWarningValue": {
"PropertyVolcanicWarningValue": {
"Strings": {
"11": "レ\u2060ベ\u2060ル",
"12": "レ\u2060ベ\u2060ル",

View File

@@ -18,6 +18,7 @@
"PropertyPlumeHeightAboveCraterValue": "{0}km",
"PropertyPlumeHeightAboveCraterValueNone": "冇噴\u2060煙",
"PropertyPlumeHeightAboveCraterValueUnknown": "不明",
"ShortItemSeparator": "、",
"SourceName": "JMA Atom"
},
"StringSets": {
@@ -87,7 +88,7 @@
"": "解\u2060除"
}
},
"PropertyVocanicWarningValue": {
"PropertyVolcanicWarningValue": {
"Strings": {
"11": "等\u2060級1",
"12": "等\u2060級2",
@@ -112,6 +113,17 @@
"訓練": "{0}(訓練)",
"試験": "{0}(測試)"
}
},
"TsunamiForecastCategory": {
"Strings": {
"51": "海嘯警報",
"52": "大海嘯警報",
"53": "大海嘯警報",
"62": "海嘯注意報",
"71": "海嘯預報",
"72": "海嘯預報",
"73": "海嘯預報"
}
}
}
}

View File

@@ -18,6 +18,7 @@
"PropertyPlumeHeightAboveCraterValue": "{0}km",
"PropertyPlumeHeightAboveCraterValueNone": "無噴\u2060煙",
"PropertyPlumeHeightAboveCraterValueUnknown": "不明",
"ShortItemSeparator": "、",
"SourceName": "JMA Atom"
},
"StringSets": {
@@ -87,7 +88,7 @@
"": "解\u2060除"
}
},
"PropertyVocanicWarningValue": {
"PropertyVolcanicWarningValue": {
"Strings": {
"11": "等\u2060級1",
"12": "等\u2060級2",
@@ -112,6 +113,17 @@
"訓練": "{0}(訓練)",
"試験": "{0}(測試)"
}
},
"TsunamiForecastCategory": {
"Strings": {
"51": "海嘯警報",
"52": "大海嘯警報",
"53": "大海嘯警報",
"62": "海嘯注意報",
"71": "海嘯預報",
"72": "海嘯預報",
"73": "海嘯預報"
}
}
}
}

View File

@@ -18,6 +18,7 @@
"PropertyPlumeHeightAboveCraterValue": "{0}km",
"PropertyPlumeHeightAboveCraterValueNone": "无喷\u2060烟",
"PropertyPlumeHeightAboveCraterValueUnknown": "不明",
"ShortItemSeparator": "、",
"SourceName": "JMA Atom"
},
"StringSets": {
@@ -87,7 +88,7 @@
"": "解\u2060除"
}
},
"PropertyVocanicWarningValue": {
"PropertyVolcanicWarningValue": {
"Strings": {
"11": "等\u2060级1",
"12": "等\u2060级2",
@@ -112,6 +113,17 @@
"訓練": "{0}(训练)",
"試験": "{0}(测试)"
}
},
"TsunamiForecastCategory": {
"Strings": {
"51": "海啸警报",
"52": "大海啸警报",
"53": "大海啸警报",
"62": "海啸注意报",
"71": "海啸预报",
"72": "海啸预报",
"73": "海啸预报"
}
}
}
}

View File

@@ -7,9 +7,12 @@ The following files are licensed under [CC-BY-4.0](https://creativecommons.org/l
- Cryville.EEW.CWA/*
- Cryville.EEW.CWAOpenData/*
- Cryville.EEW.CWAOpenData.TTS/*
- Cryville.EEW.EMSC/*
- Cryville.EEW.FERegion/yue.json
- Cryville.EEW.FERegion/zh.json
- Cryville.EEW.FERegion/zh-Hant.json
- Cryville.EEW.GeoNet/*
- Cryville.EEW.GeoNet.TTS/*
- Cryville.EEW.GlobalQuake/*
- Cryville.EEW.JMA/*
- Cryville.EEW.JMA/PointTsunami/en.json