-
-
Notifications
You must be signed in to change notification settings - Fork 60
Translations update from Hosted Weblate #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
OlaProeis
merged 1 commit into
OlaProeis:master
from
weblate:weblate-ferrite-ferrite-ui
Mar 11, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -148,7 +148,8 @@ settings: | |
| use_spaces: "インデントにスペースを使用" | ||
| use_spaces_tooltip: "インデントにタブの代わりにスペースを使用する" | ||
| vim_mode: "Vim モード" | ||
| vim_mode_tooltip: "Vimスタイルのモーダル編集を、通常モード、挿入モード、ビジュアルモードで有効にします。ナビゲーションには hjkl、挿入には i、通常モードには Escを使用します。" | ||
| vim_mode_tooltip: "Vimスタイルのモーダル編集を、通常モード、挿入モード、ビジュアルモードで有効にします。ナビゲーションには hjkl、挿入には | ||
| i、通常モードには Escを使用します。" | ||
| max_line_width: "最大行幅" | ||
| custom_width: "カスタム - ピクセル幅を指定" | ||
| code_folding: "コードの折りたたみ" | ||
|
|
@@ -177,6 +178,15 @@ settings: | |
| paragraph_indent_hint: "CJK タイポグラフィ規約に基づく行頭インデント" | ||
| paragraph_indent_custom: "カスタム" | ||
| paragraph_indent_custom_desc: "カスタム em 値" | ||
| complex_scripts: 追加スクリプト | ||
| complex_scripts_hint: | ||
| アラビア語、ベンガル語、デーバナーガリー語、タイ語、ヘブライ語、タミル語、グルジア語、アルメニア語、エチオピア語などの文字体系のフォントを事前に選択できます。これらの文字体系を含むファイルを開くと、フォントがオンデマンドで読み込まれます。 | ||
|
Comment on lines
+181
to
+183
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
🤖 Prompt for AI Agents |
||
| complex_script_default: 既定 (システム) | ||
| default_language: 既定の言語 | ||
| default_language_hint: ファイルパスから言語が検出されない場合に、保存されていない/新しいドキュメントで構文を強調表示する言語 | ||
| default_language_auto: 自動 (なし) | ||
| header_spacing: ヘッダの間隔 | ||
| header_spacing_hint: レンダリング表示でのヘッダ (H1-H6) 間の縦方向の間隔 | ||
| preview: | ||
| sync_scroll: "スクロールの同期" | ||
| default_view: "既定の表示モード" | ||
|
|
@@ -569,7 +579,7 @@ notification: | |
| renamed_to: "名前の変更 : %{name}" | ||
| deleted: "削除済み : %{name}" | ||
| opened_background: "バックグラウンドで開く : %{name}" | ||
| settings_reset: "設定をデフォルトにリセット" | ||
| settings_reset: "設定を既定値にリセット" | ||
| encoding_changed: "エンコーディングが %{encoding} に変更されました" | ||
| reloaded_single: "再読み込み済み : %{name}" | ||
| reloaded_multiple: "%{count} 個のファイルがディスクから再読み込みされました" | ||
|
|
@@ -692,7 +702,9 @@ pipeline: | |
| run_tooltip: "コマンドを実行 (Enter)" | ||
| stdout: "stdout" | ||
| stderr: "stderr" | ||
| hint: "上の欄にコマンドを入力して、ドキュメントをパイプ処理します。\n例 :\n• jq '.' - JSON を整形\n• jq '.items[]' - 配列項目を抽出\n• yq '.data' - YAML フィールドを抽出\n• grep 'pattern' - パターンを検索" | ||
| hint: "上の欄にコマンドを入力して、ドキュメントをパイプ処理します。\n例 :\n• jq '.' - JSON を整形\n• jq | ||
| '.items[]' - 配列項目を抽出\n• yq '.data' - YAML フィールドを抽出\n• grep 'pattern'\ | ||
| \ - パターンを検索" | ||
| no_output_success: "(コマンドは出力を生成しませんでした)" | ||
|
|
||
| # Encoding | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: OlaProeis/Ferrite
Length of output: 172
Replace the wrapped quoted scalar with a literal block scalar to preserve newlines.
The YAML parser folds the double-quoted scalar into a single line, removing the intended line break. Use
|-(literal block scalar, stripped final newline) to ensure the tooltip renders correctly with the line break intact.Suggested fix
📝 Committable suggestion
🤖 Prompt for AI Agents