mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-02-04 03:14:07 +01:00
Added default i18n properties file (#11442)
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
This commit is contained in:
parent
f88e074a28
commit
4366ab9b5d
@ -1,34 +1,59 @@
|
|||||||
# binding
|
# binding
|
||||||
|
|
||||||
binding.pushover.name = Pushover Binding
|
binding.pushover.name = Pushover Binding
|
||||||
binding.pushover.description = Pushover - Simple Notifications.
|
binding.pushover.description = Pushover - Simple Notifications.
|
||||||
|
|
||||||
# thing types
|
# thing types
|
||||||
|
|
||||||
thing-type.pushover.pushover-account.label = Pushover Account
|
thing-type.pushover.pushover-account.label = Pushover Account
|
||||||
thing-type.pushover.pushover-account.description = Provides access to the Pushover Messages API.
|
thing-type.pushover.pushover-account.description = Provides access to the Pushover Messages API.
|
||||||
|
|
||||||
# thing type config description
|
# thing types config
|
||||||
|
|
||||||
thing-type.config.pushover.pushover-account.apikey.label = API Token / Key
|
thing-type.config.pushover.pushover-account.apikey.label = API Token / Key
|
||||||
thing-type.config.pushover.pushover-account.apikey.description = Your API token / key (APP_TOKEN) to access the Pushover Message API.
|
thing-type.config.pushover.pushover-account.apikey.description = Your API token / key (APP_TOKEN) to access the Pushover Message API.
|
||||||
thing-type.config.pushover.pushover-account.user.label = User / Group Key
|
thing-type.config.pushover.pushover-account.expire.label = Expire
|
||||||
thing-type.config.pushover.pushover-account.user.description = Your user key or group key (USER_KEY) to which you want to push notifications.
|
thing-type.config.pushover.pushover-account.expire.description = The expire parameter specifies how long your notification will continue to be retried.
|
||||||
thing-type.config.pushover.pushover-account.title.label = Title
|
|
||||||
thing-type.config.pushover.pushover-account.title.description = The default title of a message.
|
|
||||||
thing-type.config.pushover.pushover-account.format.label = Format
|
thing-type.config.pushover.pushover-account.format.label = Format
|
||||||
thing-type.config.pushover.pushover-account.format.description = The default format of a message.
|
thing-type.config.pushover.pushover-account.format.description = The default format of a message.
|
||||||
thing-type.config.pushover.pushover-account.format.option.none = None
|
thing-type.config.pushover.pushover-account.format.option.none = None
|
||||||
thing-type.config.pushover.pushover-account.format.option.html = HTML
|
thing-type.config.pushover.pushover-account.format.option.html = HTML
|
||||||
thing-type.config.pushover.pushover-account.format.option.monospace = monospace
|
thing-type.config.pushover.pushover-account.format.option.monospace = monospace
|
||||||
thing-type.config.pushover.pushover-account.sound.label = Notification Sound
|
|
||||||
thing-type.config.pushover.pushover-account.sound.description = The notification sound on target device.
|
|
||||||
thing-type.config.pushover.pushover-account.retry.label = Retry
|
thing-type.config.pushover.pushover-account.retry.label = Retry
|
||||||
thing-type.config.pushover.pushover-account.retry.description = The retry parameter specifies how often the Pushover servers will send the same notification to the user.
|
thing-type.config.pushover.pushover-account.retry.description = The retry parameter specifies how often the Pushover servers will send the same notification to the user.
|
||||||
|
thing-type.config.pushover.pushover-account.sound.label = Notification Sound
|
||||||
|
thing-type.config.pushover.pushover-account.sound.description = The notification sound on target device.
|
||||||
|
thing-type.config.pushover.pushover-account.timeout.label = Timeout
|
||||||
|
thing-type.config.pushover.pushover-account.timeout.description = The timeout parameter specifies maximum number of seconds a request to Pushover can take.
|
||||||
|
thing-type.config.pushover.pushover-account.title.label = Title
|
||||||
|
thing-type.config.pushover.pushover-account.title.description = The default title of a message.
|
||||||
|
thing-type.config.pushover.pushover-account.user.label = User / Group Key
|
||||||
|
thing-type.config.pushover.pushover-account.user.description = Your user key or group key (USER_KEY) to which you want to push notifications.
|
||||||
|
|
||||||
# user defined messages
|
# user defined messages
|
||||||
|
|
||||||
offline.conf-error-missing-apikey = The 'apikey' parameter must be configured.
|
offline.conf-error-missing-apikey = The 'apikey' parameter must be configured.
|
||||||
offline.conf-error-missing-user = The 'user' parameter must be configured.
|
offline.conf-error-missing-user = The 'user' parameter must be configured.
|
||||||
offline.conf-error-unknown = An unknown error occurred.
|
offline.conf-error-unknown = An unknown error occurred.
|
||||||
|
|
||||||
# actions
|
# actions
|
||||||
|
|
||||||
|
cancelPriorityMessageActionLabel = cancel a priority message
|
||||||
|
cancelPriorityMessageActionDescription = This method is used to cancel a priority message.
|
||||||
|
cancelPriorityMessageActionOnputLabel = Cancelled
|
||||||
|
cancelPriorityMessageActionOnputDescription = true, if message has been cancelled successfully.
|
||||||
|
cancelPriorityMessageActionInputReceiptLabel = Receipt
|
||||||
|
cancelPriorityMessageActionInputReceiptDescription = Receipt of the message to be canceled.
|
||||||
|
sendAttachmentMessageActionLabel = send a plain text message with an attachment
|
||||||
|
sendAttachmentMessageActionDescription = This method is used to send a message with an attachment.
|
||||||
|
sendMessageActionInputAttachmentLabel = Attachment
|
||||||
|
sendMessageActionInputAttachmentDescription = Local path or URL to the attachment.
|
||||||
|
sendMessageActionInputContentTypeLabel = Content Type
|
||||||
|
sendMessageActionInputContentTypeDescription = The content type of the attachment. Defaults to "image/jpeg".
|
||||||
|
sendHTMLMessageActionLabel = send a HTML message
|
||||||
|
sendHTMLMessageActionDescription = This method is used to send a HTML message.
|
||||||
|
sendMessageActionInputSoundLabel = Sound
|
||||||
|
sendMessageActionInputSoundDescription = The notification sound on target device.
|
||||||
sendMessageActionLabel = send a plain text message
|
sendMessageActionLabel = send a plain text message
|
||||||
sendMessageActionDescription = This method is used to send a plain text message.
|
sendMessageActionDescription = This method is used to send a plain text message.
|
||||||
sendMessageActionOutputLabel = Sent
|
sendMessageActionOutputLabel = Sent
|
||||||
@ -37,45 +62,21 @@ sendMessageActionInputMessageLabel = Message
|
|||||||
sendMessageActionInputMessageDescription = Message to be sent.
|
sendMessageActionInputMessageDescription = Message to be sent.
|
||||||
sendMessageActionInputTitleLabel = Title
|
sendMessageActionInputTitleLabel = Title
|
||||||
sendMessageActionInputTitleDescription = The title of the message.
|
sendMessageActionInputTitleDescription = The title of the message.
|
||||||
|
sendMessageToDeviceActionLabel = send a plain text message to a specific device
|
||||||
sendURLMessageActionLabel = send a plain text message with an URL
|
sendMessageToDeviceActionDescription = This method is used to send a message to a specific device.
|
||||||
sendURLMessageActionDescription = This method is used to send a message with an URL.
|
sendMessageActionInputDeviceLabel = Device
|
||||||
sendMessageActionInputURLLabel = URL
|
sendMessageActionInputDeviceDescription = The name of a specific device (multiple devices may be separated by a comma).
|
||||||
sendMessageActionInputURLDescription = A supplementary URL to show with the message.
|
|
||||||
sendMessageActionInputURLTitleLabel = URL Title
|
|
||||||
sendMessageActionInputURLTitleDescription = A title for the URL, otherwise just the URL is shown.
|
|
||||||
|
|
||||||
sendMessageActionInputSoundLabel = Sound
|
|
||||||
sendMessageActionInputSoundDescription = The notification sound on target device.
|
|
||||||
|
|
||||||
sendHTMLMessageActionLabel = send a HTML message
|
|
||||||
sendHTMLMessageActionDescription = This method is used to send a HTML message.
|
|
||||||
|
|
||||||
sendMonospaceMessageActionLabel = send a monospace message
|
sendMonospaceMessageActionLabel = send a monospace message
|
||||||
sendMonospaceMessageActionDescription = This method is used to send a monospace message.
|
sendMonospaceMessageActionDescription = This method is used to send a monospace message.
|
||||||
|
|
||||||
sendAttachmentMessageActionLabel = send a plain text message with an attachment
|
|
||||||
sendAttachmentMessageActionDescription = This method is used to send a message with an attachment.
|
|
||||||
sendMessageActionInputAttachmentLabel = Attachment
|
|
||||||
sendMessageActionInputAttachmentDescription = Local path or URL to the attachment.
|
|
||||||
sendMessageActionInputContentTypeLabel = Content Type
|
|
||||||
sendMessageActionInputContentTypeDescription = The content type of the attachment. Defaults to "image/jpeg".
|
|
||||||
|
|
||||||
sendPriorityMessageActionLabel = send a priority message
|
sendPriorityMessageActionLabel = send a priority message
|
||||||
sendPriorityMessageActionDescription = This method is used to send a priority message.
|
sendPriorityMessageActionDescription = This method is used to send a priority message.
|
||||||
sendPriorityMessageActionOutputLabel = Receipt
|
sendPriorityMessageActionOutputLabel = Receipt
|
||||||
sendPriorityMessageActionOutputDescription = Receipt, if priority message sent successfully.
|
sendPriorityMessageActionOutputDescription = Receipt, if priority message sent successfully.
|
||||||
sendMessageActionInputPriorityLabel = Priority
|
sendMessageActionInputPriorityLabel = Priority
|
||||||
sendMessageActionInputPriorityDescription = Priority to be used. Defaults to 2.
|
sendMessageActionInputPriorityDescription = Priority to be used. Defaults to 2.
|
||||||
|
sendURLMessageActionLabel = send a plain text message with an URL
|
||||||
cancelPriorityMessageActionLabel = cancel a priority message
|
sendURLMessageActionDescription = This method is used to send a message with an URL.
|
||||||
cancelPriorityMessageActionDescription = This method is used to cancel a priority message.
|
sendMessageActionInputURLLabel = URL
|
||||||
cancelPriorityMessageActionOnputLabel = Cancelled
|
sendMessageActionInputURLDescription = A supplementary URL to show with the message.
|
||||||
cancelPriorityMessageActionOnputDescription = true, if message has been cancelled successfully.
|
sendMessageActionInputURLTitleLabel = URL Title
|
||||||
cancelPriorityMessageActionInputReceiptLabel = Receipt
|
sendMessageActionInputURLTitleDescription = A title for the URL, otherwise just the URL is shown.
|
||||||
cancelPriorityMessageActionInputReceiptDescription = Receipt of the message to be canceled.
|
|
||||||
|
|
||||||
sendMessageToDeviceActionLabel = send a plain text message to a specific device
|
|
||||||
sendMessageToDeviceActionDescription = This method is used to send a message to a specific device.
|
|
||||||
sendMessageActionInputDeviceLabel = Device
|
|
||||||
sendMessageActionInputDeviceDescription = The name of a specific device (multiple devices may be separated by a comma).
|
|
||||||
|
Loading…
Reference in New Issue
Block a user