mirror of
https://github.com/home-assistant/core.git
synced 2026-02-07 07:44:50 +01:00
* fix codespell issues * update nextcloud snapshots * update weheat snapshots * update waqi snapshots
114 lines
3.7 KiB
JSON
114 lines
3.7 KiB
JSON
{
|
|
"config": {
|
|
"step": {
|
|
"user": {
|
|
"data": {
|
|
"base_url": "[%key:common::config_flow::data::url%]",
|
|
"client_id": "Client key",
|
|
"client_secret": "Client secret",
|
|
"access_token": "[%key:common::config_flow::data::access_token%]"
|
|
},
|
|
"data_description": {
|
|
"base_url": "The URL of your Mastodon instance e.g. https://mastodon.social.",
|
|
"client_id": "The client key for the application created within your Mastodon account.",
|
|
"client_secret": "The client secret for the application created within your Mastodon account.",
|
|
"access_token": "The access token for the application created within your Mastodon account."
|
|
}
|
|
}
|
|
},
|
|
"abort": {
|
|
"already_configured": "[%key:common::config_flow::abort::already_configured_service%]"
|
|
},
|
|
"error": {
|
|
"unauthorized_error": "The credentials are incorrect.",
|
|
"network_error": "The Mastodon instance was not found.",
|
|
"unknown": "Unknown error occurred when connecting to the Mastodon instance."
|
|
}
|
|
},
|
|
"exceptions": {
|
|
"not_loaded": {
|
|
"message": "{target} is not loaded."
|
|
},
|
|
"integration_not_found": {
|
|
"message": "Integration \"{target}\" not found in registry."
|
|
},
|
|
"unable_to_send_message": {
|
|
"message": "Unable to send message."
|
|
},
|
|
"unable_to_upload_image": {
|
|
"message": "Unable to upload image {media_path}."
|
|
},
|
|
"not_whitelisted_directory": {
|
|
"message": "{media} is not a whitelisted directory."
|
|
}
|
|
},
|
|
"issues": {
|
|
"deprecated_notify_action": {
|
|
"title": "Deprecated Notify action used for Mastodon",
|
|
"description": "The Notify action for Mastodon is deprecated.\n\nUse the `mastodon.post` action instead."
|
|
}
|
|
},
|
|
"entity": {
|
|
"sensor": {
|
|
"followers": {
|
|
"name": "Followers",
|
|
"unit_of_measurement": "accounts"
|
|
},
|
|
"following": {
|
|
"name": "Following",
|
|
"unit_of_measurement": "[%key:component::mastodon::entity::sensor::followers::unit_of_measurement%]"
|
|
},
|
|
"posts": {
|
|
"name": "Posts",
|
|
"unit_of_measurement": "posts"
|
|
}
|
|
}
|
|
},
|
|
"services": {
|
|
"post": {
|
|
"name": "Post",
|
|
"description": "Posts a status on your Mastodon account.",
|
|
"fields": {
|
|
"config_entry_id": {
|
|
"name": "Mastodon account",
|
|
"description": "Select the Mastodon account to post to."
|
|
},
|
|
"status": {
|
|
"name": "Status",
|
|
"description": "The status to post."
|
|
},
|
|
"visibility": {
|
|
"name": "Visibility",
|
|
"description": "The visibility of the post (default: account setting)."
|
|
},
|
|
"content_warning": {
|
|
"name": "Content warning",
|
|
"description": "A content warning will be shown before the status text is shown (default: no content warning)."
|
|
},
|
|
"media": {
|
|
"name": "Media",
|
|
"description": "Attach an image or video to the post."
|
|
},
|
|
"media_description": {
|
|
"name": "Media description",
|
|
"description": "If an image or video is attached, will add a description for this media for people with visual impairments."
|
|
},
|
|
"media_warning": {
|
|
"name": "Media warning",
|
|
"description": "If an image or video is attached, will mark the media as sensitive (default: no media warning)."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"selector": {
|
|
"post_visibility": {
|
|
"options": {
|
|
"public": "Public - Visible to everyone",
|
|
"unlisted": "Unlisted - Public but not shown in public timelines",
|
|
"private": "Private - Followers only",
|
|
"direct": "Direct - Mentioned accounts only"
|
|
}
|
|
}
|
|
}
|
|
}
|