Skip to content
34 changes: 23 additions & 11 deletions Editor/Localization/Locales/en.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,37 @@ msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveBorderEdges.label
msgstr "Preserve Border Edges"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveBorderEdges.tooltip"
msgstr "If you want to suppress hole generation during simplification, enable this option."
msgstr ""
"Avoid removing edges that do not touch other surfaces, such as holes or cross sections.\n"
"If you want to suppress hole generation during simplification, enable this option."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveSurfaceCurvature.label"
msgstr "Preserve Surface Curvature"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveSurfaceCurvature.tooltip"
msgstr "Change the cost formula to preserve gently curved surfaces."
msgstr "Use a process that preserves gently curved surfaces, but sometimes the results can be worse."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.UseBarycentricCoordinateInterpolation.label"
msgstr "Use Barycentric Coordinate Interpolation"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.UseBarycentricCoordinateInterpolation.tooltip"
msgstr "If you find that the texture is distorted, try toggling this option."
msgstr ""
"Use Barycentric Coordinate Interpolation instead of linear interpolation for interpolating UVs, etc.\n"
"If you find that the texture is distorted, try toggling this option."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.MinNormalDot.label"
msgstr "Min Normal Dot"
msgstr "Tolerance for Normal Angle (by cosθ)"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.MinNormalDot.tooltip"
msgstr "Specifies how much normal misalignment to allow when generating lightweight polygons.For example, cos90°=0 allows up to 90° displacement, and cos180°=-1 allows up to 180° displacement."
msgstr ""
"Specifies how much normal misalignment to allow when generating lightweight polygons.\n"
"For example, 0(=cos90°) allows up to 90° misalignment, and -1(=cos180°) allows up to 180° misalignment."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.EnableSmartLink.label"
msgstr "Enable Smart Link"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.EnableSmartLink.tooltip"
msgstr "If this option is enabled, vertices that are not originally connected but are close to each other will be included in the first merge candidates. Increases the initialization cost."
msgstr "If this option is enabled, vertices that are not originally connected but are close to each other will be included in the first merge candidates. Increases the processing time."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.SmartLinkOptions"
msgstr "Smart Link Options"
Expand All @@ -39,25 +45,31 @@ msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkDistance.label"
msgstr "Vertex Link Distance"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkDistance.tooltip"
msgstr "When smart link is enabled, this is used to select candidates for merging vertices that are not originally connected to each other. Increasing this value also increases the initialization cost."
msgstr ""
"This value is used to select candidates for merging vertices that are not originally connected to each other, based on their position proximity.\n"
"Larger values may increase processing time and crashes with meshes having more than 40,000 vertices."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkColorDistance.label"
msgstr "Vertex Link Color Distance"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkColorDistance.tooltip"
msgstr "Larger values may improve the shape of the polygons after lightening, but at the cost of unnatural vertex colors."
msgstr ""
"This value is used to select candidates for merging vertices that are not originally connected to each other, based on their vertex color similarity.\n"
"Larger values may improve the shape of the polygons after lightening, but sometimes result in unnatural vertex colors instead."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkUvDistance.label"
msgstr "Vertex Link UV Distance"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkUvDistance.tooltip"
msgstr "Larger values may improve the shape of the polygons after lightening, but at the cost of making the UVs unnatural."
msgstr ""
"This value is used to select candidates for merging vertices that are not originally connected to each other, based on their UV coordinate proximity.\n"
"Larger values may improve the shape of the polygons after lightening, but sometimes result in unnatural UVs instead."

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkMinNormalDot.label"
msgstr "Vertex Link Min Normal Dot"
msgstr "Tolerance for Normal Angle (by cosθ)"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkMinNormalDot.tooltip"
msgstr "Use different min normal dot for smart link. The more stringent of the two is used for smart link."
msgstr "Use different tolerance for normal angle for Smart Link. The stricter of the two is used for Smart Link."

msgid "locale:en"
msgstr "English"
43 changes: 25 additions & 18 deletions Editor/Localization/Locales/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,68 @@ msgstr ""
"Language: ja\n"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveBorderEdges.label"
msgstr "端の露出したポリゴンを保持"
msgstr "メッシュの端の辺を保持"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveBorderEdges.tooltip"
msgstr "軽量化後のメッシュに穴が目立つとき、有効化してみてください。"
msgstr ""
"他の面に接していない辺(穴や切れ目の縁など)を削除しないようにします。\n"
"軽量化後のメッシュに穴が目立つ場合、このオプションを有効にしてみてください。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveSurfaceCurvature.label"
msgstr "曲面を保持"
msgstr "なだらかな曲面を保持"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.PreserveSurfaceCurvature.tooltip"
msgstr "なだらかな曲面を保持するようにコスト計算式を変更します。"
msgstr "なだらかな曲面を保持する処理を用いるようにしますが、結果が悪化する場合もあります。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.UseBarycentricCoordinateInterpolation.label"
msgstr "重心座標系補間を使用する"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.UseBarycentricCoordinateInterpolation.tooltip"
msgstr "UVなどの補間に線形補間の代わりに重心座標系補間を用います。UVの歪みが目立つとき、切り替えてみてください。"
msgstr "UVなどの補間において、線形補間の代わりに重心座標系補間を用います。UVの歪みが目立つ場合、このオプションを切り替えてみてください。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.MinNormalDot.label"
msgstr "許容最小法線ドット積"
msgstr "法線角度の許容誤差(cosθ)"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.MinNormalDot.tooltip"
msgstr "頂点を削減して軽量化されたポリゴンを生成する際、どこまで法線方向のズレを許容するかを指定します。たとえばcos90°=0を指定すると90°までのズレを許容し、cos180°=-1を指定することで180°までのズレを許容します。"
msgstr ""
"軽量化後のポリゴンにおいて、頂点の法線方向のズレをどこまで許容するか指定します。\n"
"0(=cos90°)を指定すると90°までのズレを、-1(=cos180°)を指定すると180°までのズレを許容します。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.EnableSmartLink.label"
msgstr "近傍頂点をマージ候補に含める"
msgstr "近くの頂点同士をマージ候補に含める(SmartLink)"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.EnableSmartLink.tooltip"
msgstr "元々同一ポリゴンに含まれる頂点同士に加え、近傍頂点同士を初期のマージ候補に加えます。"
msgstr "同一のポリゴンに含まれている頂点に加えて、近くにある頂点同士も初期のマージ候補に含めるようにします。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.SmartLinkOptions"
msgstr "近傍頂点マージオプション"
msgstr "SmartLink設定"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkDistance.label"
msgstr "近傍頂点マージ距離"
msgstr "マージ候補に含める頂点同士の距離"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkDistance.tooltip"
msgstr "この距離より近い頂点同士が近傍頂点とみなされ、マージ候補に加えられます。大きな値を設定すると、処理時間が伸びる場合があります。"
msgstr ""
"この距離より近い頂点同士がマージ候補に含まれます。\n"
"大きな値を設定すると処理時間が伸びる場合があります。\n"
"また、4万頂点以上のメッシュで大きな値を指定するとクラッシュする場合があります。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkColorDistance.label"
msgstr "近傍頂点マージ頂点カラー距離"
msgstr "マージ候補に含める頂点同士の頂点カラーの距離"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkColorDistance.tooltip"
msgstr "大きな値を設定するほど軽量化後のポリゴンの形状が改善される場合がありますが、その代わりに頂点カラーが不自然になる場合があります。"
msgstr "大きな値を設定すると軽量化後のポリゴンの形状が改善されることがありますが、代わりに頂点カラーが不自然になる場合があります。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkUvDistance.label"
msgstr "近傍頂点マージ頂点UV距離"
msgstr "マージ候補に含める頂点同士のUV距離"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkUvDistance.tooltip"
msgstr "大きな値を設定するほど軽量化後のポリゴンの形状が改善される場合がありますが、その代わりにUVが不自然になる場合があります。"
msgstr "大きな値を設定すると軽量化後のポリゴンの形状が改善されることがありますが、代わりにUVが不自然になる場合があります。"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkMinNormalDot.label"
msgstr "近傍頂点マージ許容最小法線ドット積"
msgstr "法線角度の許容誤差(cosθ)"

msgid "Meshia.MeshSimplification.MeshSimplifierOptions.VertexLinkMinNormalDot.tooltip"
msgstr "近傍頂点マージ時に異なる許容最小法線ドット積を使用します。2つのうち、より厳しいほうが近傍頂点マージ時に使用されます。"
msgstr "SmartLink処理時に、通常と異なる許容誤差を指定できます。2つのうち、厳しい方の値が適用されます。"

msgid "locale:ja"
msgstr "日本語"