Skip to content

Commit

Permalink
Search, Formats, import, Color, Keyring, Deprecation sections
Browse files Browse the repository at this point in the history
  • Loading branch information
ericthebell committed Dec 15, 2024
1 parent a96e26d commit e1ff43c
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions jrnl/messages/MsgText.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,26 +570,28 @@ def __str__(self) -> str:
No entries to delete, because the search returned no results
""",
ja="""
検索で結果が返されなかったため、削除するエントリはありません
""",
)
NothingToModify = T(
en="""
No entries to modify, because the search returned no results
""",
ja="""
検索で結果が返されなかったため、変更するエントリはありません
""",
)
NoEntriesFound = T(
en="no entries found",
ja="",
ja="エントリが見つかりません",
)
EntryFoundCountSingular = T(
en="{num} entry found",
ja="",
ja="{num} 個のエントリが見つかりました",
)
EntryFoundCountPlural = T(
en="{num} entries found",
ja="",
ja="{num} 個のエントリが見つかりました",
)

# --- Formats --- #
Expand All @@ -598,18 +600,20 @@ def __str__(self) -> str:
Headings increased past H6 on export - {date} {title}
""",
ja="""
エクスポート時に見出しが増えて H6 を超えました - {date} {title}
""",
)
YamlMustBeDirectory = T(
en="""
YAML export must be to a directory, not a single file
""",
ja="""
YAML エクスポートは、単一のファイルではなく、ディレクトリに行う必要があります
""",
)
JournalExportedTo = T(
en="Journal exported to {path}",
ja="",
ja="ジャーナルが {path} にエプスポートされました",
)

# --- Import --- #
Expand All @@ -618,12 +622,13 @@ def __str__(self) -> str:
{count} imported to {journal_name} journal
""",
ja="""
{count} 個が {journal_name} ジャーナルにインポートされました
""",
)
# --- Color --- #
InvalidColor = T(
en="{key} set to invalid color: {color}",
ja="",
ja="{key} が無効な色に設定されています: {color}",
)

# --- Keyring --- #
Expand All @@ -635,11 +640,15 @@ def __str__(self) -> str:
https://pypi.org/project/keyring/
""",
ja="""
キーリングのバックエンドが見つかりません。
サポートされているバックエンドのいずれかをここからインストールしてください:
https://pypi.org/project/keyring/
""",
)
KeyringRetrievalFailure = T(
en="Failed to retrieve keyring",
ja="",
ja="キーリングの取得に失敗しました",
)

# --- Deprecation --- #
Expand All @@ -649,5 +658,7 @@ def __str__(self) -> str:
Please use {new_cmd} instead.
""",
ja="""
コマンド {old_cmd} は非推奨であり、まもなく jrnl から削除されます。
代わりに {new_cmd} を使用してください。
""",
)

0 comments on commit e1ff43c

Please sign in to comment.