session-desktop/_locales/ko/messages.json

1168 lines
46 KiB
JSON
Raw Normal View History

{
2019-04-08 23:16:09 +02:00
"copyErrorAndQuit": {
"message": "Copy error and quit",
"description": "Shown in the top-level error popup, allowing user to copy the error text and close the app"
},
"databaseError": {
"message": "Database Error",
"description": "Shown in a popup if the database cannot start up properly"
},
2018-08-31 22:50:28 +02:00
"mainMenuFile": {
"message": "&File",
"description": "The label that is used for the File menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
2018-08-31 22:50:28 +02:00
"mainMenuEdit": {
"message": "&Edit",
"description": "The label that is used for the Edit menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
2018-08-31 22:50:28 +02:00
"mainMenuView": {
"message": "&View",
"description": "The label that is used for the View menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"mainMenuWindow": {
"message": "&Window",
"description": "The label that is used for the Window menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuHelp": {
"message": "&Help",
"description": "The label that is used for the Help menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"appMenuHide": {
"message": "Hide",
"description": "Application menu command to hide the window"
},
2018-07-18 19:47:58 +02:00
"appMenuHideOthers": {
"message": "Hide Others",
"description": "Application menu command to hide all other windows"
},
2018-08-31 22:50:28 +02:00
"appMenuUnhide": {
"message": "Show All",
"description": "Application menu command to show all application windows"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"appMenuQuit": {
2020-01-30 04:19:07 +01:00
"message": "Quit Session",
2018-08-31 22:50:28 +02:00
"description": "Application menu command to close the application"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"editMenuUndo": {
"message": "Undo",
"description": "Edit menu command to remove recently-typed text"
},
2018-08-31 22:50:28 +02:00
"editMenuRedo": {
"message": "Redo",
"description": "Edit menu command to restore previously undone typed text"
2016-06-30 03:12:20 +02:00
},
2018-08-31 22:50:28 +02:00
"editMenuCut": {
"message": "Cut",
"description": "Edit menu command to remove selected text and add it to clipboard"
2017-04-16 08:51:10 +02:00
},
2018-08-31 22:50:28 +02:00
"editMenuCopy": {
"message": "Copy",
"description": "Edit menu command to add selected text to clipboard"
},
2018-08-31 22:50:28 +02:00
"editMenuPaste": {
"message": "Paste",
"description": "Edit menu command to insert text from clipboard at cursor location"
},
2018-08-31 22:50:28 +02:00
"editMenuPasteAndMatchStyle": {
"message": "Paste and Match Style",
"description": "Edit menu command to insert text from clipboard at cursor location, taking only text and not style information"
2016-10-08 16:40:13 +02:00
},
2018-08-31 22:50:28 +02:00
"editMenuDelete": {
"message": "Delete",
"description": "Edit menu command to remove the selected text"
},
2018-08-31 22:50:28 +02:00
"editMenuSelectAll": {
"message": "Select All",
"description": "Edit menu comand to select all of the text in selected text box"
},
2018-08-31 22:50:28 +02:00
"editMenuStartSpeaking": {
"message": "Start speaking",
"description": "Edit menu item under 'speech' to start dictation"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"editMenuStopSpeaking": {
"message": "Stop speaking",
"description": "Edit menu item under 'speech' to stop dictation"
2016-02-22 23:27:51 +01:00
},
2018-08-31 22:50:28 +02:00
"windowMenuClose": {
"message": "Close Window",
"description": "Window menu command to close the current window"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"windowMenuMinimize": {
"message": "Minimize",
"description": "Window menu command to minimize the current window"
},
2018-08-31 22:50:28 +02:00
"windowMenuZoom": {
"message": "Zoom",
"description": "Window menu command to make the current window the size of the whole screen"
2018-07-31 18:54:06 +02:00
},
2018-08-31 22:50:28 +02:00
"windowMenuBringAllToFront": {
"message": "Bring All to Front",
"description": "Window menu command to bring all windows of current applicatinon to front"
2016-08-11 21:22:17 +02:00
},
2018-08-31 22:50:28 +02:00
"viewMenuResetZoom": {
"message": "Actual Size",
"description": "View menu command to go back to the default zoom"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"viewMenuZoomIn": {
"message": "Zoom In",
"description": "View menu command to make everything bigger"
},
2018-08-31 22:50:28 +02:00
"viewMenuZoomOut": {
"message": "Zoom Out",
"description": "View menu command to make everything smaller"
},
2018-08-31 22:50:28 +02:00
"viewMenuToggleFullScreen": {
"message": "Toggle Full Screen",
"description": "View menu command to enter or leave Full Screen mode"
},
2018-08-31 22:50:28 +02:00
"viewMenuToggleDevTools": {
"message": "Toggle Developer Tools",
"description": "View menu command to show or hide the developer tools"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"menuSetupWithImport": {
"message": "Set Up with Import",
"description": "When the application is not yet set up, menu option to start up the import sequence"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"menuSetupAsStandalone": {
"message": "Set Up as Standalone Device",
"description": "Only available on development modes, menu option to open up the standalone device setup sequence"
},
2018-08-31 22:50:28 +02:00
"loading": {
"message": "Loading...",
"description": "Message shown on the loading screen before we've loaded any messages"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"optimizingApplication": {
"message": "Optimizing application...",
"description": "Message shown on the loading screen while we are doing application optimizations"
2016-04-03 23:33:07 +02:00
},
2018-08-31 22:50:28 +02:00
"migratingToSQLCipher": {
"message": "Optimizing messages... $status$ complete.",
"description": "Message shown on the loading screen while we are doing application optimizations",
"placeholders": {
2018-08-31 22:50:28 +02:00
"status": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "45/200"
}
}
},
2018-08-31 22:50:28 +02:00
"chooseDirectory": {
"message": "Choose folder",
"description": "Button to allow the user to find a folder on disk"
},
2018-08-31 22:50:28 +02:00
"loadDataHeader": {
"message": "Load your data",
"description": "Header shown on the first screen in the data import process"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"loadDataDescription": {
"message": "You've just gone through the export process, and your contacts and messages are waiting patiently on your computer. Select the folder that contains your saved Signal data.",
"description": "Introduction to the process of importing messages and contacts from disk"
},
2018-08-31 22:50:28 +02:00
"importChooserTitle": {
"message": "Choose directory with exported data",
"description": "Title of the popup window used to select data previously exported"
},
2018-08-31 22:50:28 +02:00
"importErrorHeader": {
"message": "Something went wrong!",
"description": "Header of the error screen after a failed import"
2017-05-16 20:56:33 +02:00
},
2018-08-31 22:50:28 +02:00
"importingHeader": {
"message": "Loading contacts and messages",
"description": "Header of screen shown as data is import"
},
2018-08-31 22:50:28 +02:00
"importErrorFirst": {
"message": "Make sure you have chosen the correct directory that contains your saved Signal data. Its name should begin with 'Signal Export.' You can also save a new copy of your data from the Chrome App.",
"description": "Message shown if the import went wrong; first paragraph"
2017-04-16 08:51:10 +02:00
},
2018-08-31 22:50:28 +02:00
"importErrorSecond": {
"message": "If these steps don't work for you, please submit a debug log (View -> Debug Log) so that we can help you get migrated!",
"description": "Message shown if the import went wrong; second paragraph"
},
2018-08-31 22:50:28 +02:00
"importAgain": {
"message": "Choose folder and try again",
"description": "Button shown if the user runs into an error during import, allowing them to start over"
},
2018-08-31 22:50:28 +02:00
"importCompleteHeader": {
"message": "Success!",
"description": "Header shown on the screen at the end of a successful import process"
2017-04-16 08:51:10 +02:00
},
2018-08-31 22:50:28 +02:00
"importCompleteStartButton": {
"message": "Start using Signal Desktop",
"description": "Button shown at end of successful import process, nothing left but a restart"
2018-07-31 18:54:06 +02:00
},
2018-08-31 22:50:28 +02:00
"importCompleteLinkButton": {
"message": "Link this device to your phone",
"description": "Button shown at end of successful 'light' import process, so the standard linking process still needs to happen"
2016-03-17 23:05:27 +01:00
},
2018-08-31 22:50:28 +02:00
"me": {
"message": "Me",
"description": "The label for yourself when shown in a group member list"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"view": {
"message": "View",
"description": "Used as a label on a button allowing user to see more information"
2016-06-30 03:12:20 +02:00
},
"youLeftTheGroup": {
"message": "You left the group",
"description": "Displayed when a user can't send a message because they have left the group"
},
2018-08-31 22:50:28 +02:00
"unreadMessage": {
"message": "1 Unread Message",
"description": "Text for unread message separator, just one message"
},
2018-08-31 22:50:28 +02:00
"unreadMessages": {
"message": "$count$ Unread Messages",
"description": "Text for unread message separator, with count",
"placeholders": {
"count": {
"content": "$1",
"example": "5"
}
}
},
2018-08-31 22:50:28 +02:00
"youMarkedAsVerified": {
"message": "You marked your Safety Number with $name$ as verified",
"description": "Shown in the conversation history when the user marks a contact as verified.",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"youMarkedAsNotVerified": {
"message": "You marked your Safety Number with $name$ as not verified",
"description": "Shown in the conversation history when the user marks a contact as not verified, whether on the Safety Number screen or by dismissing a banner or dialog.",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"youMarkedAsVerifiedOtherDevice": {
"message": "You marked your Safety Number with $name$ as verified from another device",
"description": "Shown in the conversation history when we discover that the user marked a contact as verified on another device.",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"youMarkedAsNotVerifiedOtherDevice": {
"message": "You marked your Safety Number with $name$ as not verified from another device",
"description": "Shown in the conversation history when we discover that the user marked a contact as not verified on another device.",
2018-07-31 18:54:06 +02:00
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
2018-07-31 18:54:06 +02:00
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
2018-07-31 18:54:06 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"membersNeedingVerification": {
"message": "Your safety numbers with these group members have changed since you last verified. Click a group member to see your new safety number with them.",
"description": "When there are multiple previously-verified group members with safety number changes, a banner will be shown. The list of contacts with safety number changes is shown, and this text introduces that list."
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"changedSinceVerifiedMultiple": {
"message": "Your safety numbers with multiple group members have changed since you last verified. This could mean that someone is trying to intercept your communication or that they have simply reinstalled Signal.",
"description": "Shown on confirmation dialog when user attempts to send a message"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"changedSinceVerified": {
"message": "Your safety number with $name$ has changed since you last verified. This could mean that someone is trying to intercept your communication or that $name$ has simply reinstalled Signal.",
"description": "Shown on confirmation dialog when user attempts to send a message",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"changedRightAfterVerify": {
"message": "The safety number you are trying to verify has changed. Please review your new safety number with $name$. Remember, this change could mean that someone is trying to intercept your communication or that $name$ has simply reinstalled Signal.",
"description": "Shown on the safety number screen when the user has selected to verify/unverify a contact's safety number, and we immediately discover a safety number change",
2016-10-07 12:13:47 +02:00
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
"changedRecentlyMultiple": {
"message": "Your safety numbers with multiple group members have changed recently. This could mean that someone is trying to intercept your communication or that they have simply reinstalled Signal.",
"description": "Shown on confirmation dialog when user attempts to send a message"
},
2018-08-31 22:50:28 +02:00
"changedRecently": {
"message": "Your safety number with $name$ has changed recently. This could mean that someone is trying to intercept your communication or that $name$ has simply reinstalled Signal.",
"description": "Shown on confirmation dialog when user attempts to send a message",
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"identityKeyErrorOnSend": {
"message": "Your safety number with $name$ has changed. This could either mean that someone is trying to intercept your communication or that $name$ has simply reinstalled Signal. You may wish to verify your saftey number with this contact.",
"description": "Shown when user clicks on a failed recipient in the message detail view after an identity key change",
2018-07-18 19:47:58 +02:00
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
2018-07-18 19:47:58 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"sendAnyway": {
"message": "Send Anyway",
"description": "Used on a warning dialog to make it clear that it might be risky to send the message."
},
"noLongerVerified": {
"message": "Your safety number with $name$ has changed and is no longer verified. Click to show.",
"description": "Shown in converation banner when user's safety number has changed, but they were previously verified.",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"multipleNoLongerVerified": {
"message": "Your safety numbers with multiple members of this group have changed and are no longer verified. Click to show.",
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"debugLogExplanation": {
"message": "This log will be posted publicly online for contributors to view. You may examine and edit it before submitting.",
"description": ""
},
2018-08-31 22:50:28 +02:00
"debugLogError": {
"message": "Something went wrong with the upload! Please consider manually adding your log to the bug you file.",
"description": ""
2016-02-22 23:27:51 +01:00
},
2018-08-31 22:50:28 +02:00
"reportIssue": {
"message": "Report an issue",
"description": "Link to open the issue tracker"
2016-06-30 03:12:20 +02:00
},
2018-08-31 22:50:28 +02:00
"gotIt": {
"message": "Got it!",
"description": "Label for a button that dismisses a dialog. The user clicks it to confirm that they understand the message in the dialog."
2016-06-30 03:12:20 +02:00
},
2018-08-31 22:50:28 +02:00
"submit": {
"message": "Submit",
2017-04-16 08:51:10 +02:00
"description": ""
},
2018-08-31 22:50:28 +02:00
"verify": {
"message": "Mark as verified",
"description": ""
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"unverify": {
"message": "Mark as not verified",
"description": ""
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"isVerified": {
"message": "You have verified your safety number with $name$.",
"description": "Summary state shown at top of the safety number screen if user has verified contact.",
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"isNotVerified": {
"message": "You have not verified your safety number with $name$.",
"description": "Summary state shown at top of the safety number screen if user has not verified contact.",
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
}
}
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"verified": {
"message": "Verified",
"description": ""
},
2018-08-31 22:50:28 +02:00
"newIdentity": {
"message": "New safety number",
"description": "Header for a key change dialog"
},
2018-08-31 22:50:28 +02:00
"incomingError": {
"message": "Error handling incoming message",
"description": ""
},
2018-08-31 22:50:28 +02:00
"media": {
"message": "Media",
"description": "Header of the default pane in the media gallery, showing images and videos"
},
2018-08-31 22:50:28 +02:00
"mediaEmptyState": {
"message": "You dont have any media in this conversation",
"description": "Message shown to user in the media gallery when there are no messages with media attachments (images or video)"
2018-07-31 18:54:06 +02:00
},
2018-08-31 22:50:28 +02:00
"documents": {
"message": "Documents",
"description": "Header of the secondary pane in the media gallery, showing every non-media attachment"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"documentsEmptyState": {
"message": "You dont have any documents in this conversation",
"description": "Message shown to user in the media gallery when there are no messages with document attachments (anything other than images or video)"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"today": {
"message": "Today",
"description": "Section header in the media gallery"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"yesterday": {
"message": "Yesterday",
"description": "Section header in the media gallery"
},
2018-08-31 22:50:28 +02:00
"thisWeek": {
"message": "This Week",
"description": "Section header in the media gallery"
},
2018-08-31 22:50:28 +02:00
"thisMonth": {
"message": "This Month",
"description": "Section header in the media gallery"
},
2018-08-31 22:50:28 +02:00
"voiceMessage": {
2019-01-17 00:29:04 +01:00
"message": "보이스 메시지",
2018-08-31 22:50:28 +02:00
"description": "Name for a voice message attachment"
2016-04-07 21:27:03 +02:00
},
2018-10-16 02:32:32 +02:00
"dangerousFileType": {
"message": "Attachment type not allowed for security reasons",
"description": "Shown in toast when user attempts to send .exe file, for example"
},
2019-02-04 20:53:59 +01:00
"stagedPreviewThumbnail": {
"message": "Draft thumbnail link preview for $domain$",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area",
"placeholders": {
"path": {
"content": "$1",
"example": "instagram.com"
}
}
},
"previewThumbnail": {
"message": "Thumbnail link preview for $domain$",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area",
"placeholders": {
"path": {
"content": "$1",
"example": "instagram.com"
}
}
},
2019-01-17 00:29:04 +01:00
"stagedImageAttachment": {
2019-02-04 20:53:59 +01:00
"message": "Draft image attachment: $path$",
2019-01-17 00:29:04 +01:00
"description": "Alt text for staged attachments",
"placeholders": {
"path": {
"content": "$1",
"example": "dog.jpg"
}
}
},
"oneNonImageAtATimeToast": {
"message": "When including a non-image attachment, the limit is one attachment per message.",
"description": "An error popup when the user has attempted to add an attachment"
},
2020-01-31 04:47:30 +01:00
"cannotMixImageAndNonImageAttachments": {
2019-01-17 00:29:04 +01:00
"message": "You cannot mix non-image and image attachments in one message.",
"description": "An error popup when the user has attempted to add an attachment"
},
"maximumAttachments": {
"message": "You cannot add any more attachments to this message.",
"description": "An error popup when the user has attempted to add an attachment"
},
2018-08-31 22:50:28 +02:00
"fileSizeWarning": {
"message": "Sorry, the selected file exceeds message size restrictions.",
"description": ""
},
2018-10-16 02:32:32 +02:00
"unableToLoadAttachment": {
"message": "Unable to load selected attachment.",
"description": ""
},
2018-08-31 22:50:28 +02:00
"connecting": {
"message": "Connecting",
"description": "Displayed when the desktop client is currently connecting to the server."
},
"offline": {
"message": "Offline",
"description": "Displayed when the desktop client has no network connection."
},
"checkNetworkConnection": {
"message": "Check your network connection.",
"description": "Obvious instructions for when a user's computer loses its network connection"
},
"attemptingReconnection": {
"message": "Attempting reconnect in $reconnect_duration_in_seconds$ seconds",
"description": "",
2016-10-07 12:13:47 +02:00
"placeholders": {
2018-08-31 22:50:28 +02:00
"reconnect_duration_in_seconds": {
2016-10-07 12:13:47 +02:00
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "10"
2016-10-07 12:13:47 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"submitDebugLog": {
"message": "Debug log",
"description": "Menu item and header text for debug log modal (sentence case)"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"debugLog": {
"message": "Debug Log",
"description": "View menu item to open the debug log (title case)"
2016-04-03 23:33:07 +02:00
},
2018-08-31 22:50:28 +02:00
"goToReleaseNotes": {
"message": "Go to Release Notes",
"description": ""
2018-07-21 01:30:56 +02:00
},
2018-08-31 22:50:28 +02:00
"goToSupportPage": {
"message": "Go to Support Page",
"description": "Item under the Help menu, takes you to the support page"
},
2018-08-31 22:50:28 +02:00
"menuReportIssue": {
"message": "Report an Issue",
"description": "Item under the Help menu, takes you to GitHub new issue form (title case)"
2016-02-22 23:27:51 +01:00
},
2018-08-31 22:50:28 +02:00
"speech": {
"message": "Speech",
"description": "Item under the Edit menu, with 'start/stop speaking' items below it"
},
"show": {
"message": "Show",
"description": "Command under Window menu, to show the window"
},
2019-04-08 23:16:09 +02:00
"search": {
"message": "검색",
2018-08-31 22:50:28 +02:00
"description": "Placeholder text in the search input"
},
2019-04-08 23:16:09 +02:00
"noSearchResults": {
"message": "No results for \"$searchTerm$\"",
"description": "Shown in the search left pane when no results were found",
"placeholders": {
"searchTerm": {
"content": "$1",
"example": "dog"
}
}
},
"conversationsHeader": {
"message": "대화",
"description": "Shown to separate the types of search results"
},
"contactsHeader": {
"message": "연락처",
"description": "Shown to separate the types of search results"
},
"messagesHeader": {
"message": "Messages",
"description": "Shown to separate the types of search results"
},
2020-02-03 04:23:48 +01:00
"welcomeToSession": {
2018-08-31 22:50:28 +02:00
"message": "Welcome to Signal",
"description": ""
},
2019-01-17 00:29:04 +01:00
"typingAlt": {
"message": "Typing animation for this conversation",
"description": "Used as the 'title' attibute for the typing animation"
},
2018-08-31 22:50:28 +02:00
"contactAvatarAlt": {
"message": "Avatar for contact $name$",
"description": "Used in the alt tag for the image avatar of a contact",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "John"
}
}
},
2018-08-31 22:50:28 +02:00
"home": {
"message": "home",
"description": "Shown on contact detail screen as a label for an address/phone/email"
2016-06-30 03:12:20 +02:00
},
2018-08-31 22:50:28 +02:00
"work": {
"message": "work",
"description": "Shown on contact detail screen as a label for an address/phone/email"
},
2018-08-31 22:50:28 +02:00
"mobile": {
"message": "mobile",
"description": "Shown on contact detail screen as a label for aa phone or email"
},
2018-08-31 22:50:28 +02:00
"email": {
"message": "email",
"description": "Generic label shown if contact email has custom type but no label"
},
2018-08-31 22:50:28 +02:00
"phone": {
"message": "phone",
"description": "Generic label shown if contact phone has custom type but no label"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"address": {
"message": "address",
"description": "Generic label shown if contact address has custom type but no label"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"poBox": {
"message": "PO Box",
"description": "When rendering an address, used to provide context to a post office box"
2018-05-02 18:29:36 +02:00
},
2019-04-08 23:16:09 +02:00
"downloading": {
"message": "다운로드 중",
"description": "Shown in the message bubble while a long message attachment is being downloaded"
},
2018-08-31 22:50:28 +02:00
"downloadAttachment": {
"message": "Download Attachment",
"description": "Shown in a message's triple-dot menu if there isn't room for a dedicated download button"
2016-08-25 01:54:05 +02:00
},
2018-08-31 22:50:28 +02:00
"replyToMessage": {
"message": "Reply to Message",
"description": "Shown in triple-dot menu next to message to allow user to start crafting a message with a quotation"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"originalMessageNotFound": {
"message": "Original message not found",
"description": "Shown in quote if reference message was not found as message was initially downloaded and processed"
},
2018-08-31 22:50:28 +02:00
"originalMessageNotAvailable": {
"message": "Original message no longer available",
"description": "Shown in toast if user clicks on quote that references message no longer in database"
},
2018-08-31 22:50:28 +02:00
"messageFoundButNotLoaded": {
"message": "Original message found, but not loaded. Scroll up to load it.",
"description": "Shown in toast if user clicks on quote references messages not loaded in view, but in database"
2016-10-07 12:13:47 +02:00
},
2019-01-17 00:29:04 +01:00
"voiceNoteMustBeOnlyAttachment": {
"message": "A voice note must be the only attachment included in a message.",
"description": "Shown in toast if tries to record a voice note with any staged attachments"
},
2018-08-31 22:50:28 +02:00
"you": {
"message": "You",
"description": "In Android theme, shown in quote if you or someone else replies to you"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"audioPermissionNeeded": {
"message": "To send audio messages, allow Signal Desktop to access your microphone.",
"description": "Shown if the user attempts to send an audio message without audio permssions turned on"
},
"allowAccess": {
"message": "Allow Access",
"description": "Button shown in popup asking to enable microphon/video permissions to send audio messages"
},
"audio": {
"message": "Audio",
"description": "Shown in a quotation of a message containing an audio attachment if no text was originally provided with that attachment"
},
"video": {
"message": "Video",
"description": "Shown in a quotation of a message containing a video if no text was originally provided with that video"
},
"photo": {
"message": "Photo",
"description": "Shown in a quotation of a message containing a photo if no text was originally provided with that image"
},
2019-04-08 23:16:09 +02:00
"cannotUpdate": {
"message": "Cannot Update",
"description": "Shown as the title of our update error dialogs on windows"
},
2018-08-31 22:50:28 +02:00
"ok": {
"message": "OK",
"description": ""
},
2018-08-31 22:50:28 +02:00
"cancel": {
"message": "Cancel",
"description": ""
},
2018-08-31 22:50:28 +02:00
"error": {
2019-01-17 00:29:04 +01:00
"message": "에러",
2018-08-31 22:50:28 +02:00
"description": ""
2016-06-30 03:12:20 +02:00
},
2018-08-31 22:50:28 +02:00
"delete": {
"message": "Delete",
"description": ""
},
"deleteWarning": {
"message": "Are you sure? Clicking 'delete' will permanently remove this message from this device only.",
"description": ""
},
"deleteThisMessage": {
"message": "Delete this message",
"description": ""
},
"from": {
"message": "From",
"description": "Label for the sender of a message"
},
"to": {
2019-04-08 23:16:09 +02:00
"message": "to",
2018-08-31 22:50:28 +02:00
"description": "Label for the receiver of a message"
},
"sent": {
"message": "Sent",
"description": "Label for the time a message was sent"
},
"received": {
"message": "Received",
"description": "Label for the time a message was received"
},
2018-08-31 22:50:28 +02:00
"sendMessage": {
"message": "메세지를 보내다",
"description": "Placeholder text in the message entry field"
},
"groupMembers": {
"message": "Group members",
"description": ""
},
"resetSession": {
"message": "Reset session",
"description": "This is a menu item for resetting the session, using the imperative case, as in a command."
},
"showSafetyNumber": {
"message": "View safety number",
"description": ""
},
"verifyHelp": {
"message": "If you wish to verify the security of your end-to-end encryption with $name$, compare the numbers above with the numbers on their device.",
"description": "",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "John"
}
}
},
2018-08-31 22:50:28 +02:00
"theirIdentityUnknown": {
"message": "You haven't exchanged any messages with this contact yet. Your safety number with them will be available after the first message.",
"description": ""
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"deleteMessage": {
"message": "Delete Message",
"description": "Shown on the drop-down menu for an individual message, deletes single message"
},
"deleteMessages": {
"message": "Delete messages",
"description": "Menu item for deleting messages, title case."
},
"deleteConversationConfirmation": {
"message": "Permanently delete this conversation?",
"description": "Confirmation dialog text that asks the user if they really wish to delete the conversation. Answer buttons use the strings 'ok' and 'cancel'. The deletion is permanent, i.e. it cannot be undone."
},
"sessionEnded": {
"message": "Secure session reset",
"description": "This is a past tense, informational message. In other words, your secure session has been reset."
},
"quoteThumbnailAlt": {
"message": "Thumbnail of image from quoted message",
"description": "Used in alt tag of thumbnail images inside of an embedded message quote"
},
"imageAttachmentAlt": {
"message": "Image attached to message",
"description": "Used in alt tag of image attachment"
},
"videoAttachmentAlt": {
"message": "Screenshot of video attached to message",
"description": "Used in alt tag of video attachment preview"
},
"lightboxImageAlt": {
"message": "Image sent in conversation",
"description": "Used in the alt tag for the image shown in a full-screen lightbox view"
},
2019-01-17 00:29:04 +01:00
"imageCaptionIconAlt": {
"message": "Icon showing that this image has a caption",
"description": "Used for the icon layered on top of an image in message bubbles"
},
"addACaption": {
"message": "Add a caption...",
"description": ""
},
"save": {
"message": "저장",
"description": ""
},
2018-08-31 22:50:28 +02:00
"emojiAlt": {
"message": "Emoji image of '$title$'",
"description": "Used in the alt tag of all emoji images",
"placeholders": {
2018-08-31 22:50:28 +02:00
"title": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "grinning"
}
}
},
2018-08-31 22:50:28 +02:00
"linkNewDevice": {
"message": "Link New Device",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"permissions": {
"message": "Permissions",
"description": "Header for permissions section of settings"
},
"mediaPermissionsDescription": {
"message": "Allow access to camera and microphone",
"description": "Description of the media permission description"
},
2019-02-04 20:53:59 +01:00
"general": {
"message": "일반 설정",
"description": "Header for general options on the settings screen"
},
2018-08-31 22:50:28 +02:00
"spellCheckDescription": {
"message": "Enable spell check of text entered in message composition box",
"description": "Description of the media permission description"
},
"notifications": {
"message": "Notifications",
"description": "Header for notification settings"
},
2018-08-31 22:50:28 +02:00
"notificationSettingsDialog": {
"message": "When messages arrive, display notifications that reveal:",
"description": "Explain the purpose of the notification settings"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"disableNotifications": {
"message": "Disable notifications",
"description": "Label for disabling notifications"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"nameAndMessage": {
"message": "Both sender name and message",
"description": "Label for setting notifications to display name and message text"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"noNameOrMessage": {
"message": "Neither name nor message",
"description": "Label for setting notifications to display no name and no message text"
},
2018-08-31 22:50:28 +02:00
"nameOnly": {
"message": "Only sender name",
"description": "Label for setting notifications to display sender name only"
2016-04-28 20:15:45 +02:00
},
2018-08-31 22:50:28 +02:00
"newMessage": {
"message": "New Message",
"description": "Displayed in notifications for only 1 message"
},
"newMessages": {
"message": "New Messages",
"description": "Displayed in notifications for multiple messages"
},
"notificationMostRecentFrom": {
"message": "Most recent from:",
"description": "Displayed in notifications when setting is 'name only' and more than one message is waiting"
},
"notificationFrom": {
"message": "From:",
"description": "Displayed in notifications when setting is 'name only' and one message is waiting"
},
"notificationMostRecent": {
"message": "Most recent:",
"description": "Displayed in notifications when setting is 'name and message' and more than one message is waiting"
},
"sendFailed": {
"message": "Send failed",
"description": "Shown on outgoing message if it fails to send"
},
"learnMore": {
"message": "Learn more about verifying safety numbers",
"description": "Text that links to a support article on verifying safety numbers"
},
2016-04-07 21:27:03 +02:00
"expiredWarning": {
"message": "This version of Signal Desktop has expired. Please upgrade to the latest version to continue messaging.",
"description": "Warning notification that this version of the app has expired"
},
2018-08-31 22:50:28 +02:00
"upgrade": {
"message": "Upgrade",
"description": "Label text for button to upgrade the app to the latest version"
},
2018-08-31 22:50:28 +02:00
"mediaMessage": {
"message": "Media message",
"description": "Description of a message that has an attachment and no text, displayed in the conversation list as a preview."
},
2018-08-31 22:50:28 +02:00
"timestamp_s": {
"message": "now",
"description": "Brief timestamp for messages sent less than a minute ago. Displayed in the conversation list and message bubble."
},
"timestamp_m": {
"message": "1 minute",
"description": "Brief timestamp for messages sent about one minute ago. Displayed in the conversation list and message bubble."
},
"timestamp_h": {
"message": "1 hour",
"description": "Brief timestamp for messages sent about one hour ago. Displayed in the conversation list and message bubble."
},
"timestampFormat_M": {
"message": "MMM D",
"description": "Timestamp format string for displaying month and day (but not the year) of a date within the current year, ex: use 'MMM D' for 'Aug 8', or 'D MMM' for '8 Aug'."
},
"unblockToSend": {
"message": "Unblock this contact to send a message.",
"description": "Brief message shown when trying to message a blocked number"
},
2018-10-16 02:32:32 +02:00
"unblockGroupToSend": {
"message": "Unblock this group to send a message.",
"description": "Brief message shown when trying to message a blocked group"
},
2018-08-31 22:50:28 +02:00
"youChangedTheTimer": {
"message": "You set the disappearing message timer to $time$",
"description": "Message displayed when you change the message expiration timer in a conversation.",
"placeholders": {
"time": {
"content": "$1",
"example": "10m"
}
}
},
"timerSetOnSync": {
"message": "Updated disappearing message timer to $time$",
"description": "Message displayed when timer is set on initial link of desktop device.",
"placeholders": {
"time": {
2018-07-18 19:47:58 +02:00
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "10m"
2018-07-18 19:47:58 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"theyChangedTheTimer": {
"message": "$name$ set the disappearing message timer to $time$",
"description": "Message displayed when someone else changes the message expiration timer in a conversation.",
"placeholders": {
"name": {
"content": "$1",
"example": "Bob"
},
"time": {
"content": "$2",
"example": "10m"
}
}
},
2018-08-31 22:50:28 +02:00
"timerOption_0_seconds": {
"message": "off",
"description": "Label for option to turn off message expiration in the timer menu"
2016-02-11 21:36:07 +01:00
},
2018-08-31 22:50:28 +02:00
"timerOption_5_seconds": {
"message": "5 seconds",
"description": "Label for a selectable option in the message expiration timer menu"
},
2018-08-31 22:50:28 +02:00
"timerOption_10_seconds": {
"message": "10 seconds",
"description": "Label for a selectable option in the message expiration timer menu"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_30_seconds": {
"message": "30 seconds",
"description": "Label for a selectable option in the message expiration timer menu"
},
2018-08-31 22:50:28 +02:00
"timerOption_1_minute": {
"message": "1 minute",
"description": "Label for a selectable option in the message expiration timer menu"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_5_minutes": {
"message": "5 minutes",
"description": "Label for a selectable option in the message expiration timer menu"
},
2018-08-31 22:50:28 +02:00
"timerOption_30_minutes": {
"message": "30 minutes",
"description": "Label for a selectable option in the message expiration timer menu"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_1_hour": {
"message": "1 hour",
"description": "Label for a selectable option in the message expiration timer menu"
2016-03-17 23:05:27 +01:00
},
2018-08-31 22:50:28 +02:00
"timerOption_6_hours": {
"message": "6 hours",
"description": "Label for a selectable option in the message expiration timer menu"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_12_hours": {
"message": "12 hours",
"description": "Label for a selectable option in the message expiration timer menu"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_1_day": {
"message": "1 day",
"description": "Label for a selectable option in the message expiration timer menu"
},
2018-08-31 22:50:28 +02:00
"timerOption_1_week": {
"message": "1 week",
"description": "Label for a selectable option in the message expiration timer menu"
2016-09-12 20:51:16 +02:00
},
2018-08-31 22:50:28 +02:00
"disappearingMessages": {
"message": "Disappearing messages",
"description": "Conversation menu option to enable disappearing messages"
},
2018-08-31 22:50:28 +02:00
"timerOption_0_seconds_abbreviated": {
"message": "off",
"description": "Short format indicating current timer setting in the conversation list snippet"
2017-05-16 20:56:33 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_5_seconds_abbreviated": {
"message": "5s",
"description": "Very short format indicating current timer setting in the conversation header"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_10_seconds_abbreviated": {
"message": "10s",
"description": "Very short format indicating current timer setting in the conversation header"
},
2018-08-31 22:50:28 +02:00
"timerOption_30_seconds_abbreviated": {
"message": "30s",
"description": "Very short format indicating current timer setting in the conversation header"
},
2018-08-31 22:50:28 +02:00
"timerOption_1_minute_abbreviated": {
"message": "1m",
"description": "Very short format indicating current timer setting in the conversation header"
2017-04-16 08:51:10 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_5_minutes_abbreviated": {
"message": "5m",
"description": "Very short format indicating current timer setting in the conversation header"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_30_minutes_abbreviated": {
"message": "30m",
"description": "Very short format indicating current timer setting in the conversation header"
},
2018-08-31 22:50:28 +02:00
"timerOption_1_hour_abbreviated": {
"message": "1h",
"description": "Very short format indicating current timer setting in the conversation header"
2017-04-16 08:51:10 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_6_hours_abbreviated": {
"message": "6h",
2016-10-08 16:40:13 +02:00
"description": "Very short format indicating current timer setting in the conversation header"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_12_hours_abbreviated": {
"message": "12h",
"description": "Very short format indicating current timer setting in the conversation header"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_1_day_abbreviated": {
"message": "1d",
"description": "Very short format indicating current timer setting in the conversation header"
2018-07-21 01:30:56 +02:00
},
2018-08-31 22:50:28 +02:00
"timerOption_1_week_abbreviated": {
"message": "1w",
"description": "Very short format indicating current timer setting in the conversation header"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"disappearingMessagesDisabled": {
"message": "Disappearing messages disabled",
"description": "Displayed in the left pane when the timer is turned off"
},
2018-08-31 22:50:28 +02:00
"disabledDisappearingMessages": {
"message": "$name$ disabled disappearing messages",
"description": "Displayed in the conversation list when the timer is turned off",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "John"
}
}
},
2018-08-31 22:50:28 +02:00
"youDisabledDisappearingMessages": {
"message": "You disabled disappearing messages",
"description": "Displayed in the conversation list when the timer is turned off"
2018-05-02 18:29:36 +02:00
},
2018-08-31 22:50:28 +02:00
"timerSetTo": {
"message": "Timer set to $time$",
"description": "Displayed in the conversation list when the timer is updated by some automatic action, or in the left pane",
"placeholders": {
2018-08-31 22:50:28 +02:00
"time": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "1w"
}
}
},
2018-08-31 22:50:28 +02:00
"safetyNumberChanged": {
"message": "Safety Number has changed",
"description": "A notification shown in the conversation when a contact reinstalls"
},
2018-08-31 22:50:28 +02:00
"safetyNumberChangedGroup": {
"message": "Safety Number with $name$ has changed",
"description": "A notification shown in a group conversation when a contact reinstalls, showing the contact name",
"placeholders": {
"name": {
"content": "$1",
"example": "John"
}
}
},
2018-08-31 22:50:28 +02:00
"verifyNewNumber": {
"message": "Verify Safety Number",
"description": "Label on button included with safety number change notification in the conversation"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"yourSafetyNumberWith": {
"message": "Your safety number with $name$:",
"description": "Heading for safety number view",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "John"
}
}
2016-10-07 12:13:47 +02:00
},
2019-04-08 23:16:09 +02:00
"noteToSelf": {
"message": "Note to Self",
"description": "Name for the conversation with your own phone number"
},
2018-08-31 22:50:28 +02:00
"startConversation": {
2019-04-08 23:16:09 +02:00
"message": "Start new conversation…",
2018-08-31 22:50:28 +02:00
"description": "Label underneath number a user enters that is not an existing contact"
2016-10-07 12:13:47 +02:00
},
2018-08-31 22:50:28 +02:00
"invalidNumberError": {
"message": "Invalid number",
"description": "When a person inputs a number that is invalid"
},
2018-08-31 22:50:28 +02:00
"autoUpdateNewVersionTitle": {
2020-03-05 05:30:19 +01:00
"message": "Session update available",
"description": ""
},
2018-08-31 22:50:28 +02:00
"autoUpdateNewVersionMessage": {
2020-03-05 05:30:19 +01:00
"message": "There is a new version of Session available.",
"description": ""
},
2018-08-31 22:50:28 +02:00
"autoUpdateNewVersionInstructions": {
2020-03-05 05:30:19 +01:00
"message": "Press Restart Session to apply the updates.",
2016-02-22 23:27:51 +01:00
"description": ""
},
2018-08-31 22:50:28 +02:00
"autoUpdateRestartButtonLabel": {
2020-03-05 05:30:19 +01:00
"message": "Restart Session",
2018-08-31 22:50:28 +02:00
"description": ""
},
2018-08-31 22:50:28 +02:00
"autoUpdateLaterButtonLabel": {
"message": "Later",
"description": ""
},
2018-08-31 22:50:28 +02:00
"leftTheGroup": {
"message": "$name$ left the group",
"description": "Shown in the conversation history when a single person leaves the group",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"multipleLeftTheGroup": {
"message": "$name$ left the group",
"description": "Shown in the conversation history when multiple people leave the group",
"placeholders": {
"name": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Alice, Bob"
}
}
},
2018-08-31 22:50:28 +02:00
"updatedTheGroup": {
"message": "Group updated",
"description": "Shown in the conversation history when someone updates the group"
2018-07-18 19:47:58 +02:00
},
2018-08-31 22:50:28 +02:00
"titleIsNow": {
2020-02-05 04:19:01 +01:00
"message": "Group name has been set to '$name$'",
2018-08-31 22:50:28 +02:00
"description": "Shown in the conversation history when someone changes the title of the group",
2016-10-07 12:13:47 +02:00
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
2016-10-07 12:13:47 +02:00
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Book Club"
2016-10-07 12:13:47 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"joinedTheGroup": {
"message": "$name$ joined the group",
"description": "Shown in the conversation history when a single person joins the group",
2018-07-18 19:47:58 +02:00
"placeholders": {
2018-08-31 22:50:28 +02:00
"name": {
2018-07-18 19:47:58 +02:00
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Alice"
2018-07-18 19:47:58 +02:00
}
}
},
2018-08-31 22:50:28 +02:00
"multipleJoinedTheGroup": {
"message": "$names$ joined the group",
"description": "Shown in the conversation history when more than one person joins the group",
"placeholders": {
2018-08-31 22:50:28 +02:00
"names": {
"content": "$1",
2018-08-31 22:50:28 +02:00
"example": "Alice, Bob"
}
}
}
}