Search, Formats, import, Color, Keyring, Deprecation sections

This commit is contained in:
Eric Bell 2024-12-14 19:34:19 -05:00
parent a96e26d41d
commit e1ff43c285

View file

@ -570,6 +570,7 @@ class MsgText(Enum):
No entries to delete, because the search returned no results No entries to delete, because the search returned no results
""", """,
ja=""" ja="""
検索で結果が返されなかったため削除するエントリはありません
""", """,
) )
NothingToModify = T( NothingToModify = T(
@ -577,19 +578,20 @@ class MsgText(Enum):
No entries to modify, because the search returned no results No entries to modify, because the search returned no results
""", """,
ja=""" ja="""
検索で結果が返されなかったため変更するエントリはありません
""", """,
) )
NoEntriesFound = T( NoEntriesFound = T(
en="no entries found", en="no entries found",
ja="", ja="エントリが見つかりません",
) )
EntryFoundCountSingular = T( EntryFoundCountSingular = T(
en="{num} entry found", en="{num} entry found",
ja="", ja="{num} 個のエントリが見つかりました",
) )
EntryFoundCountPlural = T( EntryFoundCountPlural = T(
en="{num} entries found", en="{num} entries found",
ja="", ja="{num} 個のエントリが見つかりました",
) )
# --- Formats --- # # --- Formats --- #
@ -598,6 +600,7 @@ class MsgText(Enum):
Headings increased past H6 on export - {date} {title} Headings increased past H6 on export - {date} {title}
""", """,
ja=""" ja="""
エクスポート時に見出しが増えて H6 を超えました - {date} {title}
""", """,
) )
YamlMustBeDirectory = T( YamlMustBeDirectory = T(
@ -605,11 +608,12 @@ class MsgText(Enum):
YAML export must be to a directory, not a single file YAML export must be to a directory, not a single file
""", """,
ja=""" ja="""
YAML エクスポートは単一のファイルではなくディレクトリに行う必要があります
""", """,
) )
JournalExportedTo = T( JournalExportedTo = T(
en="Journal exported to {path}", en="Journal exported to {path}",
ja="", ja="ジャーナルが {path} にエプスポートされました",
) )
# --- Import --- # # --- Import --- #
@ -618,12 +622,13 @@ class MsgText(Enum):
{count} imported to {journal_name} journal {count} imported to {journal_name} journal
""", """,
ja=""" ja="""
{count} 個が {journal_name} ジャーナルにインポートされました
""", """,
) )
# --- Color --- # # --- Color --- #
InvalidColor = T( InvalidColor = T(
en="{key} set to invalid color: {color}", en="{key} set to invalid color: {color}",
ja="", ja="{key} が無効な色に設定されています: {color}",
) )
# --- Keyring --- # # --- Keyring --- #
@ -635,11 +640,15 @@ class MsgText(Enum):
https://pypi.org/project/keyring/ https://pypi.org/project/keyring/
""", """,
ja=""" ja="""
キーリングのバックエンドが見つかりません
サポートされているバックエンドのいずれかをここからインストールしてください:
https://pypi.org/project/keyring/
""", """,
) )
KeyringRetrievalFailure = T( KeyringRetrievalFailure = T(
en="Failed to retrieve keyring", en="Failed to retrieve keyring",
ja="", ja="キーリングの取得に失敗しました",
) )
# --- Deprecation --- # # --- Deprecation --- #
@ -649,5 +658,7 @@ class MsgText(Enum):
Please use {new_cmd} instead. Please use {new_cmd} instead.
""", """,
ja=""" ja="""
コマンド {old_cmd} は非推奨でありまもなく jrnl から削除されます
代わりに {new_cmd} を使用してください
""", """,
) )