mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-29 02:56:11 +03:00
Added PIN code and components for the chat
This commit is contained in:
parent
540a7f08cf
commit
191a33ee3d
2
index.js
2
index.js
@ -6,6 +6,8 @@ import 'react-native-url-polyfill/auto';
|
||||
import 'intl';
|
||||
import 'intl/locale-data/jsonp/en-US';
|
||||
|
||||
import './globals.js';
|
||||
|
||||
// set check frequency options
|
||||
const EcencyApp = require('./App').default;
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -33,7 +33,7 @@
|
||||
"@babel/runtime": "^7.5.5",
|
||||
"@bugsnag/react-native": "^7.22.2",
|
||||
"@dotlottie/react-player": "^1.6.17",
|
||||
"@ecency/ns-query": "^1.2.2-rc0",
|
||||
"@ecency/ns-query": "1.2.2-rc0",
|
||||
"@ecency/render-helper": "^2.2.31",
|
||||
"@esteemapp/dhive": "0.15.0",
|
||||
"@esteemapp/react-native-autocomplete-input": "^4.2.1",
|
||||
@ -153,6 +153,7 @@
|
||||
"react-native-scrollable-tab-view": "ecency/react-native-scrollable-tab-view",
|
||||
"react-native-select-dropdown": "^3.4.0",
|
||||
"react-native-slider": "^0.11.0",
|
||||
"react-native-smooth-pincode-input": "^1.0.9",
|
||||
"react-native-snap-carousel": "^3.8.0",
|
||||
"react-native-svg": "^12.1.1",
|
||||
"react-native-swiper": "^1.6.0-rc.3",
|
||||
@ -185,6 +186,7 @@
|
||||
"stream": "^0.0.2",
|
||||
"stream-browserify": "^3.0.0",
|
||||
"string_decoder": "~0.10.25",
|
||||
"text-encoding": "^0.7.0",
|
||||
"timers-browserify": "^1.0.1",
|
||||
"tty-browserify": "0.0.0",
|
||||
"url": "~0.10.1",
|
||||
|
@ -11,8 +11,12 @@ import styles from './squareButtonStyles';
|
||||
* @prop { array } textStyle - It is addionatly syle for text of button.
|
||||
* @prop { any } value - When button clicked, this value will push with on press func.
|
||||
*/
|
||||
const SquareButtonView = ({ text, onPress, style, value, textStyle }) => (
|
||||
<TouchableOpacity style={[styles.button, style]} onPress={() => onPress && onPress(value)}>
|
||||
const SquareButtonView = ({ text, onPress, style, value, textStyle, ...rest }) => (
|
||||
<TouchableOpacity
|
||||
{...rest}
|
||||
style={[styles.button, style]}
|
||||
onPress={() => onPress && onPress(value)}
|
||||
>
|
||||
<Text style={[styles.buttonText, textStyle]}>{text}</Text>
|
||||
</TouchableOpacity>
|
||||
);
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1103,5 +1103,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,118 @@
|
||||
"missing-authority": "Esta operación requiere una Clave Activa Privada o autoridad.",
|
||||
"missing-owner-authority": "Esta operación requiere una Clave Propietaria Privada o su autoridad.",
|
||||
"insufficient_fund": "Fondos insuficientes"
|
||||
},
|
||||
|
||||
"chat": {
|
||||
"page-title": "Conversaciones",
|
||||
"read-only": "Sólo lectura",
|
||||
"why-read-only": "Este usuario ha cambiado su clave de chat. Por favor, encuentre una nueva cuenta por nombre de usuario en la búsqueda anterior.",
|
||||
"user-not-joined": "Aún no se ha unido",
|
||||
"title": "Chats",
|
||||
"messages": "Mensajes",
|
||||
"key": "Clave de Chat de Ecency",
|
||||
"new-message": "Nuevo mensaje",
|
||||
"direct-messages": "Mensajes directos",
|
||||
"collapse": "Colapsar",
|
||||
"expand": "Expandir",
|
||||
"scroll-to-bottom": "Desplazar hasta abajo",
|
||||
"joined": "Se unió",
|
||||
"followers": "Seguidores",
|
||||
"start-chat-placeholder": "Iniciar un nuevo mensaje",
|
||||
"search": "Buscar personas o comunidades",
|
||||
"join-chat": "Unirse al chat",
|
||||
"join-channel": "Unirse al canal",
|
||||
"back": "Regresar",
|
||||
"no-chat": "No se encontró ninguna conversación",
|
||||
"start-chat": "Empezar a chatear",
|
||||
"not-joined": "Este usuario aún no se ha unido al chat",
|
||||
"subscribers": "Suscriptores",
|
||||
"invite": "Invitar",
|
||||
"send-invite": "Enviar una invitación",
|
||||
"leave:": "Salir",
|
||||
"refresh": "Refrescar",
|
||||
"message-warning": "No puedes enviar mensajes en este grupo.",
|
||||
"edit-community-roles": "Editar roles de comunidad",
|
||||
"add": "Agregar",
|
||||
"no-admin": "No hay administrador o moderador para este chat de la comunidad.",
|
||||
"blocked-users": "Usuarios bloqueados",
|
||||
"action": "Acción",
|
||||
"unblock": "Desbloquear",
|
||||
"ecency-key": "Clave de Ecency",
|
||||
"no-locked-user": "Usuarios bloqueados no encontrados",
|
||||
"no-hidden-messages": "Mensajes ocultos no encontrados",
|
||||
"enter-private-key": "Introducir clave privada de chat",
|
||||
"enter-private-key-detail": "Introduzca la clave privada del chat para importar todos los chats",
|
||||
"close": "Cerrar",
|
||||
"confirm": "Confirmar",
|
||||
"error-updating-community": "Error al actualizar la comunidad",
|
||||
"leave-channel": "Abandonar canal",
|
||||
"leaving": "Abandonando",
|
||||
"edit-roles": "Editar Roles",
|
||||
"manage-chat-key": "Información de credenciales",
|
||||
"block": "Bloquear",
|
||||
"communities": "Comunidades",
|
||||
"dms": "Mensajes directos",
|
||||
"import-chat": "Importar chat",
|
||||
"create-new-account": "Crear Nueva Cuenta",
|
||||
"loading": "Cargando...",
|
||||
"blocked-user-message": "Has sido bloqueado de esta comunidad",
|
||||
"start-community-channel": "Iniciar canal comunitario",
|
||||
"view-community-channel": "Ver canal comunitario",
|
||||
"submit": "Enviar",
|
||||
"chat-priv-key": "Por favor, guarde la clave de chat haciendo clic en el botón de descarga o escaneando el código QR para restaurar sus conversaciones.",
|
||||
"public-key": "Clave pública",
|
||||
"private-key": "Clave privada",
|
||||
"copy-priv-key": "Copiar Cave Privada",
|
||||
"extended-view": "Vista Extendida",
|
||||
"you-haven-t-joined": "Aún no te has unido al Chat. ¡Por favor, únete para empezar!",
|
||||
"invalid-private-key": "Clave privada inválida",
|
||||
"enter-username": "Introducir nombre de usuario temporal",
|
||||
"hide-message": "Ocultar mensaje",
|
||||
"block-author": "Bloquear autor",
|
||||
"unblock-author": "Desbloquear autor",
|
||||
"create-an-account": "Crear cuenta de chat",
|
||||
"create-description": "¡Bienvenido! Tu cuenta está casi lista. Inicia conversaciones y disfruta conectándote con otros privadamente.",
|
||||
"create-pin-description": "Por favor, establezca el PIN para acceder a sus chats desde cualquier dispositivo",
|
||||
"logout": "Cerrar sesión",
|
||||
"specify-invitation-message": "Este mensaje de invitación se enviará como comentario al último mensaje de usuario",
|
||||
"successfully-invited": "¡Invitado con éxito!",
|
||||
"invite-couldnt-be-sent": "La invitación no pudo ser enviada debido a que el usuario aún no tiene ninguna publicación",
|
||||
"no-posts-for-invite": "Desafortunadamente, el usuario no parece estar activo y no ha hecho ningún mensaje.",
|
||||
"warn-key-saving": "¡Realiza una Copia de Seguridad de tu clave de chat para mantener la cuenta segura y también tener un servicio ininterrumpido!",
|
||||
"view-and-save": "Mostrar claves y guardar",
|
||||
"blocked-users-management": "Gestión de usuarios bloqueados",
|
||||
"unlock-the-section": "Por favor, introduce tu PIN para ver la información de tus credenciales",
|
||||
"no-contacts-or-channels": "Aún no hay conversaciones",
|
||||
"upload-image": "Subir imagen",
|
||||
"hidden-messages": "Mensajes ocultos",
|
||||
"hidden-messages-management": "Gestión de mensajes ocultos",
|
||||
"saved-messages": "Mensajes guardados",
|
||||
"fetch-error": "Mientras estabas ausente, hemos detectado el cambio de red. Recarga la página ahora para recuperar nuevos datos",
|
||||
"pin": "Anclar arriba",
|
||||
"unpin": "Desanclar",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Bienvenido a Chats",
|
||||
"description": "Crear o importar una cuenta empieza a usar Chats",
|
||||
"already-joined-title": "Parece que ya te has unido a los Chats",
|
||||
"already-joined-hint": "Por favor, verifique su cuenta y obtenga acceso introduciendo PIN",
|
||||
"pin-failed": "PIN inválido. Error al verificar.",
|
||||
"oops": "¡Ups!",
|
||||
"user-not-joined-yet": "No puedes enviar un mensaje. Este usuario o canal no se ha unido a chats todavía.",
|
||||
"hello": "Hola",
|
||||
"start-description": "Busca en una persona o comunidad y empieza a enviar mensajes",
|
||||
"join-description": "No eres parte del canal",
|
||||
"rejoin-description": "Has abandonado este chat de la comunidad. ¡Regresa al chat ahora!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importando cuenta",
|
||||
"description": "Por favor, introduzca un par de claves públicas y privadas para importar su cuenta existente",
|
||||
"button": "Importar",
|
||||
"iv": "Valor inicial del vector"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,118 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,118 @@
|
||||
"missing-authority": "Tämä operaatio vaatii aktiivisen yksityisen avaimen tai valtuuden.",
|
||||
"missing-owner-authority": "Tämä toiminto vaatii omistajan yksityisen avaimen tai valtuuden.",
|
||||
"insufficient_fund": "Riittämättömät varat"
|
||||
},
|
||||
|
||||
"chat": {
|
||||
"page-title": "Keskustelut",
|
||||
"read-only": "Vain luku",
|
||||
"why-read-only": "Tämä käyttäjä on muuttanut chat-avaintaan. Ole hyvä ja etsi uusi tili käyttäjätunnuksella yläpuolelta.",
|
||||
"user-not-joined": "Ei vielä liittynyt",
|
||||
"title": "Keskustelut",
|
||||
"messages": "Viestit",
|
||||
"key": "Ecencyn chat-avain",
|
||||
"new-message": "Uusi viesti",
|
||||
"direct-messages": "Suoraviestit",
|
||||
"collapse": "Tiivistä",
|
||||
"expand": "Laajenna",
|
||||
"scroll-to-bottom": "Siirry Alas",
|
||||
"joined": "Liittynyt",
|
||||
"followers": "Seuraajia",
|
||||
"start-chat-placeholder": "Kirjoita uusi viesti",
|
||||
"search": "Etsi ihmisiä tai yhteisöjä",
|
||||
"join-chat": "Liity keskusteluun",
|
||||
"join-channel": "Liity kanavalle",
|
||||
"back": "Takaisin",
|
||||
"no-chat": "Keskustelua ei löytynyt",
|
||||
"start-chat": "Aloita keskustelu",
|
||||
"not-joined": "Tämä käyttäjä ei ole vielä liittynyt keskusteluun",
|
||||
"subscribers": "Tilaajat",
|
||||
"invite": "Kutsu",
|
||||
"send-invite": "Lähetä kutsu",
|
||||
"leave:": "Poistu",
|
||||
"refresh": "Päivitä",
|
||||
"message-warning": "Et voi lähettää viestejä tässä ryhmässä.",
|
||||
"edit-community-roles": "Muokkaa Yhteisörooleja",
|
||||
"add": "Lisää",
|
||||
"no-admin": "Yhteisökeskustelulla ei ole ylläpitäjää tai valvojaa.",
|
||||
"blocked-users": "Estetyt käyttäjät",
|
||||
"action": "Toiminnot",
|
||||
"unblock": "Poista esto",
|
||||
"ecency-key": "Ecency-avain",
|
||||
"no-locked-user": "Estettyjä käyttäjiä ei löytynyt",
|
||||
"no-hidden-messages": "Piilotettuja viestejä ei löydy",
|
||||
"enter-private-key": "Syötä Keskustelun yksityinen avain",
|
||||
"enter-private-key-detail": "Syötä chatin yksityinen avain kaikkien keskustelujen tuomiseksi",
|
||||
"close": "Sulje",
|
||||
"confirm": "Vahvista",
|
||||
"error-updating-community": "Yhteisön päivittämisessä tapahtui virhe",
|
||||
"leave-channel": "Poistu kanavalta",
|
||||
"leaving": "Poistutaan",
|
||||
"edit-roles": "Muokkaa rooleja",
|
||||
"manage-chat-key": "Käyttäjätiedot",
|
||||
"block": "Estä",
|
||||
"communities": "Yhteisöt",
|
||||
"dms": "Suoraviestit",
|
||||
"import-chat": "Tuo Keskustelu",
|
||||
"create-new-account": "Luo uusi tili",
|
||||
"loading": "Ladataan...",
|
||||
"blocked-user-message": "Sinut on estetty tästä yhteisöstä",
|
||||
"start-community-channel": "Käynnistä yhteisökanava",
|
||||
"view-community-channel": "Näytä yhteisökanava",
|
||||
"submit": "Lähetä",
|
||||
"chat-priv-key": "Tallenna Keskusteluavain klikkaamalla latauspainiketta tai skannaamalla QR-koodi palauttaaksesi keskustelut.",
|
||||
"public-key": "Julkinen avain",
|
||||
"private-key": "Yksityinen avain",
|
||||
"copy-priv-key": "Kopioi yksityinen avain",
|
||||
"extended-view": "Laajennettu Näkymä",
|
||||
"you-haven-t-joined": "Et ole vielä osallistunut keskusteluun. Liity aloittaaksesi!",
|
||||
"invalid-private-key": "Virheellinen yksityinen avain",
|
||||
"enter-username": "Syötä väliaikainen käyttäjänimi",
|
||||
"hide-message": "Piilota viesti",
|
||||
"block-author": "Estä julkaisija",
|
||||
"unblock-author": "Poista esto julkaisijalta",
|
||||
"create-an-account": "Luo keskustelutili",
|
||||
"create-description": "Tervetuloa mukaan! Tilisi on melkein valmis. Sukella keskusteluihin ja nauti yksityisyydestä.",
|
||||
"create-pin-description": "Ole hyvä ja aseta PIN-koodi saadaksesi pääsyn keskusteluusi mistä tahansa laitteesta",
|
||||
"logout": "Kirjaudu ulos",
|
||||
"specify-invitation-message": "Tämä kutsuviesti lähetetään kommenttina viimeisimpään käyttäjän julkaisuun",
|
||||
"successfully-invited": "Onnistuneesti kutsuttu!",
|
||||
"invite-couldnt-be-sent": "Kutsua ei voitu lähettää, koska käyttäjällä ei ole vielä yhtään julkaisua",
|
||||
"no-posts-for-invite": "Valitettavasti käyttäjä ei vaikuta aktiiviselta, eikä ole tehnyt yhtään julkaisua.",
|
||||
"warn-key-saving": "Varmuuskopioi chat-avaimesi pitääksesi tilinsi turvassa ja nauti keskeytymättömästä palvelusta!",
|
||||
"view-and-save": "Näytä avaimet ja tallenna",
|
||||
"blocked-users-management": "Estettyjen käyttäjien hallinta",
|
||||
"unlock-the-section": "Ole hyvä ja syötä PIN nähdäksesi käyttäjätietosi",
|
||||
"no-contacts-or-channels": "Ei keskusteluja vielä",
|
||||
"upload-image": "Lataa kuva",
|
||||
"hidden-messages": "Piilotetut viestit",
|
||||
"hidden-messages-management": "Piilotettujen viestien hallinta",
|
||||
"saved-messages": "Tallennetut viestit",
|
||||
"fetch-error": "Kun olit poissa, verkkomuutos on havaittu. Lataa sivu uudelleen saadaksesi uuden datan",
|
||||
"pin": "Kiinnitä",
|
||||
"unpin": "Irrota",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Tervetuloa Keskusteluihin",
|
||||
"description": "Luo tai tuo tili käyttääksesi Keskusteluja",
|
||||
"already-joined-title": "Näyttää siltä, että olet jo liittynyt Keskusteluihin",
|
||||
"already-joined-hint": "Ole hyvä ja vahvista tilisi liittyäksesi syöttämällä PIN-koodin",
|
||||
"pin-failed": "Virheellinen PIN-koodi. Todentaminen epäonnistui.",
|
||||
"oops": "Hups!",
|
||||
"user-not-joined-yet": "Et voi lähettää viestiä. Tämä käyttäjä tai kanava ei ole vielä liittynyt keskusteluihin.",
|
||||
"hello": "Hei",
|
||||
"start-description": "Etsi henkilöä tai yhteisöä ja aloita viestittely",
|
||||
"join-description": "Et ole liittynyt kanavalle",
|
||||
"rejoin-description": "Olet poistunut tästä yhteisökeskustelusta. Liity uudelleen!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Tuodaan tiliä",
|
||||
"description": "Ole hyvä ja kirjoita julkinen ja yksityinen avainpari tuodaksesi nykyisen tilisi",
|
||||
"button": "Tuonti",
|
||||
"iv": "Alkuvektorin arvo"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,118 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "Esta operação requer a chave Ativa privada ou de autoridade.",
|
||||
"missing-owner-authority": "Essa operação requer a chave privada do Proprietário ou de autoridade.",
|
||||
"insufficient_fund": "Fundos Insuficientes"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversas",
|
||||
"read-only": "Somente leitura",
|
||||
"why-read-only": "Este usuário mudou a chave de bate-papo. Por favor, encontre uma nova conta com o nome de usuário na busca acima.",
|
||||
"user-not-joined": "Ainda não se juntou",
|
||||
"title": "Bate-papo",
|
||||
"messages": "Mensagens",
|
||||
"key": "Chaves de bate-papo Ecency",
|
||||
"new-message": "Nova Mensagem",
|
||||
"direct-messages": "Mensagens diretas",
|
||||
"collapse": "Fechar",
|
||||
"expand": "Expandir",
|
||||
"scroll-to-bottom": "Rolar para baixo",
|
||||
"joined": "Entrou",
|
||||
"followers": "Seguidores",
|
||||
"start-chat-placeholder": "Criar mensagem",
|
||||
"search": "Procurar pessoas ou comunidades",
|
||||
"join-chat": "Entrar no bate-papo",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Voltar",
|
||||
"no-chat": "Nenhuma conversa encontrada",
|
||||
"start-chat": "Comece a conversar",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirmar",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Sair do canal",
|
||||
"leaving": "Saindo",
|
||||
"edit-roles": "Editar Papéis",
|
||||
"manage-chat-key": "Informações das credenciais",
|
||||
"block": "Bloco",
|
||||
"communities": "Comunidades",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Importar Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Enviar",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Convite enviado!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Por favor, insira seu PIN para ver suas informações de credenciais",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Enviar imagem",
|
||||
"hidden-messages": "Mensagens ocultas",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "Для выполнения этой операции требуется приватный ключ или ключ владельца.",
|
||||
"missing-owner-authority": "Для выполнения этой операции требуется приватный ключ или ключ владельца.",
|
||||
"insufficient_fund": "Недостаточность средств"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Диалоги",
|
||||
"read-only": "Только для чтения",
|
||||
"why-read-only": "Этот пользователь изменил свой ключ чата. Пожалуйста, найдите новый аккаунт по имени пользователя в поиске выше.",
|
||||
"user-not-joined": "Пока не присоединился",
|
||||
"title": "Чаты",
|
||||
"messages": "Сообщения",
|
||||
"key": "Ключ чата Ecency",
|
||||
"new-message": "Новое сообщение",
|
||||
"direct-messages": "Личные сообщения",
|
||||
"collapse": "Свернуть",
|
||||
"expand": "Развернуть",
|
||||
"scroll-to-bottom": "Прокрутить вниз",
|
||||
"joined": "Присоединился",
|
||||
"followers": "Подписчики",
|
||||
"start-chat-placeholder": "Написать новое сообщение",
|
||||
"search": "Поиск людей или сообществ",
|
||||
"join-chat": "Присоединиться к чату",
|
||||
"join-channel": "Присоединиться к каналу",
|
||||
"back": "Назад",
|
||||
"no-chat": "Диалоги не найдены",
|
||||
"start-chat": "Начать общение",
|
||||
"not-joined": "Этот пользователь еще не присоединился к чату",
|
||||
"subscribers": "Подписчики",
|
||||
"invite": "Пригласить",
|
||||
"send-invite": "Отправить приглашение",
|
||||
"leave:": "Покинуть",
|
||||
"refresh": "Обновить",
|
||||
"message-warning": "Вы не можете отправлять сообщения в этой группе.",
|
||||
"edit-community-roles": "Редактировать роли сообщества",
|
||||
"add": "Добавить",
|
||||
"no-admin": "В этом чате нет администраторов или модераторов.",
|
||||
"blocked-users": "Заблокированные пользователи",
|
||||
"action": "Действие",
|
||||
"unblock": "Разблокировать",
|
||||
"ecency-key": "Ключ Ecency",
|
||||
"no-locked-user": "Заблокированные пользователи не найдены",
|
||||
"no-hidden-messages": "Скрытые сообщения не найдены",
|
||||
"enter-private-key": "Введите приватный ключ чата",
|
||||
"enter-private-key-detail": "Введите приватный ключ чата для импорта всех чатов",
|
||||
"close": "Закрыть",
|
||||
"confirm": "Подтвердить",
|
||||
"error-updating-community": "Произошла ошибка при обновлении сообщества",
|
||||
"leave-channel": "Покинуть канал",
|
||||
"leaving": "Выход",
|
||||
"edit-roles": "Изменить роли",
|
||||
"manage-chat-key": "Данные учётной записи",
|
||||
"block": "Заблокировать",
|
||||
"communities": "Сообщества",
|
||||
"dms": "Личные сообщения",
|
||||
"import-chat": "Импорт чата",
|
||||
"create-new-account": "Создать новую учетную запись",
|
||||
"loading": "Загрузка...",
|
||||
"blocked-user-message": "Вы были заблокированы в этом сообществе",
|
||||
"start-community-channel": "Запустите канал сообщества",
|
||||
"view-community-channel": "Просмотр канала сообщества",
|
||||
"submit": "Отправить",
|
||||
"chat-priv-key": "Пожалуйста, сохраните ключ чата, нажав на кнопку загрузки или сканируя QR-код для восстановления ваших диалогов.",
|
||||
"public-key": "Открытый ключ",
|
||||
"private-key": "Приватный ключ",
|
||||
"copy-priv-key": "Копировать приватный ключ",
|
||||
"extended-view": "Расширенный вид",
|
||||
"you-haven-t-joined": "Вы еще не присоединились к чату. Пожалуйста, присоединяйтесь, чтобы начать!",
|
||||
"invalid-private-key": "Неверный приватный ключ",
|
||||
"enter-username": "Введите временное имя пользователя",
|
||||
"hide-message": "Скрыть сообщение",
|
||||
"block-author": "Заблокировать автора",
|
||||
"unblock-author": "Разблокировать автора",
|
||||
"create-an-account": "Создать аккаунт в чате",
|
||||
"create-description": "Добро пожаловать! Ваша учетная запись почти готова. Погрузитесь в разговоры и наслаждайтесь личным общением с другими.",
|
||||
"create-pin-description": "Пожалуйста, установите PIN-код для получения доступа к чатам с любого устройства",
|
||||
"logout": "Выйти",
|
||||
"specify-invitation-message": "Это приглашение будет отправлено в качестве комментария к последнему сообщению пользователя",
|
||||
"successfully-invited": "Приглашение успешно отправлено!",
|
||||
"invite-couldnt-be-sent": "Приглашение не может быть отправлено из-за отсутствия сообщения",
|
||||
"no-posts-for-invite": "К сожалению, пользователь не активен и не создавал никаких сообщений.",
|
||||
"warn-key-saving": "Создайте резервную копию ключа чата, чтобы сохранить безопасность аккаунта и обеспечить бесперебойную работу сервиса!",
|
||||
"view-and-save": "Показать ключи и сохранить",
|
||||
"blocked-users-management": "Управление заблокированными пользователями",
|
||||
"unlock-the-section": "Пожалуйста, введите PIN-код, чтобы увидеть информацию о ваших учетных данных",
|
||||
"no-contacts-or-channels": "Диалогов пока нет",
|
||||
"upload-image": "Загрузить изображение",
|
||||
"hidden-messages": "Скрытые сообщения",
|
||||
"hidden-messages-management": "Управление скрытыми сообщениями",
|
||||
"saved-messages": "Сохраненные сообщения",
|
||||
"fetch-error": "Пока вас не было, были обнаружены изменения в сети. Перезагрузите страницу, чтобы получить новые данные",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Добро пожаловать в чаты",
|
||||
"description": "Создайте или импортируйте аккаунт с помощью чатов",
|
||||
"already-joined-title": "Похоже, вы уже присоединились к чатам",
|
||||
"already-joined-hint": "Пожалуйста, подтвердите свой аккаунт и получите доступ, введя PIN-код",
|
||||
"pin-failed": "Неверный PIN-код. Проверка не удалась.",
|
||||
"oops": "Упс!",
|
||||
"user-not-joined-yet": "Вы не можете отправить сообщение. Этот пользователь или канал еще не присоединились к чатам.",
|
||||
"hello": "Привет",
|
||||
"start-description": "Поиск пользователя, сообщества и отправка сообщений",
|
||||
"join-description": "Вы не являетесь участником канала",
|
||||
"rejoin-description": "Вы покинули чат сообщества. Присоединяйтесь к чату прямо сейчас!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Импортирование учетной записи",
|
||||
"description": "Пожалуйста, введите пару открытых и приватных ключей для импорта существующей учетной записи",
|
||||
"button": "Импорт",
|
||||
"iv": "Начальное значение вектора"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Konversationer",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Meddelanden",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "Nytt meddelande",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Följare",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Lämna",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Stäng",
|
||||
"confirm": "Bekräfta",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Redigera roller",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Skapa nytt konto",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Skicka",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logga ut",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Sparade meddelanden",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1101,5 +1101,117 @@
|
||||
"missing-authority": "This operation requires Active private key or authority.",
|
||||
"missing-owner-authority": "This operation requires Owner private key or authority.",
|
||||
"insufficient_fund": "Insufficient Funds"
|
||||
},
|
||||
"chat": {
|
||||
"page-title": "Conversations",
|
||||
"read-only": "Read-only",
|
||||
"why-read-only": "This user has changed their chat key. Please, find new account by username in search above.",
|
||||
"user-not-joined": "Hasn't joined yet",
|
||||
"title": "Chats",
|
||||
"messages": "Messages",
|
||||
"key": "Ecency chat key",
|
||||
"new-message": "New Message",
|
||||
"direct-messages": "Direct messages",
|
||||
"collapse": "Collapse",
|
||||
"expand": "Expand",
|
||||
"scroll-to-bottom": "Scroll to Bottom",
|
||||
"joined": "Joined",
|
||||
"followers": "Followers",
|
||||
"start-chat-placeholder": "Start a new message",
|
||||
"search": "Search people or communities",
|
||||
"join-chat": "Join chat",
|
||||
"join-channel": "Join channel",
|
||||
"back": "Back",
|
||||
"no-chat": "No conversation found",
|
||||
"start-chat": "Start chatting",
|
||||
"not-joined": "This user hasn't joined the chat yet",
|
||||
"subscribers": "Subscribers",
|
||||
"invite": "Invite",
|
||||
"send-invite": "Send an invite",
|
||||
"leave:": "Leave",
|
||||
"refresh": "Refresh",
|
||||
"message-warning": "You cannot send messages in this group.",
|
||||
"edit-community-roles": "Edit Community Roles",
|
||||
"add": "Add",
|
||||
"no-admin": "No admin or moderator for this community chat.",
|
||||
"blocked-users": "Blocked Users",
|
||||
"action": "Action",
|
||||
"unblock": "Unblock",
|
||||
"ecency-key": "Ecency key",
|
||||
"no-locked-user": "Blocked users not found",
|
||||
"no-hidden-messages": "Hidden messages not found",
|
||||
"enter-private-key": "Enter Chat private key",
|
||||
"enter-private-key-detail": "Enter chat private key to import all chats",
|
||||
"close": "Close",
|
||||
"confirm": "Confirm",
|
||||
"error-updating-community": "Error occurred while updating community",
|
||||
"leave-channel": "Leave channel",
|
||||
"leaving": "Leaving",
|
||||
"edit-roles": "Edit Roles",
|
||||
"manage-chat-key": "Credentials info",
|
||||
"block": "Block",
|
||||
"communities": "Communities",
|
||||
"dms": "Direct messages",
|
||||
"import-chat": "Import Chat",
|
||||
"create-new-account": "Create New Account",
|
||||
"loading": "Loading...",
|
||||
"blocked-user-message": "You have been blocked from this community",
|
||||
"start-community-channel": "Start community channel",
|
||||
"view-community-channel": "View community channel",
|
||||
"submit": "Submit",
|
||||
"chat-priv-key": "Please, save Chat key by clicking on download button or scanning QR code to restore your conversations.",
|
||||
"public-key": "Public key",
|
||||
"private-key": "Private key",
|
||||
"copy-priv-key": "Copy Private key",
|
||||
"extended-view": "Extended View",
|
||||
"you-haven-t-joined": "You haven't joined the Chat yet. Please join to get started!",
|
||||
"invalid-private-key": "Invalid private key",
|
||||
"enter-username": "Enter temporary username",
|
||||
"hide-message": "Hide message",
|
||||
"block-author": "Block author",
|
||||
"unblock-author": "Unblock author",
|
||||
"create-an-account": "Create chat account",
|
||||
"create-description": "Welcome aboard! Your account is almost ready. Dive into conversations and enjoy connecting with others privately.",
|
||||
"create-pin-description": "Please, set PIN for getting access to your chats from any device",
|
||||
"logout": "Logout",
|
||||
"specify-invitation-message": "This invitation message will be sent as comment to latest user post",
|
||||
"successfully-invited": "Successfully invited!",
|
||||
"invite-couldnt-be-sent": "Invite couldn't be sent due to user doesn't have any post yet",
|
||||
"no-posts-for-invite": "Unfortunately, User doesn't seem active and haven't made any posts.",
|
||||
"warn-key-saving": "Backup your Chat key to keep account secure and also have uninterrupted service!",
|
||||
"view-and-save": "Show keys and save",
|
||||
"blocked-users-management": "Blocked users management",
|
||||
"unlock-the-section": "Please, enter your PIN to see your credentials information",
|
||||
"no-contacts-or-channels": "No conversations yet",
|
||||
"upload-image": "Upload image",
|
||||
"hidden-messages": "Hidden messages",
|
||||
"hidden-messages-management": "Hidden messages management",
|
||||
"saved-messages": "Saved messages",
|
||||
"fetch-error": "While you were away, network change detected. Reload page now to fetch new data",
|
||||
"pin": "Pin",
|
||||
"unpin": "Unpin",
|
||||
"select-contact-or-channel": "Select contact or channel",
|
||||
"message-forwarding": "Message forwarding",
|
||||
"forward": "Forward message",
|
||||
"forwarded-from": "Forwarded message",
|
||||
"welcome": {
|
||||
"title": "Welcome to Chats",
|
||||
"description": "Create or import an account start using Chats",
|
||||
"already-joined-title": "Looks like, you've already joined the Chats",
|
||||
"already-joined-hint": "Please, verify your account and get access by entering PIN",
|
||||
"pin-failed": "Invalid PIN. Failed to verify.",
|
||||
"oops": "Oops!",
|
||||
"user-not-joined-yet": "You can't send a message. This user or channel hasn't joined to chats yet.",
|
||||
"hello": "Hello",
|
||||
"start-description": "Search a person or community and start messaging",
|
||||
"join-description": "You aren't part of channel",
|
||||
"rejoin-description": "You have left this community chat. Rejoin the chat now!"
|
||||
},
|
||||
"import": {
|
||||
"title": "Importing account",
|
||||
"description": "Please, enter public and private key pair to import your existing account",
|
||||
"button": "Import",
|
||||
"iv": "Initial vector value"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ const ROUTES = {
|
||||
WELCOME: `Welcome${SCREEN_SUFFIX}`,
|
||||
BACKUP_KEYS: `BackupKeys${SCREEN_SUFFIX}`,
|
||||
TRADE: `Trade${SCREEN_SUFFIX}`,
|
||||
CHAT: `CHAT${SCREEN_SUFFIX}`,
|
||||
},
|
||||
MODALS: {
|
||||
ASSETS_SELECT: `AssetsSelect${MODAL_SUFFIX}`,
|
||||
@ -52,7 +53,7 @@ const ROUTES = {
|
||||
WALLET: `Wallet${TABBAR_SUFFIX}`,
|
||||
POST_BUTTON: `PostButton${TABBAR_SUFFIX}`,
|
||||
WAVES: `Waves${TABBAR_SUFFIX}`,
|
||||
CHAT: `Chat${TABBAR_SUFFIX}`,
|
||||
CHANNELS: `CHANNELS${TABBAR_SUFFIX}`,
|
||||
},
|
||||
STACK: {
|
||||
MAIN: `Main${STACK_SUFFIX}`,
|
||||
|
@ -64,7 +64,7 @@ export const BottomTabNavigator = () => {
|
||||
/>
|
||||
|
||||
<Tab.Screen
|
||||
name={ROUTES.TABBAR.CHAT}
|
||||
name={ROUTES.TABBAR.CHANNELS}
|
||||
component={ChannelsScreen}
|
||||
initialParams={{
|
||||
iconName: 'chat-bubble', // read in bottomTabBarView
|
||||
|
@ -38,6 +38,7 @@ import {
|
||||
BackupKeysScreen,
|
||||
} from '../screens';
|
||||
import { DrawerNavigator } from './drawerNavigator';
|
||||
import ChatScreen from '../screens/chat/screen/chatScreen';
|
||||
|
||||
const RootStack = createNativeStackNavigator();
|
||||
const MainStack = createNativeStackNavigator();
|
||||
@ -64,6 +65,7 @@ const MainStackNavigator = () => {
|
||||
<MainStack.Screen name={ROUTES.SCREENS.ASSET_DETAILS} component={AssetDetails} />
|
||||
<MainStack.Screen name={ROUTES.SCREENS.EDIT_HISTORY} component={EditHistoryScreen} />
|
||||
<MainStack.Screen name={ROUTES.SCREENS.POST} component={Post} />
|
||||
<MainStack.Screen name={ROUTES.SCREENS.CHAT} component={ChatScreen} />
|
||||
<MainStack.Group screenOptions={{ animation: 'slide_from_bottom' }}>
|
||||
<MainStack.Screen name={ROUTES.SCREENS.REBLOGS} component={Reblogs} />
|
||||
<MainStack.Screen name={ROUTES.SCREENS.VOTERS} component={Voters} />
|
||||
|
@ -1,44 +1,44 @@
|
||||
import React from 'react';
|
||||
|
||||
import { get } from 'lodash';
|
||||
import { ChatContextProvider } from '@ecency/ns-query';
|
||||
import ApplicationContainer from './container/applicationContainer';
|
||||
import ApplicationScreen from './children/applicationScreen';
|
||||
import ErrorBoundary from './children/errorBoundary';
|
||||
import { useInitApplication } from './hook/useInitApplication';
|
||||
import {ChatContextProvider} from "@ecency/ns-query";
|
||||
import {useAppSelector} from "../../hooks.ts";
|
||||
import {get} from "lodash";
|
||||
|
||||
import defaults from "../../constants/defaults.json";
|
||||
import { useAppSelector } from '../../hooks.ts';
|
||||
import defaults from '../../constants/defaults.json';
|
||||
|
||||
const Application = () => {
|
||||
// New hook to handle all custom app initializations
|
||||
// it will help clean index.tsx stay clean and completely discard ApplicationContainer moving forward
|
||||
useInitApplication();
|
||||
|
||||
const activeUserData = useAppSelector((state) => state.account.currentAccount)
|
||||
const accessToken = get(activeUserData, 'local.accessToken');
|
||||
const activeUserData = useAppSelector((state) => state.account.currentAccount);
|
||||
const accessToken =
|
||||
'eyJzaWduZWRfbWVzc2FnZSI6eyJ0eXBlIjoicG9zdGluZyIsImFwcCI6ImVjZW5jeS5hcHAifSwiYXV0aG9ycyI6WyJreWl2bHlhbmluIl0sInRpbWVzdGFtcCI6MTcxMjY3NzQzMSwic2lnbmF0dXJlcyI6WyIyMDNlMDE1OGQwZjUyMzFmNTk2ZWIzOThlYzQ1NjFjNGY4MzFjMTU1N2MzMjY3OWI2ZDVmMmU4ZDUzNTIzZWM4ZDYxNjY4Y2MwYjE3YTRmMmQ0NDQxZjY0NGVlYzYxZTkzZWZiNjg5OTQ4ZWUwNDA3ZTc0NWY5MTlmYTQxODNjYWNhIl19';
|
||||
|
||||
return (
|
||||
<>
|
||||
<ChatContextProvider
|
||||
privateApiHost={defaults.base}
|
||||
activeUsername={activeUserData?.username}
|
||||
activeUserData={activeUserData}
|
||||
ecencyAccessToken={accessToken}
|
||||
/>
|
||||
|
||||
<ApplicationContainer>
|
||||
{({ isRenderRequire, foregroundNotificationData }) => {
|
||||
return (
|
||||
<ErrorBoundary>
|
||||
{isRenderRequire && (
|
||||
<ApplicationScreen foregroundNotificationData={foregroundNotificationData} />
|
||||
)}
|
||||
</ErrorBoundary>
|
||||
);
|
||||
}}
|
||||
</ApplicationContainer>
|
||||
</>
|
||||
<>
|
||||
<ChatContextProvider
|
||||
privateApiHost={defaults.base}
|
||||
activeUsername={activeUserData?.username}
|
||||
activeUserData={activeUserData}
|
||||
ecencyAccessToken={accessToken}
|
||||
>
|
||||
<ApplicationContainer>
|
||||
{({ isRenderRequire, foregroundNotificationData }) => {
|
||||
return (
|
||||
<ErrorBoundary>
|
||||
{isRenderRequire && (
|
||||
<ApplicationScreen foregroundNotificationData={foregroundNotificationData} />
|
||||
)}
|
||||
</ErrorBoundary>
|
||||
);
|
||||
}}
|
||||
</ApplicationContainer>
|
||||
</ChatContextProvider>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
@ -1,14 +1,63 @@
|
||||
import React from 'react';
|
||||
import React, { useCallback, useMemo, useState } from 'react';
|
||||
import { SafeAreaView, View, Text } from 'react-native';
|
||||
import ScrollableTabView from 'react-native-scrollable-tab-view';
|
||||
import { injectIntl } from 'react-intl';
|
||||
import { LoggedInContainer } from '../../../containers';
|
||||
import { DropdownButton, Header, Notification, TabBar } from '../../../components';
|
||||
import get from 'lodash/get';
|
||||
import {
|
||||
useChannelsQuery,
|
||||
useCommunityChannelQuery,
|
||||
useDirectContactsQuery,
|
||||
useKeysQuery,
|
||||
} from '@ecency/ns-query';
|
||||
import { DropdownButton, Header, TextInput } from '../../../components';
|
||||
|
||||
import styles from './channelsScreen.style';
|
||||
import globalStyles from '../../../globalStyles';
|
||||
import { LoggedInContainer } from '../../../containers';
|
||||
import { setFeedPosts, setInitPosts } from '../../../redux/actions/postsAction';
|
||||
import { logout } from '../../../redux/actions/uiAction';
|
||||
import { useAppDispatch } from '../../../hooks';
|
||||
import { ChatChannelsList } from '../components/chatChannelsList';
|
||||
import ChatWelcome from '../components/ChatWelcome';
|
||||
|
||||
const ChannelsScreen = ({ intl }) => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
// const { data: directContacts } = useDirectContactsQuery();
|
||||
// const { data: channels } = useChannelsQuery();
|
||||
const { publicKey, privateKey } = useKeysQuery();
|
||||
|
||||
// console.log({ directContacts });
|
||||
// console.log({ channels });
|
||||
|
||||
const [search, setSearch] = useState('');
|
||||
|
||||
const logoutHandler = useCallback(() => {
|
||||
dispatch(setFeedPosts([]));
|
||||
dispatch(setInitPosts([]));
|
||||
dispatch(logout());
|
||||
}, []);
|
||||
|
||||
const dropdownOption = [
|
||||
{
|
||||
title: intl.formatMessage({ id: 'chat.manage-chat-key' }),
|
||||
onPress: (title) => console.log({ title }),
|
||||
},
|
||||
{
|
||||
title: intl.formatMessage({ id: 'chat.logout' }),
|
||||
onPress: logoutHandler,
|
||||
},
|
||||
];
|
||||
|
||||
const onPressDropdownHandler = useCallback((index) => {
|
||||
const find = dropdownOption.find((value, i) => i === index);
|
||||
|
||||
if (find) {
|
||||
find.onPress(find.title);
|
||||
}
|
||||
}, []);
|
||||
|
||||
const isReady = useMemo(() => !!(publicKey && privateKey), [publicKey, privateKey]);
|
||||
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
@ -16,10 +65,38 @@ const ChannelsScreen = ({ intl }) => {
|
||||
<LoggedInContainer>
|
||||
{() => (
|
||||
<View style={styles.view}>
|
||||
<View style={styles.channelsTopView}>
|
||||
<Text>Chat</Text>
|
||||
<DropdownButton isHasChildIcon iconName="more-vert" options={['']} />
|
||||
</View>
|
||||
{isReady ? (
|
||||
<>
|
||||
<View style={styles.channelsTopView}>
|
||||
<Text style={styles.title}>
|
||||
{intl.formatMessage({
|
||||
id: 'chat.title',
|
||||
})}
|
||||
</Text>
|
||||
<DropdownButton
|
||||
isHasChildIcon
|
||||
iconName="more-vert"
|
||||
options={dropdownOption.map(({ title }) => title)}
|
||||
onSelect={onPressDropdownHandler}
|
||||
/>
|
||||
</View>
|
||||
<View style={styles.inputView}>
|
||||
<TextInput
|
||||
style={styles.input}
|
||||
onChangeText={setSearch}
|
||||
value={search}
|
||||
placeholder={intl.formatMessage({ id: 'chat.search' })}
|
||||
placeholderTextColor="#c1c5c7"
|
||||
autoCapitalize="none"
|
||||
returnKeyType="done"
|
||||
/>
|
||||
</View>
|
||||
|
||||
{/* <ChatChannelsList /> */}
|
||||
</>
|
||||
) : (
|
||||
<ChatWelcome />
|
||||
)}
|
||||
</View>
|
||||
)}
|
||||
</LoggedInContainer>
|
||||
|
@ -1,16 +0,0 @@
|
||||
import EStyleSheet from 'react-native-extended-stylesheet';
|
||||
|
||||
export default EStyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: '$primaryLightBackground',
|
||||
},
|
||||
view: {
|
||||
|
||||
},
|
||||
channelsTopView: {
|
||||
flexDirection: 'row',
|
||||
paddingVertical: 12,
|
||||
paddingHorizontal: 16
|
||||
}
|
||||
});
|
17
yarn.lock
17
yarn.lock
@ -1398,7 +1398,7 @@
|
||||
dependencies:
|
||||
"@dotlottie/common" "0.7.10"
|
||||
|
||||
"@ecency/ns-query@^1.2.2-rc0":
|
||||
"@ecency/ns-query@1.2.2-rc0":
|
||||
version "1.2.2-rc0"
|
||||
resolved "https://registry.yarnpkg.com/@ecency/ns-query/-/ns-query-1.2.2-rc0.tgz#c860c09413725720e1b1e4c92bdc27b3c3f2cc62"
|
||||
integrity sha512-aKJZvy65iwM+wGMBU47ELbv5o1mj9PoZE7Nt5zZUs75M0btuBUHZYzVNB1P9h1dKvbU9FQZKd/dqXgzNcmk+Cw==
|
||||
@ -11502,7 +11502,7 @@ react-native-animatable@1.3.3:
|
||||
dependencies:
|
||||
prop-types "^15.7.2"
|
||||
|
||||
react-native-animatable@^1.3.3:
|
||||
react-native-animatable@^1.3.0, react-native-animatable@^1.3.3:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/react-native-animatable/-/react-native-animatable-1.4.0.tgz#05a259e1566081ce7d3f6fba1e92edc65f5c6160"
|
||||
integrity sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==
|
||||
@ -11873,6 +11873,14 @@ react-native-slider@^0.11.0:
|
||||
dependencies:
|
||||
prop-types "^15.5.6"
|
||||
|
||||
react-native-smooth-pincode-input@^1.0.9:
|
||||
version "1.0.9"
|
||||
resolved "https://registry.yarnpkg.com/react-native-smooth-pincode-input/-/react-native-smooth-pincode-input-1.0.9.tgz#4c068ae30aa0cd03bb5bd19c8191c0b4e9b0f8d1"
|
||||
integrity sha512-4V4tyUGJaze55FHuJW/gYVOD3fc4Pd7cTIrv7liTRIXR49y09C2O3XqJUdgNR+UwTgLrTt/8L2lvEuEVUk3kig==
|
||||
dependencies:
|
||||
prop-types "^15.5.10"
|
||||
react-native-animatable "^1.3.0"
|
||||
|
||||
react-native-snap-carousel@^3.8.0:
|
||||
version "3.9.1"
|
||||
resolved "https://registry.yarnpkg.com/react-native-snap-carousel/-/react-native-snap-carousel-3.9.1.tgz#6fd9bd8839546c2c6043a41d2035afbc6fe0443e"
|
||||
@ -13738,6 +13746,11 @@ test-exclude@^6.0.0:
|
||||
glob "^7.1.4"
|
||||
minimatch "^3.0.4"
|
||||
|
||||
text-encoding@^0.7.0:
|
||||
version "0.7.0"
|
||||
resolved "https://registry.yarnpkg.com/text-encoding/-/text-encoding-0.7.0.tgz#f895e836e45990624086601798ea98e8f36ee643"
|
||||
integrity sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==
|
||||
|
||||
text-table@^0.2.0:
|
||||
version "0.2.0"
|
||||
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
||||
|
Loading…
Reference in New Issue
Block a user