@bcc-code/vue-bcc-chat-ui 6.5.0 → 7.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.vue.d.ts +1 -1
- package/dist/auth.d.ts +2 -0
- package/dist/chat/accessToken.d.ts +9 -1
- package/dist/chat/avatar.d.ts +3 -0
- package/dist/chat/client.d.ts +7 -0
- package/dist/chat/conversationState.d.ts +11 -0
- package/dist/chat/data.d.ts +8 -17
- package/dist/chat/environment.d.ts +7 -2
- package/dist/chat/i18n/en.d.ts +118 -0
- package/dist/chat/i18n/nb.d.ts +118 -0
- package/dist/chat/i18n/types.d.ts +2 -0
- package/dist/chat/index.d.ts +87 -446
- package/dist/chat/localization.d.ts +15 -0
- package/dist/chat/messageText.d.ts +13 -0
- package/dist/chat/mockClient.d.ts +13 -0
- package/dist/chat/offlineStore.d.ts +53 -0
- package/dist/chat/reactions.d.ts +8 -0
- package/dist/chat/richText.d.ts +5 -0
- package/dist/chat/theme.d.ts +10 -400
- package/dist/chat/types.d.ts +206 -28
- package/dist/components/chat/BccChat.vue.d.ts +509 -0
- package/dist/components/chat/ChatStatusOverlay.vue.d.ts +33 -0
- package/dist/components/chat/publicContract.d.ts +43 -0
- package/dist/components/conversations/ConversationList.vue.d.ts +15 -0
- package/dist/components/conversations/UserProfileCard.vue.d.ts +8 -0
- package/dist/components/messages/ActionMessageRow.vue.d.ts +5 -0
- package/dist/components/messages/ComposerActionsPopover.vue.d.ts +19 -0
- package/dist/components/messages/ComposerContextBanner.vue.d.ts +13 -0
- package/dist/components/messages/ComposerFormatMenu.vue.d.ts +13 -0
- package/dist/components/messages/ComposerPollDialog.vue.d.ts +16 -0
- package/dist/components/messages/ComposerScheduleDialog.vue.d.ts +20 -0
- package/dist/components/messages/ConversationComposer.vue.d.ts +106 -0
- package/dist/components/messages/LinkPreviewCard.vue.d.ts +6 -0
- package/dist/components/messages/LinkifiedText.vue.d.ts +8 -0
- package/dist/components/messages/MessageAttachmentList.vue.d.ts +10 -0
- package/dist/components/messages/MessageComposer.vue.d.ts +69 -0
- package/dist/components/messages/MessageDeliveryStatus.vue.d.ts +6 -0
- package/dist/components/messages/MessageItem.vue.d.ts +27 -0
- package/dist/components/messages/MessageItemHeader.vue.d.ts +6 -0
- package/dist/components/messages/MessageItemMenu.vue.d.ts +26 -0
- package/dist/components/messages/MessageItemMenuReactions.vue.d.ts +11 -0
- package/dist/components/messages/MessageItemReactions.vue.d.ts +14 -0
- package/dist/components/messages/MessageList.vue.d.ts +115 -0
- package/dist/components/messages/MessageListHeader.vue.d.ts +7 -0
- package/dist/components/messages/MessagePollContent.vue.d.ts +12 -0
- package/dist/components/messages/MessageReactionList.vue.d.ts +12 -0
- package/dist/components/messages/MessageReplyQuote.vue.d.ts +10 -0
- package/dist/components/messages/MessageTextContent.vue.d.ts +6 -0
- package/dist/components/overlays/FullscreenDialog.vue.d.ts +34 -0
- package/dist/components/overlays/MediaViewerDialog.vue.d.ts +13 -0
- package/dist/components/overlays/MessageInfoDialog.vue.d.ts +14 -0
- package/dist/components/overlays/ReceiptSection.vue.d.ts +9 -0
- package/dist/components/overlays/ScheduledMessagesDialog.vue.d.ts +25 -0
- package/dist/composables/chat/index.d.ts +13 -0
- package/dist/composables/chat/useComposerContext.d.ts +43 -0
- package/dist/composables/chat/useConversationContext.d.ts +30 -0
- package/dist/composables/chat/useDialogsContext.d.ts +27 -0
- package/dist/composables/chat/useMessagesContext.d.ts +36 -0
- package/dist/composables/useChatActions.d.ts +21 -0
- package/dist/composables/useChatEventBus.d.ts +91 -0
- package/dist/composables/useComposerDrafts.d.ts +44 -0
- package/dist/composables/useConversationComposer.d.ts +15 -0
- package/dist/composables/useGroupMemberTracking.d.ts +28 -0
- package/dist/composables/useImageZoom.d.ts +26 -0
- package/dist/composables/useMessageActionMenu.d.ts +202 -0
- package/dist/composables/useMessageInfoDialog.d.ts +165 -0
- package/dist/composables/useMessageListScroll.d.ts +30 -0
- package/dist/composables/useMessageNavigation.d.ts +18 -0
- package/dist/composables/useRichTextComposer.d.ts +31 -0
- package/dist/demo/ApiExamplesPanel.vue.d.ts +6 -0
- package/dist/demo/ChatShell.vue.d.ts +10 -0
- package/dist/demo/ThemeModeToggle.vue.d.ts +12 -0
- package/dist/demo/useDemoThemeMode.d.ts +6 -0
- package/dist/design.d.ts +10 -0
- package/dist/index.d.ts +10 -3
- package/dist/main.d.ts +0 -1
- package/dist/style.css +1 -0
- package/dist/vue-bcc-chat-ui.js +8858 -84780
- package/dist/vue-bcc-chat-ui.js.map +1 -1
- package/package.json +42 -51
- package/README.md +0 -89
- package/dist/chat/bccuiExtension.d.ts +0 -7
- package/dist/chat/captionedAttachment.d.ts +0 -7
- package/dist/chat/captionedAttachmentExtension.d.ts +0 -7
- package/dist/chat/cometChatPatches.d.ts +0 -3
- package/dist/chat/connection.d.ts +0 -14
- package/dist/chat/logger.d.ts +0 -12
- package/dist/chat/login.d.ts +0 -14
- package/dist/chat/message.d.ts +0 -15
- package/dist/chat/replyExtension.d.ts +0 -26
- package/dist/chat/replyStyle.d.ts +0 -30
- package/dist/chat/rescheduleExtension.d.ts +0 -22
- package/dist/chat/scheduledMessage.d.ts +0 -4
- package/dist/chat/styleFix.d.ts +0 -14
- package/dist/chat/translations.d.ts +0 -3
- package/dist/chat/uiKit.d.ts +0 -10
- package/dist/component-overrides/BccBubbleWrapper.vue.d.ts +0 -156
- package/dist/component-overrides/CometChatMessageListOverride.vue.d.ts +0 -2
- package/dist/components/BccAttachmentBox.vue.d.ts +0 -29
- package/dist/components/BccAttachmentPreview.vue.d.ts +0 -23
- package/dist/components/BccChatMessageBubble.vue.d.ts +0 -99
- package/dist/components/BccChatMessageList.vue.d.ts +0 -82
- package/dist/components/BccChatMessages.vue.d.ts +0 -33
- package/dist/components/BccChatSendButton.vue.d.ts +0 -4
- package/dist/components/BccCometChatFullScreenViewer.vue.d.ts +0 -24
- package/dist/components/BccFileBubble.vue.d.ts +0 -70
- package/dist/components/BccImageBubble.vue.d.ts +0 -27
- package/dist/components/BccReplyBox.vue.d.ts +0 -36
- package/dist/components/BccReplyPreview.vue.d.ts +0 -30
- package/dist/components/BccScheduledMessageModal.vue.d.ts +0 -31
- package/dist/components/BccScheduledMessages.vue.d.ts +0 -25
- package/dist/components/BccScheduledSendButton.vue.d.ts +0 -14
- package/dist/offline/cometChatAPIInterceptor.d.ts +0 -2
- package/dist/offline/cometChatWSInterceptor.d.ts +0 -2
- package/dist/offline/connectivity.d.ts +0 -5
- package/dist/offline/failedSendingRetry.d.ts +0 -4
- package/dist/offline/index.d.ts +0 -10
- package/dist/offline/offlineStoreLocalStorage.d.ts +0 -32
- package/dist/offline/types.d.ts +0 -69
- package/dist/vite.svg +0 -1
- package/dist/vue-bcc-chat-ui.css +0 -1
- package/src/components/BccAttachmentBox.vue +0 -133
- package/src/components/BccAttachmentPreview.vue +0 -57
- package/src/components/BccChatMessageBubble.vue +0 -219
- package/src/components/BccChatMessageList.vue +0 -488
- package/src/components/BccChatMessages.vue +0 -212
- package/src/components/BccChatSendButton.vue +0 -91
- package/src/components/BccCometChatFullScreenViewer.vue +0 -118
- package/src/components/BccFileBubble.vue +0 -137
- package/src/components/BccImageBubble.vue +0 -75
- package/src/components/BccReplyBox.vue +0 -141
- package/src/components/BccReplyPreview.vue +0 -113
- package/src/components/BccScheduledMessageIcon.vue +0 -65
- package/src/components/BccScheduledMessageModal.vue +0 -70
- package/src/components/BccScheduledMessages.vue +0 -125
- package/src/components/BccScheduledSendButton.vue +0 -118
- /package/dist/{components/BccScheduledMessageIcon.vue.d.ts → FixtureApp.vue.d.ts} +0 -0
package/dist/App.vue.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
package/dist/auth.d.ts
ADDED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
export interface StoredCometChatToken {
|
|
2
|
+
sub: string;
|
|
3
|
+
token: string;
|
|
4
|
+
}
|
|
1
5
|
export declare function getAccessToken(): string | null;
|
|
2
|
-
export declare function storeAccessToken(token: string | null
|
|
6
|
+
export declare function storeAccessToken(token: string | null): void;
|
|
3
7
|
export declare function getAccessTokenSubject(accessToken?: string | null): any;
|
|
8
|
+
export declare function getStoredCometChatToken(): StoredCometChatToken | null;
|
|
9
|
+
export declare function retrieveCcToken(): StoredCometChatToken | null;
|
|
10
|
+
export declare function storeCometChatToken(token: StoredCometChatToken): void;
|
|
11
|
+
export declare function clearCometChatToken(): void;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChatConversationItem, MessageSendOptions } from './types';
|
|
2
|
+
export declare function isConversationChannel(conversation?: Pick<ChatConversationItem, "source"> | null): boolean;
|
|
3
|
+
export declare function hasJoinedConversation(conversation?: Pick<ChatConversationItem, "source"> | null): any;
|
|
4
|
+
export declare function getConversationScope(conversation?: Pick<ChatConversationItem, "source"> | null): string | undefined;
|
|
5
|
+
export declare function isConversationReadOnly(conversation?: Pick<ChatConversationItem, "source"> | null): boolean;
|
|
6
|
+
export declare function canUseConversationMessageActions(conversation?: Pick<ChatConversationItem, "source"> | null): any;
|
|
7
|
+
export declare function canReactInConversation(conversation?: Pick<ChatConversationItem, "source"> | null): any;
|
|
8
|
+
export declare function canReplyInConversation(conversation?: Pick<ChatConversationItem, "source"> | null): any;
|
|
9
|
+
export declare function canOpenThreadInConversation(conversation?: Pick<ChatConversationItem, "source"> | null): boolean;
|
|
10
|
+
export declare function canShowConversationAvatars(conversation?: Pick<ChatConversationItem, "source" | "type"> | null): any;
|
|
11
|
+
export declare function getConversationSendOptions(conversation: Pick<ChatConversationItem, "source"> | null | undefined, senderDisplayName?: string): MessageSendOptions | undefined;
|
package/dist/chat/data.d.ts
CHANGED
|
@@ -1,24 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare function
|
|
6
|
-
export declare function clearGroupChatCount(groupUid: string): Promise<void>;
|
|
7
|
-
export declare function getGroupOnlineCount(groupUid: string): Promise<number>;
|
|
1
|
+
import { CachedParticipantSettings, ChatConversationItem, ParticipantInfo, PersonSettings, SearchedItems } from './types';
|
|
2
|
+
export declare function getSenderDisplayName(message: any, group?: {
|
|
3
|
+
value?: any;
|
|
4
|
+
}): any;
|
|
5
|
+
export declare function searchChat(searchQuery: string, limit?: number, currentUserId?: string | null): SearchedItems | undefined;
|
|
8
6
|
export declare function getGroupMembersInfo(groupUid: string): Promise<ParticipantInfo[]>;
|
|
9
|
-
export declare function getUserChats(): Promise<UserChatInfo[]>;
|
|
10
|
-
export declare function clearUserChats(): void;
|
|
11
|
-
export declare function restoreUserChatsFromOfflineStore(): UserChatInfo[];
|
|
12
|
-
export declare function installUserChatsSync(initialized: Ref<boolean>): WatchHandle;
|
|
13
|
-
export declare function searchChat(searchQuery: string, limit?: number): SearchedItems | undefined;
|
|
14
|
-
export declare function scrollToMessage(messageId: string): void;
|
|
15
|
-
export declare function getSenderDisplayName(message: BaseMessage | undefined, group?: Ref<Group | undefined>): any;
|
|
16
|
-
export declare function getMessageTextPreview(message?: BaseMessage, showEmoji?: boolean, showAttachmentName?: boolean): string;
|
|
17
|
-
export declare function proxyImage(imageUrl: string): string;
|
|
18
7
|
export declare function getMutedUntil(chatUid: string): Promise<string | null>;
|
|
19
8
|
export declare function muteChat(chatUid: string, mutedUntil: string | null): Promise<string | null>;
|
|
20
9
|
export declare function getMyChatSettings(): Promise<PersonSettings>;
|
|
21
10
|
export declare function updateMyChatSettings(settings: Partial<PersonSettings>): Promise<PersonSettings>;
|
|
22
11
|
export declare function setMuteAll(mute: boolean): Promise<boolean>;
|
|
23
12
|
export declare function toggleMuteAll(): Promise<boolean>;
|
|
24
|
-
export declare function
|
|
13
|
+
export declare function getCachedParticipantSettings(chatUid: string): CachedParticipantSettings | null;
|
|
14
|
+
export declare function cacheParticipantSettings(settings: CachedParticipantSettings): void;
|
|
15
|
+
export declare function applyMuteSettingToConversations(conversations: ChatConversationItem[], chatUid: string, mutedUntil: string | null): ChatConversationItem[];
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
export type Environment = "prod" | "sandbox";
|
|
2
|
+
export interface ChatEnvironmentConfig {
|
|
3
|
+
region: string;
|
|
4
|
+
appId: string;
|
|
5
|
+
chatApiBaseUrl: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function setCurrentEnvironment(environment: Environment): void;
|
|
2
8
|
export declare function getCurrentEnvironment(): ChatEnvironmentConfig;
|
|
3
|
-
export declare function setCurrentEnvironment(env: Environment): void;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { TranslationParams } from './types';
|
|
2
|
+
export declare const englishTranslations: {
|
|
3
|
+
readonly addOption: "Add option";
|
|
4
|
+
readonly addToMessage: "Add to message";
|
|
5
|
+
readonly allowMultipleAnswers: "Allow multiple answers";
|
|
6
|
+
readonly attachAudio: "Attach audio";
|
|
7
|
+
readonly attachFile: "Attach file";
|
|
8
|
+
readonly attachImage: "Attach image";
|
|
9
|
+
readonly attachVideo: "Attach video";
|
|
10
|
+
readonly attachment: "Attachment";
|
|
11
|
+
readonly attachmentSummary: ({ name }: TranslationParams) => string;
|
|
12
|
+
readonly audio: "Audio";
|
|
13
|
+
readonly audioMessage: "Audio message";
|
|
14
|
+
readonly bold: "Bold";
|
|
15
|
+
readonly cancel: "Cancel";
|
|
16
|
+
readonly chatNotFound: "Chat not found...";
|
|
17
|
+
readonly close: "Close";
|
|
18
|
+
readonly closeMediaViewer: "Close media viewer";
|
|
19
|
+
readonly closeThread: "Close thread";
|
|
20
|
+
readonly connecting: "Connecting...";
|
|
21
|
+
readonly copyText: "Copy text";
|
|
22
|
+
readonly copied: "Copied";
|
|
23
|
+
readonly createPoll: "Create poll";
|
|
24
|
+
readonly createPollTitle: "Create poll";
|
|
25
|
+
readonly currentDraftWillBeScheduled: "Current draft will be scheduled.";
|
|
26
|
+
readonly delete: "Delete";
|
|
27
|
+
readonly delivered: "Delivered";
|
|
28
|
+
readonly deliveredNotYetRead: "Delivered, not yet read";
|
|
29
|
+
readonly deliveredToAll: "Delivered to all";
|
|
30
|
+
readonly deliveryAndReadDetails: "Delivery and read details";
|
|
31
|
+
readonly edit: "Edit";
|
|
32
|
+
readonly edited: "edited";
|
|
33
|
+
readonly editing: "Editing";
|
|
34
|
+
readonly editingInContext: ({ context }: TranslationParams) => string;
|
|
35
|
+
readonly failed: "Failed";
|
|
36
|
+
readonly file: "File";
|
|
37
|
+
readonly groupChat: "Group chat";
|
|
38
|
+
readonly hiddenHelperConversation: "Hidden helper conversation";
|
|
39
|
+
readonly image: "Image";
|
|
40
|
+
readonly info: "Info";
|
|
41
|
+
readonly italic: "Italic";
|
|
42
|
+
readonly loadMessageReceiptsError: "Unable to load message receipts.";
|
|
43
|
+
readonly loadScheduledMessagesError: "Unable to load scheduled messages.";
|
|
44
|
+
readonly loadOlderMessages: "Load older messages";
|
|
45
|
+
readonly loadingOlderMessages: "Loading older messages";
|
|
46
|
+
readonly loadingChat: "Loading chat...";
|
|
47
|
+
readonly loadingPreview: "Loading preview...";
|
|
48
|
+
readonly members: ({ count }: TranslationParams) => string;
|
|
49
|
+
readonly message: "Message";
|
|
50
|
+
readonly messageInfo: "Message info";
|
|
51
|
+
readonly messages: "Messages";
|
|
52
|
+
readonly multipleAnswersAllowed: "multiple answers allowed";
|
|
53
|
+
readonly noMatchingChatsFound: "No matching chats found.";
|
|
54
|
+
readonly noMessagesHaveBeenSentYet: "No messages have been sent yet";
|
|
55
|
+
readonly noMessagesYetInThisGroup: "No messages yet in this group.";
|
|
56
|
+
readonly noRecipientsDeliveredStageYet: "No recipients are only at the delivered stage yet.";
|
|
57
|
+
readonly noScheduledMessagesForConversation: "No scheduled messages for this conversation.";
|
|
58
|
+
readonly nobodyHasReadThisMessageYet: "Nobody has read this message yet.";
|
|
59
|
+
readonly notYet: "Not yet";
|
|
60
|
+
readonly offline: "Offline";
|
|
61
|
+
readonly offlineQueued: ({ count }: TranslationParams) => string;
|
|
62
|
+
readonly openInNewTab: "Open in new tab";
|
|
63
|
+
readonly openVideoViewer: "Open video viewer";
|
|
64
|
+
readonly option: ({ index }: TranslationParams) => string;
|
|
65
|
+
readonly options: "Options";
|
|
66
|
+
readonly photo: "Photo";
|
|
67
|
+
readonly poll: "Poll";
|
|
68
|
+
readonly pollPrefix: ({ question }: TranslationParams) => string;
|
|
69
|
+
readonly pollQuestionPlaceholder: "What should we prioritize next?";
|
|
70
|
+
readonly question: "Question";
|
|
71
|
+
readonly queued: "Queued";
|
|
72
|
+
readonly queuedForConversation: ({ title }: TranslationParams) => string;
|
|
73
|
+
readonly queuedOutgoingMessagesForThisChat: "Queued outgoing messages for this chat";
|
|
74
|
+
readonly read: "Read";
|
|
75
|
+
readonly readBy: "Read by";
|
|
76
|
+
readonly readByAll: "Read by all";
|
|
77
|
+
readonly readOnlyChannel: "This channel is read-only.";
|
|
78
|
+
readonly realtimeOn: "Realtime on";
|
|
79
|
+
readonly recentConversations: "Recent conversations";
|
|
80
|
+
readonly refreshingMessages: "Refreshing messages";
|
|
81
|
+
readonly repliesDisabledInChannels: "Replies are disabled in channels.";
|
|
82
|
+
readonly reply: "Reply";
|
|
83
|
+
readonly replying: "Replying";
|
|
84
|
+
readonly replyingInContext: ({ context }: TranslationParams) => string;
|
|
85
|
+
readonly reschedule: "Reschedule";
|
|
86
|
+
readonly save: "Save";
|
|
87
|
+
readonly saveMessage: "Save message";
|
|
88
|
+
readonly schedule: "Schedule";
|
|
89
|
+
readonly scheduled: "Scheduled";
|
|
90
|
+
readonly scheduledDateLabel: ({ date }: TranslationParams) => string;
|
|
91
|
+
readonly scheduledMessages: "Scheduled messages";
|
|
92
|
+
readonly scheduleMessage: "Schedule message";
|
|
93
|
+
readonly searchByGroupName: "Search by group name";
|
|
94
|
+
readonly selectConversationToStart: "Select a conversation to start reading and sending messages.";
|
|
95
|
+
readonly sendAt: "Send at";
|
|
96
|
+
readonly sendAttachment: "Send attachment";
|
|
97
|
+
readonly sendMessage: "Send message";
|
|
98
|
+
readonly sending: "Sending";
|
|
99
|
+
readonly sendPoll: "Send poll";
|
|
100
|
+
readonly sent: "Sent";
|
|
101
|
+
readonly sentAnAttachment: "Sent an attachment";
|
|
102
|
+
readonly signedInToSandbox: "Signed in to BCC Sandbox";
|
|
103
|
+
readonly someRecipients: "Some recipients";
|
|
104
|
+
readonly system: "System";
|
|
105
|
+
readonly thread: "Thread";
|
|
106
|
+
readonly threadReplies: ({ count }: TranslationParams) => string;
|
|
107
|
+
readonly threadWithCount: ({ count }: TranslationParams) => string;
|
|
108
|
+
readonly translate: "Translate";
|
|
109
|
+
readonly underline: "Underline";
|
|
110
|
+
readonly unsupportedMessageType: "Unsupported message type";
|
|
111
|
+
readonly unscheduled: "Unscheduled";
|
|
112
|
+
readonly video: "Video";
|
|
113
|
+
readonly voteCount: ({ count }: TranslationParams) => string;
|
|
114
|
+
readonly waitingForNetwork: "Waiting for network...";
|
|
115
|
+
readonly writeMessage: "Write a message...";
|
|
116
|
+
readonly you: "You";
|
|
117
|
+
readonly youSentAMessage: "You sent a message";
|
|
118
|
+
};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import { TranslationParams } from './types';
|
|
2
|
+
export declare const norwegianTranslations: {
|
|
3
|
+
readonly addOption: "Legg til alternativ";
|
|
4
|
+
readonly addToMessage: "Legg til i melding";
|
|
5
|
+
readonly allowMultipleAnswers: "Tillat flere svar";
|
|
6
|
+
readonly attachAudio: "Legg ved lyd";
|
|
7
|
+
readonly attachFile: "Legg ved fil";
|
|
8
|
+
readonly attachImage: "Legg ved bilde";
|
|
9
|
+
readonly attachVideo: "Legg ved video";
|
|
10
|
+
readonly attachment: "Vedlegg";
|
|
11
|
+
readonly attachmentSummary: ({ name }: TranslationParams) => string;
|
|
12
|
+
readonly audio: "Lyd";
|
|
13
|
+
readonly audioMessage: "Lydmelding";
|
|
14
|
+
readonly bold: "Fet";
|
|
15
|
+
readonly cancel: "Avbryt";
|
|
16
|
+
readonly chatNotFound: "Fant ikke chatten...";
|
|
17
|
+
readonly close: "Lukk";
|
|
18
|
+
readonly closeMediaViewer: "Lukk medievisning";
|
|
19
|
+
readonly closeThread: "Lukk tråd";
|
|
20
|
+
readonly connecting: "Kobler til...";
|
|
21
|
+
readonly copyText: "Kopier tekst";
|
|
22
|
+
readonly copied: "Kopiert";
|
|
23
|
+
readonly createPoll: "Opprett avstemning";
|
|
24
|
+
readonly createPollTitle: "Opprett avstemning";
|
|
25
|
+
readonly currentDraftWillBeScheduled: "Gjeldende utkast blir planlagt.";
|
|
26
|
+
readonly delete: "Slett";
|
|
27
|
+
readonly delivered: "Levert";
|
|
28
|
+
readonly deliveredNotYetRead: "Levert, ikke lest ennå";
|
|
29
|
+
readonly deliveredToAll: "Levert til alle";
|
|
30
|
+
readonly deliveryAndReadDetails: "Leverings- og lesedetaljer";
|
|
31
|
+
readonly edit: "Rediger";
|
|
32
|
+
readonly edited: "redigert";
|
|
33
|
+
readonly editing: "Redigerer";
|
|
34
|
+
readonly editingInContext: ({ context }: TranslationParams) => string;
|
|
35
|
+
readonly failed: "Mislyktes";
|
|
36
|
+
readonly file: "Fil";
|
|
37
|
+
readonly groupChat: "Gruppechat";
|
|
38
|
+
readonly hiddenHelperConversation: "Skjult hjelpesamtale";
|
|
39
|
+
readonly image: "Bilde";
|
|
40
|
+
readonly info: "Info";
|
|
41
|
+
readonly italic: "Kursiv";
|
|
42
|
+
readonly loadMessageReceiptsError: "Kunne ikke laste meldingskvitteringer.";
|
|
43
|
+
readonly loadScheduledMessagesError: "Kunne ikke laste planlagte meldinger.";
|
|
44
|
+
readonly loadOlderMessages: "Last eldre meldinger";
|
|
45
|
+
readonly loadingOlderMessages: "Laster eldre meldinger";
|
|
46
|
+
readonly loadingChat: "Laster chat...";
|
|
47
|
+
readonly loadingPreview: "Laster forhåndsvisning...";
|
|
48
|
+
readonly members: ({ count }: TranslationParams) => string;
|
|
49
|
+
readonly message: "Melding";
|
|
50
|
+
readonly messageInfo: "Meldingsinfo";
|
|
51
|
+
readonly messages: "Meldinger";
|
|
52
|
+
readonly multipleAnswersAllowed: "flere svar tillatt";
|
|
53
|
+
readonly noMatchingChatsFound: "Fant ingen samsvarende chatter.";
|
|
54
|
+
readonly noMessagesHaveBeenSentYet: "Ingen meldinger har blitt sendt ennå";
|
|
55
|
+
readonly noMessagesYetInThisGroup: "Ingen meldinger i denne gruppen ennå.";
|
|
56
|
+
readonly noRecipientsDeliveredStageYet: "Ingen mottakere er bare på levert-stadiet ennå.";
|
|
57
|
+
readonly noScheduledMessagesForConversation: "Ingen planlagte meldinger for denne samtalen.";
|
|
58
|
+
readonly nobodyHasReadThisMessageYet: "Ingen har lest denne meldingen ennå.";
|
|
59
|
+
readonly notYet: "Ikke ennå";
|
|
60
|
+
readonly offline: "Frakoblet";
|
|
61
|
+
readonly offlineQueued: ({ count }: TranslationParams) => string;
|
|
62
|
+
readonly openInNewTab: "Åpne i ny fane";
|
|
63
|
+
readonly openVideoViewer: "Åpne videovisning";
|
|
64
|
+
readonly option: ({ index }: TranslationParams) => string;
|
|
65
|
+
readonly options: "Alternativer";
|
|
66
|
+
readonly photo: "Bilde";
|
|
67
|
+
readonly poll: "Avstemning";
|
|
68
|
+
readonly pollPrefix: ({ question }: TranslationParams) => string;
|
|
69
|
+
readonly pollQuestionPlaceholder: "Hva bør vi prioritere videre?";
|
|
70
|
+
readonly question: "Spørsmål";
|
|
71
|
+
readonly queued: "I kø";
|
|
72
|
+
readonly queuedForConversation: ({ title }: TranslationParams) => string;
|
|
73
|
+
readonly queuedOutgoingMessagesForThisChat: "Utgående meldinger i kø for denne chatten";
|
|
74
|
+
readonly read: "Lest";
|
|
75
|
+
readonly readBy: "Lest av";
|
|
76
|
+
readonly readByAll: "Lest av alle";
|
|
77
|
+
readonly readOnlyChannel: "Denne kanalen er skrivebeskyttet.";
|
|
78
|
+
readonly realtimeOn: "Sanntid på";
|
|
79
|
+
readonly recentConversations: "Nylige samtaler";
|
|
80
|
+
readonly refreshingMessages: "Oppdaterer meldinger";
|
|
81
|
+
readonly repliesDisabledInChannels: "Svar er deaktivert i kanaler.";
|
|
82
|
+
readonly reply: "Svar";
|
|
83
|
+
readonly replying: "Svarer";
|
|
84
|
+
readonly replyingInContext: ({ context }: TranslationParams) => string;
|
|
85
|
+
readonly reschedule: "Planlegg på nytt";
|
|
86
|
+
readonly save: "Lagre";
|
|
87
|
+
readonly saveMessage: "Lagre melding";
|
|
88
|
+
readonly schedule: "Planlegg";
|
|
89
|
+
readonly scheduled: "Planlagt";
|
|
90
|
+
readonly scheduledDateLabel: ({ date }: TranslationParams) => string;
|
|
91
|
+
readonly scheduledMessages: "Planlagte meldinger";
|
|
92
|
+
readonly scheduleMessage: "Planlegg melding";
|
|
93
|
+
readonly searchByGroupName: "Søk etter gruppenavn";
|
|
94
|
+
readonly selectConversationToStart: "Velg en samtale for å begynne å lese og sende meldinger.";
|
|
95
|
+
readonly sendAt: "Send kl.";
|
|
96
|
+
readonly sendAttachment: "Send vedlegg";
|
|
97
|
+
readonly sendMessage: "Send melding";
|
|
98
|
+
readonly sending: "Sender";
|
|
99
|
+
readonly sendPoll: "Send avstemning";
|
|
100
|
+
readonly sent: "Sendt";
|
|
101
|
+
readonly sentAnAttachment: "Sendte et vedlegg";
|
|
102
|
+
readonly signedInToSandbox: "Logget inn i BCC Sandbox";
|
|
103
|
+
readonly someRecipients: "Noen mottakere";
|
|
104
|
+
readonly system: "System";
|
|
105
|
+
readonly thread: "Tråd";
|
|
106
|
+
readonly threadReplies: ({ count }: TranslationParams) => string;
|
|
107
|
+
readonly threadWithCount: ({ count }: TranslationParams) => string;
|
|
108
|
+
readonly translate: "Oversett";
|
|
109
|
+
readonly underline: "Understrek";
|
|
110
|
+
readonly unsupportedMessageType: "Meldingstype støttes ikke";
|
|
111
|
+
readonly unscheduled: "Ikke planlagt";
|
|
112
|
+
readonly video: "Video";
|
|
113
|
+
readonly voteCount: ({ count }: TranslationParams) => string;
|
|
114
|
+
readonly waitingForNetwork: "Venter på nettverk...";
|
|
115
|
+
readonly writeMessage: "Skriv en melding...";
|
|
116
|
+
readonly you: "Du";
|
|
117
|
+
readonly youSentAMessage: "Du sendte en melding";
|
|
118
|
+
};
|