Compare commits

...

10 Commits
main ... 5.39.x

Author SHA1 Message Date
Josh Perez b94fb7078c v5.39.0 2022-04-14 14:25:34 -04:00
Josh Perez b1b5f39922 Updates translations 2022-04-13 19:08:43 -04:00
automated-signal 2c81afc81a
Support search for E164 without candidate contacts
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-13 15:14:49 -07:00
automated-signal 9d03d164e1
Don't apply custom color style if message is deleted for everyone
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2022-04-13 13:11:58 -07:00
automated-signal 38f8f497ee
Batch storage item read requests
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-13 08:39:54 -07:00
automated-signal 28f7ed09c0
Fix spurious assert in groups.ts
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-11 17:26:41 -07:00
automated-signal e3d1c84647
Graceful handling of single-range diff download
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-08 10:03:34 -07:00
automated-signal 35bddbfb85
ProfileEditor: Fix updating non-avatar with no avatar
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2022-04-08 10:02:53 -07:00
automated-signal a6e81ed618
Use different commit of better-sqlite3
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-07 17:42:28 -07:00
automated-signal a6e8dd2c09
Update better-sqlite3
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-04-07 16:25:59 -07:00
87 changed files with 4526 additions and 1251 deletions

View File

@ -460,21 +460,25 @@
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
},
"debugLogExplanation": {
"message": "This log will be posted publicly online for contributors to view. You may download the full log before submitting.",
"description": ""
"message": "When you click Submit, your log will be posted online for 30 days at a unique, unpublished URL. You may Save it locally first.",
"description": "Description of what will happen with your debug log"
},
"debugLogError": {
"message": "Something went wrong with the upload! Please email support@signal.org and attach your log as a text file.",
"description": ""
"description": "Error message a recommendations if debug log upload fails"
},
"debugLogSuccess": {
"message": "Debug log submitted",
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "Debug log uploaded. When you contact support, copy the link below and attach it along with a description of the problem you saw and steps to reproduce it.",
"message": "Debug log uploaded. When you contact support, copy the URL below and attach it along with a description of the problem you saw and steps to reproduce it.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... to see the full log, click Save",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
"message": "Kopieer skakel",
"description": "Shown as the text for the copy button on the debug log screen"
@ -828,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -962,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Stemboodskappe is beperk tot vyf minute. Opname sal ophou as jy oorskakel na 'n ander app.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1061,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop is waarskynlik in 'n macOS-kwarantyn en sal nie outomaties kan opdateer nie. Probeer met Finder na $app$ skuif na $folder$.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2379,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2389,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choose members",
"description": "The title for the 'choose group members' left pane screen"
@ -4103,6 +4149,14 @@
"message": "Hierdie groepskakel is nie meer geldig nie.",
"description": "Shown if you click a group link and we can't get information about it"
},
"GroupV2--join--link-forbidden--title": {
"message": "Cant Join Group",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--link-forbidden": {
"message": "You can't join this group via the group link because an admin removed you.",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--prompt-with-approval": {
"message": "An admin of this group must approve your request before you can join this group. If approved, your name and photo will be shared with its members.",
"description": "Shown when you click on a group link to confirm, if it requires admin approval"
@ -5137,6 +5191,30 @@
}
}
},
"GroupV2--admin-approval-bounce--one": {
"message": "$joinerName$ requested and cancelled their request to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
}
}
},
"GroupV2--admin-approval-bounce": {
"message": "$joinerName$ requested and cancelled $numberOfRequests$ requests to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
},
"numberOfRequests": {
"content": "$1",
"example": "3"
}
}
},
"GroupV2--group-link-add--disabled--you": {
"message": "U het die groepskakel met beheerdergoedkeuring gedeaktiveer.",
"description": "Shown in timeline or conversation preview when v2 group changes"
@ -5713,6 +5791,16 @@
}
}
},
"PendingRequests--deny-for--with-link": {
"message": "Deny request from \"$name$\"? They will not be able to request to join via the group link again.",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
"content": "$1",
"example": "Meowsy Purrington"
}
}
},
"PendingInvites--invites": {
"message": "Deur u genooi",
"description": "This is the title list of all invites"
@ -5803,6 +5891,28 @@
"message": "Details oor mense wat na die groep genooi is sal eers vertoon wanneer hulle aansluit. Genooides sal slegs boodskappe sien wanneer hulle by die groep aansluit.",
"description": "Information shown below the invite list"
},
"PendingRequests--block--button": {
"message": "Block request",
"description": "Shown in timeline if users cancel their request to join a group via a group link"
},
"PendingRequests--block--title": {
"message": "Block request?",
"description": "Title of dialog to block a user from requesting to join via the link again"
},
"PendingRequests--block--contents": {
"message": "$name$ will not be able to join or request to join this group via the group link. They can still be added to the group manually.",
"description": "Details of dialog to block a user from requesting to join via the link again",
"placeholders": {
"name": {
"content": "$1",
"example": "Annoying Person"
}
}
},
"PendingRequests--block--confirm": {
"message": "Block Request",
"description": "Confirmation button of dialog to block a user from requesting to join via the link again"
},
"AvatarInput--no-photo-label--group": {
"message": "Voeg n groepfoto toe",
"description": "The label for the avatar uploader when no group photo is selected"
@ -6095,6 +6205,16 @@
}
}
},
"RemoveGroupMemberConfirmation__description__with-link": {
"message": "Remove \"$name$\" from the group? They will not be able to rejoin via the group link.",
"description": "When confirming the removal of a group member, show this text in the dialog",
"placeholders": {
"name": {
"content": "$1",
"example": "Jane Doe"
}
}
},
"CaptchaDialog__title": {
"message": "Verifieer om voort te klets",
"description": "Header in the captcha dialog"
@ -6935,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Wat is nuut",
"description": "Title for the whats new modal"
@ -6943,22 +7071,6 @@
"message": "Hierdie weergawe bevat n aantal klein aanpassings en regstellings om Signal glad te laat werk.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.34--1": {
"message": "Ever used Signal while on an unstable connection? You can worry no more - disappearing message timer changes and more will now be sent out once your Wi-Fi feels better again.",
"description": "Release notes for v5.34"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -6967,8 +7079,20 @@
"message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.36--3": {
"message": "Thanks to our volunteer translators, we've added support for Scottish Gaelic!",
"description": "Release notes for v5.36"
"WhatsNew__v5.37--1": {
"message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -416,7 +416,7 @@
"description": "Shown on confirmation dialog when user attempts to send a message"
},
"safetyNumberChangeDialog__pending-messages": {
"message": "Send pending messages",
"message": "إرسال الرسائل قيد الانتظار",
"description": "Shown on confirmation dialog when user attempts to send a message in the outbox"
},
"identityKeyErrorOnSend": {
@ -460,7 +460,7 @@
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
},
"debugLogExplanation": {
"message": "When you click Submit, your log will be posted online for 30 days at a unique, unpublished URL. You may Save it locally first.",
"message": "‫عند ضغطك على زر الإرسال، سوف يُنشَر السجلّ على الانترنت لمدة 30 يوما، في عنوان فريد, يمكنك حفظه محليا أولا.",
"description": "Description of what will happen with your debug log"
},
"debugLogError": {
@ -472,11 +472,11 @@
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "Debug log uploaded. When you contact support, copy the URL below and attach it along with a description of the problem you saw and steps to reproduce it.",
"message": "‫لقد رُفع سِجل التصحيح. عند اتصالك بالدعم، يُرجى نسخ العنوان أسفله ثم إرفاقه مع شرح المشكل الذي رأيته وكذا الخطوات التي أدت إلى حدوثه.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... to see the full log, click Save",
"message": "للاطلاع على السجلّ بالكامل، يُرجى الضغط على الحفظ",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "البحث باسم المستخدم",
"description": "Shown to separate the types of search results"
"message": "العثور عبر اسم المستخدم",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "العثور عبر رقم الهاتف",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "الرسائل الصوتية لها حد أقصى هو خمس دقائق. سيتوقف التسجيل إن انتقلت إلى تطبيق آخر.",
"message": "إن الرسائل الصوتية محددة في ساعة واحدة. سوف يتوقف التسجيل إذا انتقلت إلى تطبيق آخر.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "لقد تعذر تحديث Signal. يُرجى زيارة $url$ لتثبيته يدويا. ثم $support$ حول هذه المشكلة",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "من المحتمل أن يكون Signal Desktop في وحدة عزل نظام اشتغال ماك، لذا لن يكون قادرا على التحديث التلقائي. يُرجى محاولة نقل $app$ إلى $folder$ باستخدام برنامج « فايندر » (مدير الملفات).",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -1206,7 +1224,7 @@
"description": "Shown on the drop-down menu for an individual message, but only if it is an outgoing message that failed to send"
},
"retryDeleteForEveryone": {
"message": "Retry Delete for Everyone",
"message": "إعادة محاولة الحذف للجميع",
"description": "Shown on the drop-down menu for an individual message, but only if a previous delete for everyone failed to send"
},
"forwardMessage": {
@ -2028,7 +2046,7 @@
"description": "Shown on outgoing message if it fails to send"
},
"deleteFailed": {
"message": "Delete failed",
"message": "فشل الحذف",
"description": "Shown on a message which was deleted for everyone if the delete wasn't successfully sent to anyone"
},
"sendPaused": {
@ -2040,7 +2058,7 @@
"description": "Shown on outgoing message if it is partially sent"
},
"partiallyDeleted": {
"message": "Partially deleted, click to retry",
"message": "حُذفَت جزئيا، يُرجى الضغط لإعادة المحاولة.",
"description": "Shown on a message which was deleted for everyone if the delete wasn't successfully sent to everyone"
},
"showMore": {
@ -2383,6 +2401,10 @@
"message": "فشل إحضار اسم المستخدم هذا. تفقّد اتصال شبكتك وحاول مرة أخرى.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "‫لقد فشل جلب رقم الهاتف. يُرجى التأكد من اتصالك ثم المحاولة مرة أخرى.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "المستخدم غير موجود. $atUsername$ لا يستخدم Signal. تأكّد من إدخال اسم المستخدم بالكامل.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "‫لم يعثر على المستخدم. إن « $phoneNumber$ » ليس مستخدما لـ Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "‫لم يعثر على المستخدم. إن « $phoneNumber$ » ليس رقم هاتف صحيح.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "اختر الأعضاء",
"description": "The title for the 'choose group members' left pane screen"
@ -2518,7 +2560,7 @@
"description": ""
},
"downloadFullNewVersionMessage": {
"message": "Signal couldnt update. Click to try again.",
"message": "‫لم يتمكن Signal من التحديث. يُرجى الضغط للمحاولة مرة أخرى.",
"description": "Shown in update dialog when partial update fails and we have to ask user to download full update"
},
"autoUpdateNewVersionInstructions": {
@ -5850,7 +5892,7 @@
"description": "Information shown below the invite list"
},
"PendingRequests--block--button": {
"message": "Block request",
"message": "حظر الطلب",
"description": "Shown in timeline if users cancel their request to join a group via a group link"
},
"PendingRequests--block--title": {
@ -5868,7 +5910,7 @@
}
},
"PendingRequests--block--confirm": {
"message": "Block Request",
"message": "حظر الطلب",
"description": "Confirmation button of dialog to block a user from requesting to join via the link again"
},
"AvatarInput--no-photo-label--group": {
@ -6874,19 +6916,19 @@
"description": "Title for the my stories list"
},
"MyStories__story": {
"message": "Your story",
"message": "قصتك",
"description": "aria-label for each one of your stories"
},
"MyStories__download": {
"message": "Download story",
"message": "تنزيل القصة",
"description": "aria-label for the download button"
},
"MyStories__more": {
"message": "More options",
"message": "خيارات أكثر",
"description": "aria-label for the more button"
},
"MyStories__views--singular": {
"message": "$num$ view",
"message": "$num$ مشاهدة",
"description": "Number of views your story has",
"placeholders": {
"num": {
@ -6896,7 +6938,7 @@
}
},
"MyStories__views--plural": {
"message": "$num$ views",
"message": "$num$ مشاهدات",
"description": "Number of views your story has",
"placeholders": {
"num": {
@ -6906,7 +6948,7 @@
}
},
"MyStories__replies--singular": {
"message": "$num$ reply",
"message": "$num$ رد",
"description": "Number of replies your story has",
"placeholders": {
"num": {
@ -6916,7 +6958,7 @@
}
},
"MyStories__replies--plural": {
"message": "$num$ replies",
"message": "$num$ ردود",
"description": "Number of replies your story has",
"placeholders": {
"num": {
@ -6926,7 +6968,7 @@
}
},
"MyStories__delete": {
"message": "Delete this story? It will also be deleted for everyone who received it.",
"message": "‫حذف هذه القصة ؟ سوف تُحذَف أيضا من عن جميع من استلموها.",
"description": "Confirmation dialog description text for deleting a story"
},
"Stories__title": {
@ -6942,15 +6984,15 @@
"description": "Description hint to add a story"
},
"Stories__list-empty": {
"message": "No recent stories to show right now",
"message": "لا توجد قصص حديثة للمشاهدة حاليا",
"description": "Description for when there are no stories to show"
},
"Stories__placeholder--text": {
"message": "Click to view a story",
"message": "يُرجى الضغط لمشاهدة قصة",
"description": "Placeholder label for the story view"
},
"Stories__from-to-group": {
"message": "$name$ to $group$",
"message": "‫من $name$ إلى $group$",
"description": "Title for someone sending a story to a group",
"placeholders": {
"name": {
@ -6968,7 +7010,7 @@
"description": "Button label to reply to a story"
},
"StoryViewsNRepliesModal__placeholder": {
"message": "Type a reply...",
"message": "‫يُرجى كتابة رد...",
"description": "Placeholder text for the story reply modal"
},
"StoryViewsNRepliesModal__tab--views": {
@ -6980,7 +7022,7 @@
"description": "Title for replies tab"
},
"StoryViewsNRepliesModal__react": {
"message": "React to story",
"message": "التفاعل مع القصة",
"description": "aria-label for reaction button"
},
"StoryViewsNRepliesModal__reacted": {
@ -6988,7 +7030,7 @@
"description": "Description of someone reacting to a story"
},
"StoryListItem__label": {
"message": "Story",
"message": "القصص",
"description": "aria-label for the story list button"
},
"StoryListItem__hide": {
@ -6996,11 +7038,11 @@
"description": "Label for menu item to hide the story"
},
"StoryListItem__go-to-chat": {
"message": "Go to chat",
"message": "الذهاب للمحادثة",
"description": "Label for menu item to go to conversation"
},
"StoryListItem__hide-modal--body": {
"message": "Hide story? New story updates from $name$ wont appear at the top of the stories list anymore.",
"message": "‫إخفاء القصة ؟ إن تحديثات القصة من المستخدم $name$ لن تظهر في أعلى لائحة القصص بعد ذلك.",
"description": "Body for the confirmation dialog for hiding a story"
},
"StoryListItem__hide-modal--confirm": {
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "هناك خطأ في عرض الصورة",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "زيارة الرابط",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "ما الجديد",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "يحتوي هذا الإصدار على عدد من التعديلات الصغيرة وإصلاحات الأخطاء للحفاظ على تشغيل Signal بسلاسة.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "İstifadəçi adına görə tap",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Telefon nömrəsinə görə tap",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Səsyazmalı mesajların limiti beş dəqiqədir. Başqa bir tətbiqə keçsəniz, səsyazma dayandırılacaq.",
"message": "Səsyazmalı mesajlar bir saatla limitlidir. Başqa bir tətbiqə keçsəniz, səsyazma dayandırılacaq.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal yenilənə bilmədi. Əllə quraşdırmaq üçün $url$ ünvanını ziyarət edin. Daha sonra bu problem barədə $support$",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Masaüstü, böyük ehtimalla macOS karantinindədir və avtomatik yenilənə bilməyəcək. Zəhmət olmasa Finder ilə $app$ tətbiqini $folder$ qovluğuna köçürün.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "İstifadəçi adı alma uğursuz oldu. Bağlantınızı yoxlayıb yenidən sınayın.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Telefon nömrəsini alma uğursuz oldu. Bağlantınızı yoxlayıb yenidən sınayın.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "İstifadəçi tapılmadı. $atUsername$, bir Signal istifadəçisi deyil; tam istifadəçi adını daxil etdiyinizə əmin olun.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "İstifadəçi tapılmadı. \"$phoneNumber$\", bir Signal istifadəçisi deyil.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "İstifadəçi tapılmadı. \"$phoneNumber$\", etibarlı bir telefon nömrəsi deyil.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Üzvləri seç",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Təsvirin görüntülənmə xətası",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Dəvət bağlantısı",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Yeni nə var",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Bu versiya, Signal-ın problemsiz işləməsini təmin etmək üçün kiçik düzəltmələr və xəta düzəltmələri ehtiva edir.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Ən son yeniləmə sistemi təqdim edildi və arıtq növbəti yeniləmələr üçün kiçik yeniləmələr olacaq.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Signal artıq medi düymələri saxlamır.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Yapon dostlarımız üçün daha yaxşı şrift dəstəyi.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Bu qrup söhbəti cəld skan edilsin? Ekranda eyni anda daha çox mesaj üçün daha çox otaq var. Artıq göndərənin mesajlarını əgər vaxt baxımından yaxındırsa birlikdə qruplaşdırırıq.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Əskik stiker paketlər geri qayıtdı! Artıq Masaüstü versiya, telefonunuzun bacara bildiyi bütün stiker paketlərini ələ ala bilməlidir!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Artıq insanları, onların telefon nömrələrini istifadə edərək qruplara əlavə edə bilərsiniz.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Artıq sevimli əlaqələriniz sadəcə klaviaturadakı bir neçə toxunuş qədər yaxındır. Əlaqə axtarışı artıq Kiril kimi Latin olmayan əlifbaları da dəstəkləyir.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Гласовите съобщения имат лимит от 5 минути. Записването ще бъде спряно, ако отворите друго приложение.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Вероятно Signal Desktop е в macOS устройство с права за четене и няма да може да се самообновява. Опитайте се да преместите $app$ към $folder$ с помощта на Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Избери членове",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "ব্যবহারকারীর নাম দ্বারা খুঁজুন",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ভয়েস মেসেজগুলি পাঁচ মিনিট পর্যন্ত রেকর্ড করা যাবে। আপনি আরেকটি অ্যাপে চলে গেলে রেকর্ডিং থেমে যাবে।",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal ডেস্কটপ সম্ভবত macOS কোয়ারেন্টিনে আছে এবং স্বয়ংক্রিয়ভাবে আপডেট হবে না। অনুগ্রহ করে Finder-এর সাহায্যে $app$-কে $folder$-এ সরানোর চেষ্টা করুন।",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "ব্যবহারকারীর নাম আনতে ব্যর্থ হয়েছে। আপনার সংযোগ পরীক্ষা করুন এবং আবার চেষ্টা করুন।",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "ব্যবহারকারী খুঁজে পাওয়া যায় না। $atUsername$ একজন সিগন্যাল ব্যবহারকারী নয়; নিশ্চিত করুন যে আপনি সম্পূর্ণ ব্যবহারকারীর নাম প্রবেশ করেছেন।",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "সদস্যকে বেছে নিন",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "নতুন কি",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "সিগন্যালকে মসৃণভাবে চলমান রাখতে এই সংস্করণে অনেকগুলি ছোটখাট পরিবর্তন রয়েছে এবং বাগ সংশোধন করা হয়েছে।",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Troba per nom d'usuari",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Els missatges de veu estan limitats a cinc minuts. La gravació s'interromprà si canvieu a una altra aplicació.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "El Signal Desktop es troba probablement en una quarentena de macOS i no es podrà actualitzar automàticament. Proveu de moure $app$ a $folder$ amb el Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "No s'ha pogut obtenir el nom d'usuari. Comproveu la connexió i torneu-ho a provar.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Usuari no trobat. $atUsername$ no és un usuari del Signal; assegureu-vos que heu introduït el nom d'usuari complet.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Trieu-ne els membres",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Error en mostrar la imatge",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Obre l'enllaç",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Què hi ha de nou",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Aquesta versió conté una sèrie de petites modificacions i correccions d'errors per tal que el Signal funcioni sense problemes.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "S'ha introduït un nou sistema d'actualització i la gent hauria de començar a veure actualitzacions més petites amb la propera actualització.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Les aplicacions que usen tecles multimèdia s'alegren! El Signal ja no hi té cap control.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Millor suport de tipus de lletra per als nostres amics japonesos.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Voleu mirar ràpidament aquesta conversa de grup? Hi ha més espai per a més missatges a la pantalla alhora. Ara agrupem els missatges del remitent si estan a prop en el temps.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Falten paquets d'adhesius! Ara l'escriptori hauria de poder gestionar els mateixos paquets d'adhesius que el telèfon!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Najít podle uživatelského jména",
"description": "Shown to separate the types of search results"
"message": "Najít pomocí uživatelského jména",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Najít pomocí telefonního čísla",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Nahrávání zvukové zprávy je limitováno délkou pěti minut. Nahrávání se ukončí, pokud se přepnete do jiné aplikace.",
"message": "Hlasové zprávy jsou omezeny na jednu hodinu. Nahrávání se zastaví, pokud přepnete na jinou aplikaci.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal se nepodařilo aktualizovat. Navštivte $url$ pro manuální instalaci. A pak o problému napište na $support$.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop je pravděpodobně v karanténě macOS a nebude schopen se sám aktualizovat. Zkuste přesunout $app$ do $folder$ pomocí aplikace Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nepodařilo se načíst uživatelské jméno. Zkontrolujte připojení a zkuste to znovu.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Nepodařilo se načíst telefonní číslo. Zkontrolujte připojení a zkuste to znovu.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Uživatel nenalezen. $atUsername$ není Signal uživatelem; ujistěte se, že jste zadali kompletní uživatelské jméno.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Uživatel nenalezen. \"$phoneNumber$\" není uživatel Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Uživatel nenalezen. \"$phoneNumber$\" není platné telefonní číslo.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Zvolte členy",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Chyba při zobrazování obrázku",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Navštívit odkaz",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Co je nového",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Tato verze obsahuje řadu drobných úprav a oprav chyb, aby Signal fungoval hladce.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Byl zaveden nový systém aktualizací a s příští aktualizací by se měly začít objevovat menší aktualizace.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Aplikace, které používají multimediální klávesy, se radují! Signál už na ně nemá vliv.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Lepší podpora písma pro naše japonské přátele.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Chcete jen prolétnout skupinový chat? Na obrazovce je více místa pro více zpráv najednou. Zprávy odesílatele nyní seskupujeme, pokud jsou časově blízko u sebe.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Chybějící balíčky samolepek jsou pryč! Počítač by nyní měl zvládnout všechny balíčky nálepek, které zvládne váš telefon!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Nyní můžete přidávat lidi do skupin pomocí jejich telefonního čísla.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Vaše oblíbené kontakty jsou nyní vzdálené jen několik stisknutí kláves. Vyhledávání kontaktů nyní podporuje jiné než latinské abecedy, například cyrilici.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Canfod yn ôl Enw Defnyddiwr",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Mae negeseuon llais wedi'u cyfyngu i bum munud. Bydd recordio yn dod i ben os byddwch chi'n newid i ap arall.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Mae Signal Desktop yn debygol o fod yng nghwarantin macOS, ac ni fydd yn gallu diweddaru ei hun. Ceisiwch symud $app$ i $folder$ gyda Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Wedi methu estyn enw defnyddiwr. Gwiriwch eich cysylltiad a rhoi cynnig arall arni.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Heb ganfod y defnyddiwr. Nid yw $atUsername$ yn ddefnyddiwr Signal; gwnewch yn siŵr eich bod wedi rhoi'r enw defnyddiwr llawn.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Dewis aelodau",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Gwall wrth ddangos delwedd",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Ymweld â'r ddolen",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Be sy'n Newydd",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Mae'r fersiwn hon yn cynnwys nifer o drydariadau bach a chywiriadau gwallau i gadw Signal yn rhedeg yn llyfn.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Mae system diweddaru newydd wedi ei gyflyno a dylech chi fod yn gweld diweddariadau llai gyda'r diweddariad nesaf.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Bydd apiau sy'n defnyddio bysellau cyfryngau yn hapus! Does gan Signal ddim gafael arnyn nhw bellach.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Gwell cefnogaeth ffontiau i'n ffrindiau Japaneaidd.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Sganio'r sgwrs grŵp honno'n gyflym? Mae mwy o le i fwy o negeseuon ar y sgrin ar unwaith. Rydyn ni nawr yn grwpio negeseuon anfonwr gyda'i gilydd os ydyn nhw'n agos at ei gilydd o fewn cyfnod amser.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Diwedd ar becynnau sticer coll! Dylai Desktop nawr allu trin yr holl becynnau sticeri y gall eich ffôn!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -1,6 +1,6 @@
{
"softwareAcknowledgments": {
"message": "Software anerkendelser",
"message": "Software-anerkendelser",
"description": "Shown in the about box for the link to software acknowledgments"
},
"privacyPolicy": {
@ -12,7 +12,7 @@
"description": "Shown in the top-level error popup, allowing user to copy the error text and close the app"
},
"unknownContact": {
"message": "Ukendt kontaktperson",
"message": "Ukendt kontakt",
"description": "Shown as the name of a contact if we don't have any displayable information about them"
},
"unknownGroup": {
@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find via brugernavn",
"description": "Shown to separate the types of search results"
"message": "Find ud fra brugernavn",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find ud fra telefonnummer",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Talebeskeder er begrænset til fem minutter. Optagelsen stopper, hvis du skifter til en anden app.",
"message": "Talebeskeder er begrænset til én time. Optagelsen stopper, hvis du skifter til en anden app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal kunne ikke opdatere. Besøg $url$ for at installere den manuelt. Dernæst, $support$ om dette problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop findes sandsynligvis i en macOS-karantæne og vil ikke være i stand til automatisk at opdatere. Prøv at flytte $app$ til $folder$ med Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Kunne ikke hente brugernavn. Kontroller din forbindelse og prøv igen.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Det lykkedes ikke at hente telefonnummer. Kontroller din forbindelse, og prøv igen.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Bruger ikke fundet. $atUsername$ er ikke en Signal-bruger; sørg for, at du har indtastet det fulde brugernavn.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Bruger ikke fundet. \"$phoneNumber$\" er ikke en Signal-bruger.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Bruger ikke fundet. \"$phoneNumber$\" er ikke et gyldigt telefonnummer.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Vælg medlemmer",
"description": "The title for the 'choose group members' left pane screen"
@ -2642,7 +2684,7 @@
}
},
"ConversationListItem--message-request": {
"message": "Besked forespørgsel",
"message": "Beskedanmodning",
"description": "Preview shown for conversation if the user has not yet accepted an incoming message request"
},
"ConversationListItem--draft-prefix": {
@ -3724,11 +3766,11 @@
"description": "Shown in conversation history when you accepted an incoming video call"
},
"missedIncomingAudioCall": {
"message": "Mistet lydopkald",
"message": "Ubesvaret lydopkald",
"description": "Shown in conversation history when you missed an incoming audio call"
},
"missedIncomingVideoCall": {
"message": "Mistet videoopkald",
"message": "Ubesvaret videoopkald",
"description": "Shown in conversation history when you missed an incoming video call"
},
"acceptedOutgoingAudioCall": {
@ -4128,7 +4170,7 @@
"description": "The button to join the group, if approval is required"
},
"GroupV2--join--cancel-request-to-join": {
"message": "Annullér forespørgsel",
"message": "Annullér anmodning",
"description": "The button to cancel request to join the group"
},
"GroupV2--join--cancel-request-to-join--confirmation": {
@ -6116,7 +6158,7 @@
"description": "Description for the contact spoofing review dialog"
},
"ContactSpoofingReviewDialog__possibly-unsafe-title": {
"message": "Forespørgsel",
"message": "Anmodning",
"description": "Header in the contact spoofing review dialog, shown above the potentially-unsafe user"
},
"ContactSpoofingReviewDialog__safe-title": {
@ -7017,6 +7059,10 @@
"message": "Fejl ved visning af billede",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Besøg link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Nyheder",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Denne version indeholder en række småjusteringer og fejlrettelser som sikrer, at Signal kører problemfrit.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Der er blevet indført et nyt opdateringssystem, og folk burde begynde at se mindre opdateringer med den næste opdatering.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applikationer, der bruger medieknapper, kan glæde sig! Signal har ikke længere magten over dem.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Bedre understøttelse af skrifttyper for vores japanske venner.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Scanner du hurtigt en gruppesamtale? Der er mere plads til flere beskeder på skærmen på én gang. Vi grupperer nu afsenders beskeder sammen, hvis de ligger tæt på hinanden i tid.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Slut med manglende klistermærkepakker! Desktop burde nu kunne håndtere alle de samme klistermærkepakker, som din telefon kan!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Du kan nu tilføje personer til grupper ved blot at bruge deres telefonnummer.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Dine foretrukne kontakter er nu kun et par tastetryk væk. Kontaktsøgning understøtter nu ikke-latinske alfabeter såsom kyrillisk.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Nach Nutzernamen suchen",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Nach Rufnummer suchen",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Die maximale Dauer von Sprachnachrichten ist auf 5 Minuten begrenzt. Die Aufnahme stoppt, wenn du zu einer anderen App wechselst.",
"message": "Sprachnachrichten sind auf eine Stunde begrenzt. Die Aufnahme stoppt, sobald du zu einer anderen App wechselst.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal konnte nicht aktualisiert werden. Besuche $url$, um es manuell zu installieren. Kontaktiere danach $support$ hinsichtlich dieses Problems.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "macOS hat Signal Desktop vermutlich unter Dateiquarantäne gestellt und kann daher nicht automatisch aktualisiert werden. Bitte versuche mit Finder, $app$ in den Ordner $folder$ zu verschieben.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nutzername konnte nicht abgerufen werden. Überprüfe deine Internetverbindung und versuche es erneut.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Rufnummer konnte nicht abgerufen werden. Überprüfe deine Internetverbindung und versuche es erneut.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Nutzername nicht gefunden. $atUsername$ ist kein Signal-Nutzer. Achte darauf, dass du den vollständigen Nutzernamen eingegeben hast.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Nutzer nicht gefunden. »$phoneNumber$« ist kein Signal-Nutzer.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Nutzer nicht gefunden. »$phoneNumber$« ist keine gültige Rufnummer.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Mitglieder auswählen",
"description": "The title for the 'choose group members' left pane screen"
@ -5750,7 +5792,7 @@
}
},
"PendingRequests--deny-for--with-link": {
"message": "Beitrittsanfrage von »$name$« ablehnen? Eine erneute Beitrittsanfrage über den Gruppenlink ist dann nicht mehr möglich.",
"message": "Beitrittsanfrage von $name$ ablehnen? Eine erneute Beitrittsanfrage über den Gruppenlink ist dann nicht mehr möglich.",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
@ -6996,7 +7038,7 @@
"description": "Label for menu item to hide the story"
},
"StoryListItem__go-to-chat": {
"message": "Zu den Unterhaltungen gehen",
"message": "Zur Unterhaltung",
"description": "Label for menu item to go to conversation"
},
"StoryListItem__hide-modal--body": {
@ -7017,6 +7059,10 @@
"message": "Fehler bei Bildanzeige",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Link aufrufen",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Was ist neu",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Diese Version enthält eine Reihe kleinerer Optimierungen und Fehlerbehebungen, damit Signal weiterhin reibungslos funktioniert.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Ein neues Aktualisierungssystem wurde eingefügt und daher werden folgende Aktualisierungen kleiner sein.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Anwendungen, die Medientasten verwenden, können sich freuen! Signal hat keinen Einfluss mehr auf sie.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Verbesserte Zeichensatzunterstützung für unsere japanischen Freunde.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Schnell diese Gruppenunterhaltung überfliegen? Es gibt nun mehr Platz für mehr Nachrichten auf dem Bildschirm. Wir gruppieren nun Nachrichten des Absenders, wenn diese zeitlich zusammenliegen.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Hinfort mit den fehlenden Sticker-Sets! Desktop sollte nun in der Lage sein, mit allen von deinem Telefon unterstützten Sticker-Sets umzugehen!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Du kannst nun über deren Rufnummer Personen zu Gruppen hinzufügen.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Deine Lieblingskontakte sind jetzt nur noch einige Tastenanschläge entfernt. Die Kontaktsuche unterstützt nun nicht-lateinische Alphabete wie Kyrillisch.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Αναζήτηση με όνομα χρήστη",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Τα μηνύματα φωνής έχουν χρονικό όριο 5 λεπτών. Η ηχογράφηση θα σταματήσει αν πας σε άλλη εφαρμογή.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Το Signal Desktop μάλλον βρίσκεται σε καραντίνα του macOS, και δεν θα μπορέσει να αναβαθμιστεί αυτόματα. Παρακαλώ προσπάθησε να μετακινήσεις το $app$ στο $folder$ με το Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Αποτυχία λήψης ονόματος χρήστη. Έλεγξε τη σύνδεσή σου και δοκίμασε ξανά.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Δεν βρέθηκε ο χρήστης. Ο/Η $atUsername$ δεν είναι χρήστης/τρια του Signal, επιβεβαίωσε πως έχεις γράψει ολόκληρο το όνομα χρήστη.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Επιλογή μελών",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Σφάλμα κατά τη προβολή αυτής της εικόνας",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Επίσκεψη συνδέσμου",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Νέες δυνατότητες",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Αυτή η έκδοση περιλαμβάνει διάφορες μικρές βελτιώσεις και αποσφαλματώσεις για να συνεχίσει το Signal να λειτουργεί ομαλά.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Καλύτερη υποστήριξη γραμματοσειρών για τα Ιαπωνέζικα.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Trovi per uzantnomo",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Trovi per telefonnumero",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Voĉa mesaĝo povas esti longaj je 5 minutoj. Registrado haltos, se vi aliras alian aplikaĵon.",
"message": "Voĉaj mesaĝoj povas esti longaj je 1 horo. Registrado haltos, se vi aliras alian aplikaĵon.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal ne povis ĝisdatiĝi. Iru al $url$ por instali ĝin permane. Poste, $support$ pri la problemo.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop probable estas en macOS-kvaranteno kaj ne eblos ĝisdatiĝi. Provu movi „ $app$“ al „ $folder$“ pere de Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Malsukceso dum akiro de uzantnomo. Kontrolu la retkonekton, kaj provu ree.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Malsukceso dum akiro de telefonnumero. Kontrolu la retkonekton, kaj provu ree.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Uzanto ne trovita. „$atUsername$“ ne estas Signal-uzanto; kontrolu, ke vi entajpis plenan uzantnomon.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Uzanto ne trovita. „$phoneNumber$“ ne estas Signal-uzanto.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Uzanto ne trovita. „$phoneNumber$“ ne estas valida telefonnumero.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Elekti grupanojn",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Eraro dum montro de la bildo",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Aliri la ligilon",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Kio novas",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Tiu versio enhavas kelkajn optimumaĵojn kaj riparetojn, por ke Signal plu funkciu bone.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Jen nova sistemo por ĝisdatigo: estos pli etaj ĝisdatigoj ekde la venonta ĝisdatigo.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Aplikaĵoj uzante aŭdvidajn klavojn ĝoju! Signal ne plu interagas kun ili.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Pli bona subteno pri japanlingvaj tiparoj.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Ĉu vi rigardas rapide la grupinterparolon? Nun estas pli da spaco en la ekrano: ni grupigas la mesaĝojn, se ili estas proksimaj en tempo.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Ĉu mankantaj glumarkaroj? Desktop nun montras ĉiujn glumarkarojn, kiel ĉe via poŝtelefono!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Vi povas nun aldoni homojn al grupoj pere de ilia telefonnumero.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Viaj plej ŝatataj kontaktoj estas nun pli facile alireblaj. Serĉo de kontaktoj en nelatinaj alfabetoj kiel la cirila nun eblas.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Buscar por alias",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Buscar por núm. de teléfono",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Las notas de voz están limitadas a 5 minutos. La grabación se detendrá si cambias a otra aplicación.",
"message": "Las notas de voz están limitadas a 1 hora. La grabación se detendrá si utilizas otra aplicación.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Fallo al actualizar Signal. Visita $url$ para instalar manualmente. Después, $support$ con el problema.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop está probablemente en cuarentena en macOS y la aplicación no se podrá actualizar automáticamente. Intenta transferir $app$ a la carpeta $folder$ con Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Fallo al recuperar el alias. Comprueba tu conexión e inténtalo de nuevo.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Fallo al recuperar el núm. de teléfono. Comprueba tu conexión e inténtalo de nuevo.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Alias de usuari@ no encontrado. $atUsername$ no usa Signal. Asegúrate de haber introducido el alias correcto.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Alias no encontrado. $phoneNumber$ no utiliza Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Número no encontrado. $phoneNumber$ no está registrado en Signal.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Seleccionar participantes",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Fallo al mostrar la imagen",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visitar enlace",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Novedades",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Esta versión contiene un par de pequeñas mejoras para que Signal funcione sin problemas.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Hemos introducido un nuevo sistema de actualización de Signal que permite actualizaciones más compactas.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "¡Las aplicaciones que usan teclas multimedia están de enhorabuena! Signal no se atragantará con ellas.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Signal incluye un mejor soporte para nuestras amistades en Japón",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "¿Escanear rápidamente ese grupo de chat? Verás más mensajes en menos espacio en tu pantalla. Ahora agrupamos los mensajes por remitente si se han recibido próximos en el tiempo.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "¡Se acabaron los paquetes de stickers perdidos! ¡Ahora Desktop debería poder manejar todos los paquetes de stickers que tienes en tu teléfono!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Ahora puedes añadir personas a grupos conociendo solo su número de teléfono.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Tus contactos favoritos son ahora más fácil de encontrar. La búsqueda de contactos ahora permite alfabetos no latinos como el cirílico",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Otsi kasutajanime järgi",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Kõnesõnumite pikkus on piiratud viie minutiga. Salvestamine peatub, kui lülitud teisele rakendusele.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop on tõenäoliselt macOS-i karantiinis ja seda pole võimalik automaatselt uuendada. Palun teisalda $app$ kausta $folder$ Finderi abil.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Vali liikmed",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Mis on uut",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "See versioon sisaldab paljusid väikseid parendusi, mis Signali sujuvalt käimas.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Ahots mezuen gehienezko denbora muga bost minutukoa da. Grabaketa etengo da beste aplikazio batera mugituz gero.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ziur aski macOS koarentena batean dago eta ezingo da automatikoki eguneratu. Mesedez, Finder erabiliz saia zaitez mugitzen $app$ aplikazioa $folder$ karpetara.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choose members",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "جستجو با نام کاربری",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "تعداد تماس های صوتی به پنج تماس محدود شده است. در صورتی که به برنامه دیگری بروید، ضبط صدا متوقف خواهد شد.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "سیگنال دسکتاپ احتمالا در قرنطینه macOS می باشد، و قادر به به‌روزرسانی خودکار نیست. لطفاً محل $app$ را با استفاده از Finder به $folder$ تغییر دهید.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "خطا در دریافت نام کاربری. اینترنت خود را بررسی کنید و مجددا تلاش کنید.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "کاربر یافت نشد. $atUsername$کاربر سیگنال نیست. مطمئن شوید که نام کاربری را کامل وارد کرده اید.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "انتخاب اعضا",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "تازه‌ها",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "این نسخه شامل شماری از بهینه سازی های کوچک و رفع عیب برای تداوم اجرای راحت سیگنال می باشد",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Etsi käyttäjätunnuksella",
"description": "Shown to separate the types of search results"
"message": "Etsi käyttäjänimellä",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Etsi puhelinnumerolla",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Ääniviestien aikaraja on viisi minuuttia. Nauhoitus lopetetaan, jos vaihdat toiseen sovellukseen.",
"message": "Ääniviestin maksimipituus on yksi tunti. Tallentaminen katkeaa jos vaihdat toiseen sovellukseen.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Päivitys ei onnistunut. Asenna päivitys käsin osoitteesta $url$. Sitten ilmoita $support$ ongelmasta.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop on todennäköisesti macOS-karanteenissa, eikä sitä voi päivittää automaattisesti. Yritä siirtää $app$ -sovellus $folder$ -kansioon Finderin avulla.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Käyttäjätunnuksen noutaminen epäonnistui. Tarkista verkkoyhteys ja yritä uudelleen.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Puhelinnumeron noutaminen epäonnistui. Tarkista verkkoyhteys ja yritä uudelleen.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Käyttäjää ei löydy. $atUsername$ ei ole Signal-käyttäjä. Varmista, että olet syöttänyt koko käyttäjätunnuksen.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Käyttäjää ei löydy. $phoneNumber$ ei ole Signal-käyttäjä.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Käyttäjää ei löydy. \"$phoneNumber$\" ei ole kelvollinen puhelinnumero.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Valitse jäsenet",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Kuvan näyttämisessä tapahtui virhe",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Avaa linkki",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Uudet ominaisuudet",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Tämä versio sisältää useita pieniä parannuksia ja virhekorjauksia, jotka pitävät Signalin toiminnan sujuvana.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Uusi päivitysjärjestelmä on otettu käyttöön ja jatkossa päivitysten pitäisi sujua huomaamattomammin.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Signal ei enää estä erikoisnäppäinten (medianäppäimet) toimintaa.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Parempi fonttituki japanilaisille ystävillemme.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Vilkaisetko ryhmäkeskustelua nopeasti? Näytölle mahtuu enemmän viestejä saman aikaisesti. Ryhmittelemme nyt lähettäjän viestit yhteen, jos niiden lähetysaijat ovat läheisiä.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Puuttuvat tarrapaketit kadotkoon! Puhelimella toimivien tarrapakettien pitäisi nyt toimia myös työpöydällä!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Voit nyt lisätä ihmisiä ryhmiin pelkän puhelinnumeron perusteella.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Lempiyhteystietosi ovat nyt vain muutaman näppäinpainalluksen päässä. Yhteystietohaku tukee nyt muitakin kuin latinalaisia merkistöjä, kuten esimerkiksi kyrillisiä merkistöjä.",
"description": "Release notes for v5.39"
}
}

View File

@ -274,7 +274,7 @@
"description": "Header of screen shown as data is import"
},
"importErrorFirst": {
"message": "Assurez-vous davoir sélectionné le bon répertoire contenant vos données relatives à Signal enregistrées. Son nom devrait commencer par « Signal Export ». Vous pouvez également enregistrer une nouvelle copie de vos données à partir de lapplication Chrome.",
"message": "Assurez-vous davoir sélectionné le bon répertoire qui comprend vos données Signal enregistrées. Son nom devrait commencer par « Signal Export ». Vous pouvez également enregistrer une nouvelle copie de vos données dans lappli Chrome.",
"description": "Message shown if the import went wrong; first paragraph"
},
"importErrorSecond": {
@ -688,7 +688,7 @@
"description": "Displayed when the desktop client is currently connecting to the server."
},
"connect": {
"message": "Cliquez pour vous reconnecter.",
"message": "Cliquer pour vous reconnecter.",
"description": "Shown to allow the user to manually attempt a reconnect."
},
"connectingHangOn": {
@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Trouver par non dutilisateur",
"description": "Shown to separate the types of search results"
"message": "Trouver par nom dutilisateur",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Trouver par numéro de téléphone",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -850,7 +854,7 @@
"description": ""
},
"whatsNew": {
"message": "Consultez $whatsNew$ de cette mise à jour",
"message": "Consulter $whatsNew$ dans cette mise à jour",
"description": "Shown in the main window",
"placeholders": {
"name": {
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Les messages vocaux sont limités à cinq minutes. Lenregistrement sarrêtera si vous changez dappli.",
"message": "Les messages vocaux sont limités à une heure. Lenregistrement sarrêtera si vous changez dappli.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1048,7 +1052,7 @@
"description": "Shown in a button when a conversation is unmuted and can be muted"
},
"cannotUpdateDetail": {
"message": "Signal na pas pu être mis à jour. $retry$ ou visitez $url$ pour linstaller manuellement. Puis, $support$ au sujet de ce problème",
"message": "Signal na pas pu être mise à jour. $retry$ ou visitez $url$ pour linstaller manuellement. Puis, $support$ au sujet de ce problème",
"description": "Shown if a general error happened while trying to install update package",
"placeholders": {
"retry": {
@ -1065,8 +1069,22 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal na pas pu être mise à jour. Visitez $url$ pour linstaller manuellement. Puis, $support$ au sujet de ce problème",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop pour ordinateur a probablement été mis en quarantaine par macOS et ne pourra pas se mettre automatiquement à jour. Avec Finder, essayez de déplacer $app$ dans $folder$.",
"message": "Signal Desktop pour ordinateur a probablement été mise en quarantaine par macOS et ne pourra pas se mettre automatiquement à jour. Avec Finder, essayez de déplacer $app$ dans $folder$.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
"placeholders": {
"app": {
@ -1226,7 +1244,7 @@
"description": "Menu item for deleting messages, title case."
},
"deleteConversationConfirmation": {
"message": "Supprimer définitivement cette conversation?",
"message": "Supprimer définitivement cette 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": {
@ -1350,7 +1368,7 @@
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"Install__scan-this-code": {
"message": "Lisez ce code dans lappli Signal sur votre téléphone",
"message": "Lire ce code avec lappli Signal sur votre téléphone",
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
@ -1358,7 +1376,7 @@
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Touchez $settings$ puis $linkedDevices$",
"message": "Touchez $settings$, puis $linkedDevices$",
"description": "Instructions on the device link screen",
"placeholders": {
"settings": {
@ -1390,7 +1408,7 @@
}
},
"Install__qr-failed": {
"message": "Le code QR na pas pu être chargé. Vérifiez votre connexion à Internet puis réessayez. $learnMore$",
"message": "Le code QR na pas pu être chargé. Vérifiez votre connexion à Internet, puis réessayez. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load",
"placeholders": {
"learnMore": {
@ -1404,7 +1422,7 @@
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__support-link": {
"message": "Besoin daide?",
"message": "Besoin daide?",
"description": "Shown on the install screen. Link takes users to a support page"
},
"Install__choose-device-name__description": {
@ -1926,7 +1944,7 @@
"description": "Button in the settings dialog starting process to delete all data"
},
"deleteAllDataHeader": {
"message": "Supprimer toutes les données?",
"message": "Supprimer toutes les données?",
"description": "Header of the full-screen delete data confirmation screen"
},
"deleteAllDataBody": {
@ -2040,7 +2058,7 @@
"description": "Shown on outgoing message if it is partially sent"
},
"partiallyDeleted": {
"message": "Supprimé partiellement, cliquez pour réessayer ",
"message": "Supprimé partiellement, cliquez pour réessayer",
"description": "Shown on a message which was deleted for everyone if the delete wasn't successfully sent to everyone"
},
"showMore": {
@ -2383,6 +2401,10 @@
"message": "Échec de la récupération du nom d'utilisateur. Vérifiez votre connexion et réessayez.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Échec de la récupération du numéro de téléphone. Vérifiez votre connexion et réessayez.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Utilisateur non trouvé.$atUsername$ nest pas un utilisateur de Signal ; assurez davoir saisi le nom d'utilisateur complet.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Lutilisateur est introuvable. « $phoneNumber$ » nest pas un utilisateur de Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Lutilisateur est introuvable. « $phoneNumber$ » nest pas un numéro de téléphone valide.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choisir des membres",
"description": "The title for the 'choose group members' left pane screen"
@ -2470,7 +2512,7 @@
"description": "Shown in the modal when we want to update a group"
},
"updateGroupAttributes__error-message": {
"message": "Échec de la mise à jour du groupe. Vérifiez votre connexion et réessayez.",
"message": "Échec de mise à jour du groupe. Vérifiez votre connexion et réessayez.",
"description": "Shown in the modal when we can't update a group"
},
"notSupportedSMS": {
@ -2486,7 +2528,7 @@
"description": "When a person inputs a number that is invalid"
},
"unlinkedWarning": {
"message": "Cliquez pour relier Signal Desktop pour ordinateur à votre appareil mobile pour continuer à communiquer.",
"message": "Cliquez pour relier Signal Desktop pour ordinateur à votre appareil mobile et continuer à communiquer.",
"description": ""
},
"unlinked": {
@ -2498,7 +2540,7 @@
"description": ""
},
"autoUpdateNewVersionTitle": {
"message": "Mise à jour disponible",
"message": "Une mise à jour est proposée",
"description": ""
},
"autoUpdateRetry": {
@ -2518,7 +2560,7 @@
"description": ""
},
"downloadFullNewVersionMessage": {
"message": "Signal na pas pu être mis à jour. Cliquez pour réessayer.",
"message": "Signal na pas pu être mise à jour. Cliquez pour réessayer.",
"description": "Shown in update dialog when partial update fails and we have to ask user to download full update"
},
"autoUpdateNewVersionInstructions": {
@ -2760,7 +2802,7 @@
"description": "Shown as the title on a tooltip when the user upgrades to a version of Signal supporting stickers."
},
"stickers--StickerManager--Introduction--Body": {
"message": "Pourquoi utiliser des mots quand vous pouvez utiliser des autocollants?",
"message": "Pourquoi utiliser des mots quand vous pouvez utiliser des autocollants?",
"description": "Shown as the body on a tooltip when the user upgrades to a version of Signal supporting stickers."
},
"stickers--StickerPicker--Open": {
@ -3272,7 +3314,7 @@
"description": "Help text for the cover image picker of the meta stage of the sticker creator"
},
"StickerCreator--MetaStage--ConfirmDialog--title": {
"message": "Voulez-vous vraiment téléverser votre paquet dautocollants?",
"message": "Voulez-vous vraiment téléverser votre paquet dautocollants?",
"description": "Title for the confirm dialog on the meta stage of the sticker creator"
},
"StickerCreator--MetaStage--ConfirmDialog--confirm": {
@ -3416,7 +3458,7 @@
"description": "Shown in reaction viewer as the title for the 'all' category"
},
"MessageRequests--message-direct": {
"message": "Autoriser $name$ à échanger des messages et partager votre nom et votre photo avec ce contact? Ce contact ne saura pas que vous avez vu ses messages tant que vous naurez pas accepté.",
"message": "Autoriser $name$ à échanger des messages et partager votre nom et votre photo avec ce contact? Ce contact ne saura pas que vous avez vu ses messages tant que vous naurez pas accepté.",
"description": "Shown as the message for a message request in a direct message",
"placeholders": {
"name": {
@ -3426,7 +3468,7 @@
}
},
"MessageRequests--message-direct-blocked": {
"message": "Autoriser $name$ à échanger des messages et partager votre nom et votre photo avec ce contact? Vous ne recevrez aucun message tant que vous ne laurez pas débloqué.",
"message": "Autoriser $name$ à échanger des messages et partager votre nom et votre photo avec ce contact? Vous ne recevrez aucun message tant que vous ne laurez pas débloqué.",
"description": "Shown as the message for a message request in a direct message with a blocked account",
"placeholders": {
"name": {
@ -3436,11 +3478,11 @@
}
},
"MessageRequests--message-group": {
"message": "Vous joindre à ce groupe et partager votre nom et votre photo avec ses membres? Ils ne sauront pas que vous avez vu leurs messages tant que vous naurez pas accepté.",
"message": "Vous joindre à ce groupe et partager votre nom et votre photo avec ses membres? Ils ne sauront pas que vous avez vu leurs messages tant que vous naurez pas accepté.",
"description": "Shown as the message for a message request in a group"
},
"MessageRequests--message-group-blocked": {
"message": "Débloquer ce groupe et partager votre nom et votre photo avec ses membres? Vous ne recevrez aucun message tant que vous ne laurez pas débloqué.",
"message": "Débloquer ce groupe et partager votre nom et votre photo avec ses membres? Vous ne recevrez aucun message tant que vous ne laurez pas débloqué.",
"description": "Shown as the message for a message request in a blocked group"
},
"MessageRequests--block": {
@ -3452,7 +3494,7 @@
"description": "Shown as a button to let the user unblock a message request"
},
"MessageRequests--unblock-direct-confirm-title": {
"message": "Débloquer $name$?",
"message": "Débloquer $name$?",
"description": "Shown as a button to let the user unblock a message request",
"placeholders": {
"name": {
@ -3478,7 +3520,7 @@
"description": "Shown in a toast when you successfully block a user and report them as spam"
},
"MessageRequests--block-direct-confirm-title": {
"message": "Bloquer $name$?",
"message": "Bloquer $name$?",
"description": "Shown as the title in the confirmation modal for blocking a private message request",
"placeholders": {
"name": {
@ -3492,7 +3534,7 @@
"description": "Shown as the body in the confirmation modal for blocking a private message request"
},
"MessageRequests--block-group-confirm-title": {
"message": "Bloquer et quitter $group$?",
"message": "Bloquer et quitter $group$?",
"description": "Shown as the title in the confirmation modal for blocking a group message request",
"placeholders": {
"group": {
@ -3510,7 +3552,7 @@
"description": "Shown as a button to let the user delete any message request"
},
"MessageRequests--delete-direct-confirm-title": {
"message": "Supprimer la conversation?",
"message": "Supprimer la conversation?",
"description": "Shown as the title in the confirmation modal for deleting a private message request"
},
"MessageRequests--delete-direct-confirm-body": {
@ -3518,7 +3560,7 @@
"description": "Shown as the body in the confirmation modal for deleting a private message request"
},
"MessageRequests--delete-group-confirm-title": {
"message": "Supprimer et quitter $group$?",
"message": "Supprimer et quitter $group$?",
"description": "Shown as the title in the confirmation modal for deleting a group message request",
"placeholders": {
"group": {
@ -3548,7 +3590,7 @@
"description": "Shown as a button to share your profile, necessary to continue messaging in a conversation"
},
"MessageRequests--profile-sharing--group": {
"message": "Poursuive votre conversation avec ce groupe et partager vos nom et photos avec ses membres? $learnMore$",
"message": "Poursuive votre conversation avec ce groupe et partager vos nom et photos avec ses membres? $learnMore$",
"description": "Shown when user hasn't shared their profile in a group yet",
"placeholders": {
"learnMore": {
@ -3558,7 +3600,7 @@
}
},
"MessageRequests--profile-sharing--direct": {
"message": "Poursuivre cette conversation avec $firstName$ et partager vos nom et photo avec cette personne? $learnMore$",
"message": "Poursuivre cette conversation avec $firstName$ et partager vos nom et photo avec cette personne? $learnMore$",
"description": "Shown when user hasn't shared their profile in a 1:1 conversation yet",
"placeholders": {
"firstName": {
@ -4080,7 +4122,7 @@
"description": "Shown if we are unable to parse a group link"
},
"GroupV2--join--prompt": {
"message": "Voulez-vous vous joindre à ce groupe et partager vos nom et photo avec ses membres?",
"message": "Voulez-vous vous joindre à ce groupe et partager vos nom et photo avec ses membres?",
"description": "Shown when you click on a group link to confirm"
},
"GroupV2--join--already-in-group": {
@ -4132,7 +4174,7 @@
"description": "The button to cancel request to join the group"
},
"GroupV2--join--cancel-request-to-join--confirmation": {
"message": "Annuler votre demande de vous joindre à ce groupe?",
"message": "Annuler votre demande de vous joindre à ce groupe?",
"description": "A confirmation message that shows after you click the button"
},
"GroupV2--join--cancel-request-to-join--yes": {
@ -5340,7 +5382,7 @@
"description": "Shown on Migrate dialog to kick off the process"
},
"GroupV1--Migration--info--title": {
"message": "Que sont les Nouveaux groupes?",
"message": "Que sont les Nouveaux groupes?",
"description": "Shown on Learn More popup after GV1 migration"
},
"GroupV1--Migration--migrate--title": {
@ -5514,7 +5556,7 @@
}
},
"ContactModal--rm-admin-info": {
"message": "Supprimer $contact$ en tant quadministrateur du groupe ?",
"message": "Supprimer $contact$ en tant quadministrateur du groupe?",
"description": "Shown in a confirmation dialog when you are about to remove admin privileges from someone",
"placeholders": {
"contact": {
@ -5540,7 +5582,7 @@
"description": "This is a button in the conversation context menu to show chat settings"
},
"ConversationDetails__unmute--title": {
"message": "Réactiver cette conversation ?",
"message": "Réactiver cette conversation?",
"description": "Title for the modal to unmute a chat"
},
"ConversationDetails--group-link": {
@ -5604,7 +5646,7 @@
"description": "Shown if, before leaving a group, you need to choose an admin"
},
"ConversationDetailsActions--leave-group-modal-title": {
"message": "Voulez-vous vraiment quitter ce groupe?",
"message": "Voulez-vous vraiment quitter ce groupe?",
"description": "This is the modal title for confirming leaving a group"
},
"ConversationDetailsActions--leave-group-modal-content": {
@ -5616,7 +5658,7 @@
"description": "This is the modal button to confirm leaving a group"
},
"ConversationDetailsActions--block-group-modal-title": {
"message": "Bloquer le groupe « $groupName$ » et le quitter?",
"message": "Bloquer le groupe « $groupName$ » et le quitter?",
"description": "This is the modal title for confirming blocking a group",
"placeholders": {
"groupName": {
@ -5694,7 +5736,7 @@
"description": "This lets users share their group link"
},
"GroupLinkManagement--confirm-reset": {
"message": "Voulez-vous vraiment réinitialiser le lien du groupe? Personne ne pourra plus se joindre au groupe grâce au lien actuel.",
"message": "Voulez-vous vraiment réinitialiser le lien du groupe? Personne ne pourra plus se joindre au groupe grâce au lien actuel.",
"description": "Shown in the confirmation dialog when an admin is about to reset the group link"
},
"GroupLinkManagement--reset": {
@ -5730,7 +5772,7 @@
}
},
"PendingRequests--approve-for": {
"message": "Approuver la demande de « $name$ »?",
"message": "Approuver la demande de « $name$ »?",
"description": "This is the modal content when confirming approving a group request to join",
"placeholders": {
"name": {
@ -5740,7 +5782,7 @@
}
},
"PendingRequests--deny-for": {
"message": "Refuser la demande de « $name$ »?",
"message": "Refuser la demande de « $name$ »?",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
@ -5750,7 +5792,7 @@
}
},
"PendingRequests--deny-for--with-link": {
"message": "Refuser la demande de « $name$ »? Cette personne ne pourra plus demander à se joindre au groupe grâce au lien de groupe.",
"message": "Refuser la demande de « $name$ »? Cette personne ne pourra plus demander à se joindre au groupe grâce au lien de groupe.",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
@ -5786,7 +5828,7 @@
"description": "This is aria label for revoking a group invite icon"
},
"PendingInvites--revoke-for": {
"message": "Révoquer linvitation au groupe pour « $name$ »?",
"message": "Révoquer linvitation au groupe pour « $name$ »?",
"description": "This is the modal content when confirming revoking a single invite",
"placeholders": {
"number": {
@ -5800,7 +5842,7 @@
}
},
"PendingInvites--revoke-from-singular": {
"message": "Révoquer une invitation envoyée par « $name$ »?",
"message": "Révoquer une invitation envoyée par « $name$ »?",
"description": "This is the modal content when confirming revoking a single invite",
"placeholders": {
"name": {
@ -5810,7 +5852,7 @@
}
},
"PendingInvites--revoke-from-plural": {
"message": "Révoquer $number$ invitations envoyées par « $name$ » ?",
"message": "Révoquer $number$ invitations envoyées par « $name$ »?",
"description": "This is the modal content when confirming revoking multiple invites",
"placeholders": {
"number": {
@ -5854,7 +5896,7 @@
"description": "Shown in timeline if users cancel their request to join a group via a group link"
},
"PendingRequests--block--title": {
"message": "Bloquer la demande?",
"message": "Bloquer la demande?",
"description": "Title of dialog to block a user from requesting to join via the link again"
},
"PendingRequests--block--contents": {
@ -5944,7 +5986,7 @@
"description": "When adding new members to an existing group, this is shown in the dialog"
},
"AddGroupMembersModal--confirm-title--one": {
"message": "Ajouter $person$ à « $group$ »?",
"message": "Ajouter $person$ à « $group$ »?",
"description": "When adding new members to an existing group, this is shown in the confirmation dialog",
"placeholders": {
"person": {
@ -5958,7 +6000,7 @@
}
},
"AddGroupMembersModal--confirm-title--many": {
"message": "Ajouter $count$ membres à « $group$ »?",
"message": "Ajouter $count$ membres à « $group$ »?",
"description": "When adding new members to an existing group, this is shown in the confirmation dialog",
"placeholders": {
"count": {
@ -6154,7 +6196,7 @@
"description": "When confirming the removal of a group member, show this text in the button"
},
"RemoveGroupMemberConfirmation__description": {
"message": "Supprimer « $name$ » du groupe?",
"message": "Supprimer « $name$ » du groupe?",
"description": "When confirming the removal of a group member, show this text in the dialog",
"placeholders": {
"name": {
@ -6164,7 +6206,7 @@
}
},
"RemoveGroupMemberConfirmation__description__with-link": {
"message": "Supprimer « $name$ » du groupe? Cette personne ne pourra plus se joindre au groupe grâce au lien de groupe.",
"message": "Supprimer « $name$ » du groupe? Cette personne ne pourra plus se joindre au groupe grâce au lien de groupe.",
"description": "When confirming the removal of a group member, show this text in the dialog",
"placeholders": {
"name": {
@ -6186,7 +6228,7 @@
"description": "First paragraph in the captcha dialog"
},
"CaptchaDialog--can-close__title": {
"message": "Poursuivre sans confirmer?",
"message": "Poursuivre sans confirmer?",
"description": "Header in the captcha dialog that can be closed"
},
"CaptchaDialog--can-close__body": {
@ -6214,7 +6256,7 @@
"description": "Confirm title for deleting custom color"
},
"ChatColorPicker__delete--message": {
"message": "Cette couleur personnalisée est utilisée dans $num$ conversations. Souhaitez-vous la supprimer pour toutes les conversations?",
"message": "Cette couleur personnalisée est utilisée dans $num$ conversations. Souhaitez-vous la supprimer pour toutes les conversations?",
"description": "Confirm message for deleting custom color",
"placeholders": {
"num": {
@ -6252,7 +6294,7 @@
"description": "Confirm button label for resetting chat colors"
},
"ChatColorPicker__confirm-reset-message": {
"message": "Souhaitez-vous remplacer toutes les couleurs des conversations?",
"message": "Souhaitez-vous remplacer toutes les couleurs des conversations?",
"description": "Modal message text for confirming resetting of chat colors"
},
"ChatColorPicker__custom-color--label": {
@ -6474,11 +6516,11 @@
"description": "Shown if user has attempted to save a username which is not available"
},
"ProfileEditor--username--general-error": {
"message": "Votre nom dutilisateur na pas pu être enregistré. Vérifiez votre connexion puis réessayez.",
"message": "Votre nom dutilisateur na pas pu être enregistré. Vérifiez votre connexion, puis réessayez.",
"description": "Shown if something unknown has gone wrong with username save."
},
"ProfileEditor--username--delete-general-error": {
"message": "Votre nom dutilisateur na pas pu être supprimé. Vérifiez votre connexion puis réessayez.",
"message": "Votre nom dutilisateur na pas pu être supprimé. Vérifiez votre connexion, puis réessayez.",
"description": "Shown if something unknown has gone wrong with username delete."
},
"ProfileEditor--username--delete-username": {
@ -6486,7 +6528,7 @@
"description": "Shown as aria label for trash icon next to username"
},
"ProfileEditor--username--confirm-delete-body": {
"message": "Ceci supprimera votre nom dutilisateur, permettant aux autres de le récupérer. Êtes-vous sûr ?",
"message": "Cela supprimera votre nom dutilisateur, permettant à dautres utilisateurs de le revendiquer. Confirmez-vous?",
"description": "Shown in dialog body if user has saved an empty string to delete their username"
},
"ProfileEditor--username--confirm-delete-button": {
@ -6506,7 +6548,7 @@
"description": "Placeholder text for last name field"
},
"ConfirmDiscardDialog--discard": {
"message": "Voulez-vous abandonner ces changements?",
"message": "Voulez-vous abandonner ces changements?",
"description": "ConfirmationDialog text for discarding changes"
},
"ProfileEditor--info": {
@ -6622,7 +6664,7 @@
"description": "Button to switch the settings view"
},
"Preferences--lastSynced": {
"message": "Dernier import le $date$ à $time$",
"message": "Dernière importation le $date$ à $time$",
"description": "Label for date and time of last sync operation",
"placeholders": {
"date": {
@ -6648,7 +6690,7 @@
"description": "Title for the generate link previews setting"
},
"Preferences__link-previews--description": {
"message": "Pour modifier ce paramètre, ouvrez lapplication Signal sur votre appareil mobile et naviguez dans Paramètres > Conversations",
"message": "Pour modifier ce paramètre, ouvrez lappli Signal sur votre appareil mobile et naviguez vers Paramètres > Conversations",
"description": "Description for the generate link previews setting"
},
"Preferences--advanced": {
@ -6688,7 +6730,7 @@
"description": "Title for the 'who can do X' setting"
},
"Preferences__privacy--description": {
"message": "Pour modifier ces paramètres, ouvrez lapplication Signal sur votre appareil mobile et naviguez dans Paramètres > Confidentialité",
"message": "Pour modifier ces paramètres, ouvrez lappli Signal sur votre appareil mobile et naviguez vers Paramètres > Confidentialité",
"description": "Description for the 'who can do X' setting"
},
"Preferences__who-can--everybody": {
@ -6754,7 +6796,7 @@
"description": "First line of the dialog displayed when Windows installer can't close application automatically and needs user intervention to complete the installation."
},
"NSIS__retry-dialog--second-line": {
"message": "Veuillez le fermer manuellement puis cliquez sur Réessayer pour continuer.",
"message": "Veuillez la fermer manuellement et cliquez sur Réessayer pour continuer.",
"description": "Second line of the dialog displayed when Windows installer can't close application automatically and needs user intervention to complete the installation."
},
"CrashReportDialog__title": {
@ -6926,7 +6968,7 @@
}
},
"MyStories__delete": {
"message": "Supprimer cette histoire? Elle sera aussi supprimée pour quiconque la reçue.",
"message": "Supprimer cette histoire? Elle sera aussi supprimée pour quiconque la reçue.",
"description": "Confirmation dialog description text for deleting a story"
},
"Stories__title": {
@ -7000,7 +7042,7 @@
"description": "Label for menu item to go to conversation"
},
"StoryListItem__hide-modal--body": {
"message": "Cacher lhistoire? Les nouvelles mises à jour dhistoire de $name$ napparaîtront plus en haut de la liste des histoires.",
"message": "Cacher lhistoire? Les nouvelles mises à jour dhistoire de $name$ napparaîtront plus en haut de la liste des histoires.",
"description": "Body for the confirmation dialog for hiding a story"
},
"StoryListItem__hide-modal--confirm": {
@ -7017,6 +7059,10 @@
"message": "Erreur daffichage de limage",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visitez le lien",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Les nouveautés",
"description": "Title for the whats new modal"
@ -7025,20 +7071,8 @@
"message": "Cette version contient un certain nombre de petits ajustements et de corrections de bogues pour assurer le bon fonctionnement de Signal.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Un nouveau système de mise à jour a été mis en place donc les gens devraient voir des mises à jour plus petites à partir de la prochaine mise à jour",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Les applications qui utilisent des touches media peuvent se réjouir ! Signal ne les accapare plus.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Meilleur support des polices pour nos amis Japonais",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Balayez-vous rapidement cette conversation de groupe des yeux? Un même écran affiche désormais plus de messages. Nous regroupons les messages de lexpéditeur sils sont proches dans le temps.",
"message": "Balayez-vous rapidement cette conversation de groupe des yeux? Un même écran affiche désormais plus de messages. Nous regroupons les messages de lexpéditeur sils sont proches dans le temps.",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.36--2": {
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Adieu, paquets dautocollants manquants! Signal pour ordinateur devrait désormais pouvoir gérer tous les paquets que votre téléphone peut gérer.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Vous pouvez désormais ajouter des personnes aux groupes grâce à leur numéro de téléphone.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Vos contacts favoris sont désormais facilement accessibles et la recherche de contacts prend en charge les alphabets non latins tels que le cyrillique.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Lorg a-rèir ainm-cleachdaiche",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Tha crìoch de chòig mionaidean air teachdaireachdan-gutha. Thèid stad a chur air a chlàradh nuair a ghearras tu leum gu aplacaid eile.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Tha sinn an dùil gu bheil Signal Desktop ann an cuarantain macOS agus nach urrainn dha ùrachadh gu fèin-obrachail. Feuch gun gluais thu $app$ gu $folder$ le Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Cha b urrainn dhuinn an t-ainm-cleachdaiche fhaighinn. Dearbh an ceangal agad is feuch ris a-rithist.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Cha deach an cleachdaiche a lorg. Chan eil $atUsername$ na chleachdaiche Signal; dèan cinnteach gun do chuir thu a-steach an t-ainm-cleachdaiche slàn.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Tagh buill",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Na tha ùr",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Chaidh rudan beaga a ghleusadh agus bugaichean a chàradh leis an tionndadh seo airson Signal a chumail a ruith gu rèidh.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Chuir sinn siostam ùrachaidhean ùr an cèill agus bu chòir dhut ùrachaidhean nas lugha fhaicinn on t-ath-ùrachadh a-mach.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Bidh aplacaidean a chleachdas iuchraichean mheadhanan toilichte! Cha chùm Signal grèim orra tuilleadh.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Piseach air taic do chruthan-clò do ar càirdean Seapanach.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "વૉઈસ મેસેજ પાંચ મિનિટ સુધી મર્યાદિત છે. જો તમે બીજી એપ્લિકેશન પર સ્વિચ કરો છો તો રેકોર્ડિંગ બંધ થઈ જશે.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal ડેસ્કટપ સંભવત મેકોસ ક્વોરેન્ટાઇનમાં છે, અને તે સ્વત અપડેટ કરી શકશે નહીં. કૃપા કરીને ફાઇન્ડર સાથે $app$ ને $folder$ માં ખસેડવાનો પ્રયાસ કરો.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "મેમ્બર્સ પસંદ કરો",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "מצא לפי שם משתמש",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "הודעות קוליות מוגבלות אל חמש דקות. הקלטה תיעצר אם תחליף אל יישום שונה.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ככל הנראה בהסגר macOS, ולא יוכל להתעדכן באופן אוטומטי. אנא נסה להעביר את $app$ אל $folder$ עם Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "נכשל במשיכת שם משתמש. בדוק את החיבור שלך ונסה שוב.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "המשתמש לא נמצא. $atUsername$ הוא לא משתמש Signal; וודא שהכנסת את שם המשתמש השלם.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "בחר חברי קבוצה",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "שגיאה בהצגת תמונה",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "בקר בקישור",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "מה חדש",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "גרסה זו מכילה מספר של שפצורים קטנים ותיקוני תקלים כדי לשמור על Signal שירוץ באופן חלק.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "מערכת עדכונים חדשה הוצגה ומשתמשים אמורים להתחיל לראות עדכונים קטנים יותר עם העדכון הבא.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "תמיכה טובה יותר בגופנים עבור החברים היפנים שלנו.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "यूज़र के नाम द्वारा खोजें",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ऑडियो मेसेज पाँच मिनट तक सीमित है। अगर आप किसी अन्य ऐप पर चले जाते हैं तो रिकॉर्डिंग बंद हो जाएगी।",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop संभव रूप से macOS क्वारंटाइन में है, और ऑटो-अपडेट होने के योग्य नहीं है। कृपया फाइंडर के साथ को $app$से $folder$ में मूव करने का प्रयास करें।",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "यूज़र का नाम ढूंढने में असफ़ल. अपने कनेक्शन को चेक करें और फिर से कोशिश करें.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "यूज़र नहीं मिला. $atUsername$ एक Signal यूज़र नहीं है; सुनिश्चित करें कि आपने पूरा यूज़र नाम दर्ज किया है.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "सदस्य चुनें",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "नया क्या है",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "सिग्नल को सही रूप से चलाने के लिए इस वर्शन में कई छोटे बदलाव और बग फ़िक्स शामिल हैं.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Glasovne poruke ograničene su na pet minuta. Snimanje će se zaustaviti ako se prebacite na drugu aplikaciju.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop je vjerojatno u macOS karanteni i neće se moći automatski ažurirati. Pokušajte premjestiti $app$ u $folder$ pomoću programa Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Odaberite članove",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Keresés felhasználónév alapján",
"description": "Shown to separate the types of search results"
"message": "Felhasználó keresése",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Telefonszám keresése",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "A hangüzenetek maximális hossza öt perc. A rögzítés megáll, ha átváltasz egy másik alkalmazásra.",
"message": "A hangüzenetek maximális hossza egy óra. A rögzítés megáll, ha átváltasz egy másik alkalmazásra.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "A Signal Desktop frissítése nem sikerült. Telepítsd az új verziót manuálisan a $url$ weboldalról, majd lépj kapcsolatba velünk a tapasztalt problémával kapcsolatban: $support$.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "A Signal Desktop valószínűleg macOS karanténban fut, és emiatt nem fog tudni automatikusan frissíteni. Próbáld meg áthelyezni a $app$ fájlt a $folder$ mappába a Finder segítségével!",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nem sikerült betölteni a felhasználónevet. Ellenőrizd a kapcsolatodat, majd próbáld újra!",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "A telefonszám lekérése sikertelen. Ellenőrizd a kapcsolatodat, majd próbáld újra!",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "A felhasználó nem található. Nincs $atUsername$ nevű Signal-felhasználó. Győződj meg róla, hogy a teljes felhasználónevet adtad meg!",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Sikertelen: \"$phoneNumber$\" nem tartozik felhasználóhoz.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Sikertelen: \"$phoneNumber$\" szám található.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Tagok kiválasztása",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Hiba a kép megjelenítésekor",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Hivatkozás megnyitása",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Újdonságok",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Ebbe a verzióba néhány kisebb újítás és hibajavítás került annak érdekében, hogy a Signal továbbra is gond nélkül fusson.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Az új frissítési rendszer bevezetésével kisebb méretben érkeznek az újdonságok.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "A média billentyűkhöz kötött alkalmazások fellélegezhetnek. A Signal nem kapaszkodik beléjük mostantól.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Japán barátaink jobb betűtípus támogatást kaptak.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Szeretnéd gyorsan átfutni egy csoportos beszélgetés tartalmát? Mostantól több üzenet fér el egyszerre a képernyőre. Az azonos feladótól származó üzeneteket feladó szerint csoportosítjuk, ha közel azonos időben lettek elküldve.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Soha többé hiányzó matricacsomagok! Az asztali Signal verzió mostantól minden telefonon telepített csomaggal is megbirkózik.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Mostantól hozzáadhatsz csoporttagokat pusztán telefonszámuk alapján is.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Kedvenc kontaktjaid csak pár gombnyomás távolságra vannak. A kontaktkereső már támogatja a nem-latin kiosztásokat is, mint például a cirill.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Temukan menggunakan Nama pengguna",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Pesan suara terbatas hingga lima menit. Rekaman akan berhenti jika Anda berganti membuka aplikasi lain.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop tampak dalam karantina macOS dan tidak dapat melakukan pembaruan otomatis. Coba pindahkan $app$ ke $folder$ melalui Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Gagal memperoleh nama pengguna. Periksa koneksi Anda dan coba lagi.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Pengguna tidak ditemukan. $atUsername$ bukan pengguna Signal; pastikan Anda memasukkan nama pengguna yang lengkap.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Pilih anggota",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Kunjungi tautan",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Yang Baru",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Versi ini mengandung sejumlah perubahan kecil dan perbaikan bug agar Signal tetap berjalan lancar.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Finna eftir notandanafni",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Finna eftir símanúmeri",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Tími hljóðskilaboða er takmarkaður við fimm mínútur. Upptöku verður hætt ef þú skiptir yfir í annað forrit.",
"message": "Tími talskilaboða er takmarkaður við fimm mínútur. Upptöku verður hætt ef þú skiptir yfir í annað forrit.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal gat ekki uppfærst. Skoðaðu $url$ til að setja það upp handvirkt. Síðan ættirðu að $support$ varðandi þetta vandamál",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop er líklega í macOS-sóttkví (quarantine) og mun því ekki geta uppfært sig sjálfvirkt. Prófaðu að flytja $app$ í $folder$ með Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Mistókst að sækja notandanafn. Athugaðu nettenginguna þína og prófaðu svo aftur.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Mistókst að sækja símanúmer. Athugaðu nettenginguna þína og prófaðu svo aftur.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Notandi fannst ekki. $atUsername$ er ekki Signal-notandi. Gakktu úr skugga um að þú hafir sett inn allt notandanafnið.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Notandi fannst ekki. \"$phoneNumber$\" er ekki Signal-notandi.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Notandi fannst ekki. \"$phoneNumber$\" er ekki gilt símanúmer.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Veldu meðlimi",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Villa við að birta mynd",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Skoða tengil",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Hvað er nýtt",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Þessi útgáfa inniheldur nokkrar villuleiðréttingar og fínstillingar til að Signal keyri sem áreiðanlegast.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Nýtt uppfærslukerfi er komið til sögunnar, fólk ætti að sjá smærri uppfærslur á næstunni.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Forrit sem nota lykla fyrir gagnamiðla ættu að gleðjast - Signal heldur ekki lengur í þá.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Betri leturstuðningur fyrir japanska vini okkar.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Ertu að renna hratt yfir spjall hóps? Núna er meira pláss á skjánum fyrir fleiri skilaboð. Núna hópum við saman skilaboð frá sendanda í hópi ef þau eru nálægt hvert öðru í tíma.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Nú ætti aldrei að vanta neina límmerkjapakka. Vinnutölvuútgáfan getur núna meðhöndlað alla þá sömu límmerkjapakka og síminn þinn getur.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Þú getur núna bætt fólki í hópa með símanúmerinu þeirra.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Eftirlætistengiliðirnir þínir eru núna innan seilingar. Leit að tengiliðum styður núna stafróf sem ekki eru með latnesku letri, eins og t.d. kyrilísku.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Cerca tramite nome utente",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Trovarmi tramite numero di telefono",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "I messaggi vocali sono limitati a cinque minuti. La registrazione sarà interrotta se passi a un'altra app.",
"message": "I messaggi vocali sono limitati a un'ora. La registrazione sarà interrotta se passi a un'altra app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal non può essere aggiornato. Visita $url$ per installarlo manualmente. Poi $support$ riguardo a questo problema",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop è probabilmente nella quarantena di macOS e non sarà in grado di aggiornarsi automaticamente. Sposta $app$ in $folder$ con Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Impossibile recuperare il nome utente. Controlla la tua connessione e riprova.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Impossibile recuperare il numero di telefono. Controlla la tua connessione e riprova.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Utente non trovato. $atUsername$ non è un utente Signal user; assicurati di aver inserito il nome utente completo.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Utente non trovato. \"$phoneNumber$\" non è un utente Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Utente non trovato. \"$phoneNumber$\" non è un numero di telefono valido.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Scegli membri",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Errore nella visualizzazione dell'immagine",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visita link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Cosa c'è di nuovo",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Questa versione contiene una serie di piccole modifiche e correzioni di bug per far funzionare Signal senza problemi.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "È stato introdotto un nuovo sistema di aggiornamento e le persone dovrebbero iniziare a vedere aggiornamenti più piccoli con il prossimo aggiornamento.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Le applicazioni che usano i tasti multimediali si rallegrino! Signal non li blocca più.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Un miglior supporto dei caratteri per i nostri amici Giapponesi.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Scorrere velocemente la chat di gruppo? C'è più spazio per più messaggi sullo schermo contemporaneamente. Ora raggruppiamo i messaggi del mittente se sono vicini nel tempo.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Addio ai pacchetti di adesivi mancanti! Desktop dovrebbe ora essere in grado di gestire tutti i pacchetti di adesivi che il tuo telefono è in grado di gestire!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Ora puoi aggiungere persone ai gruppi usando solo il loro numero di telefono.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "I tuoi contatti preferiti sono ora a pochi tasti di distanza. La ricerca di contatti ora supporta alfabeti non latini come il cirillico.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "ユーザ名で検索",
"description": "Shown to separate the types of search results"
"message": "ユーザー名で検索",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "電話番号で検索",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ボイスメッセージは5分に制限されています。他のアプリに変えると録音がとまります。",
"message": "音声メッセージの長さは、1時間までです。他のアプリに切り替えると、録音を停止します。",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop が macOS の検疫にかかっていて自動更新できないようです。$app$を Finder で$folder$へ移動してください。",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "ユーザ名を検索できませんでした。インターネット接続を確認して再度試してください。",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "ユーザは見つかりませんでした。$atUsername$ はSignalユーザではありません。ユーザ名を確認してください。",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "メンバーの選択",
"description": "The title for the 'choose group members' left pane screen"
@ -5868,7 +5910,7 @@
}
},
"PendingRequests--block--confirm": {
"message": "Block Request",
"message": "リクエストをブロック",
"description": "Confirmation button of dialog to block a user from requesting to join via the link again"
},
"AvatarInput--no-photo-label--group": {
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "画像表示のエラー",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "表示する",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "更新情報",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Signalをスムーズに動作させるための微調整とバグ修正を行いました。",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "新しいアップデートシステムが導入され、これからは細かいアップデートが行われるようになります。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "メディアキーを使用するアプリケーションが、Signalに支配されることがなくなりました。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "日本語フォントへの対応を改善しました。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "グループチャットをななめ読みしますか?各メッセージが時間的に近い場合は送信者でグループ化し、一度に画面に表示できるメッセージの数を増やしました。",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "デスクトップ版Signalでステッカーパックが表示されないバグが、修正されました。スマートフォンと同じステッカーパックが使えます。",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "グループのメンバーを電話番号で追加できるようになりました。",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "連絡先の検索に、キリル文字などのラテン語以外の言語が対応しました。",
"description": "Release notes for v5.39"
}
}

View File

@ -460,21 +460,25 @@
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
},
"debugLogExplanation": {
"message": "This log will be posted publicly online for contributors to view. You may download the full log before submitting.",
"description": ""
"message": "When you click Submit, your log will be posted online for 30 days at a unique, unpublished URL. You may Save it locally first.",
"description": "Description of what will happen with your debug log"
},
"debugLogError": {
"message": "Something went wrong with the upload! Please email support@signal.org and attach your log as a text file.",
"description": ""
"description": "Error message a recommendations if debug log upload fails"
},
"debugLogSuccess": {
"message": "Debug log submitted",
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "Debug log uploaded. When you contact support, copy the link below and attach it along with a description of the problem you saw and steps to reproduce it.",
"message": "Debug log uploaded. When you contact support, copy the URL below and attach it along with a description of the problem you saw and steps to reproduce it.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... to see the full log, click Save",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
"message": "ថតចម្លងតំណភ្ជាប់",
"description": "Shown as the text for the copy button on the debug log screen"
@ -828,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -962,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "សារជាសំឡេង ត្រូវមានកំណត់ត្រឹម ៥ នាទី។ ការថត នឹងត្រូវបញ្ឈប់ បើអ្នកផ្លាស់ប្តូរទៅកម្មវិធីផ្សេង។",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1061,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ហាក់ដូចជាត្រូវបានដាក់ដាច់គេនៅ macOS និងមិនអាចធ្វើបច្ចុប្បន្នភាពដោយស្វ័យប្រវត្តិបានទេ។​ សូមសាកល្បងផ្លាស់ប្តូរ $app$ ទៅ $folder$ ជាមួយ Finder។",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2379,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2389,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choose members",
"description": "The title for the 'choose group members' left pane screen"
@ -4103,6 +4149,14 @@
"message": "តំណភ្ជាប់ក្រុមនេះ លែងមានសុពលភាពហើយ។",
"description": "Shown if you click a group link and we can't get information about it"
},
"GroupV2--join--link-forbidden--title": {
"message": "Cant Join Group",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--link-forbidden": {
"message": "You can't join this group via the group link because an admin removed you.",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--prompt-with-approval": {
"message": "An admin of this group must approve your request before you can join this group. If approved, your name and photo will be shared with its members.",
"description": "Shown when you click on a group link to confirm, if it requires admin approval"
@ -5137,6 +5191,30 @@
}
}
},
"GroupV2--admin-approval-bounce--one": {
"message": "$joinerName$ requested and cancelled their request to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
}
}
},
"GroupV2--admin-approval-bounce": {
"message": "$joinerName$ requested and cancelled $numberOfRequests$ requests to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
},
"numberOfRequests": {
"content": "$1",
"example": "3"
}
}
},
"GroupV2--group-link-add--disabled--you": {
"message": "You turned on the group link with admin approval disabled.",
"description": "Shown in timeline or conversation preview when v2 group changes"
@ -5713,6 +5791,16 @@
}
}
},
"PendingRequests--deny-for--with-link": {
"message": "Deny request from \"$name$\"? They will not be able to request to join via the group link again.",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
"content": "$1",
"example": "Meowsy Purrington"
}
}
},
"PendingInvites--invites": {
"message": "Invited by you",
"description": "This is the title list of all invites"
@ -5803,6 +5891,28 @@
"message": "Details about people invited to this group arent shown until they join. Invitees will only see messages after they join the group.",
"description": "Information shown below the invite list"
},
"PendingRequests--block--button": {
"message": "Block request",
"description": "Shown in timeline if users cancel their request to join a group via a group link"
},
"PendingRequests--block--title": {
"message": "Block request?",
"description": "Title of dialog to block a user from requesting to join via the link again"
},
"PendingRequests--block--contents": {
"message": "$name$ will not be able to join or request to join this group via the group link. They can still be added to the group manually.",
"description": "Details of dialog to block a user from requesting to join via the link again",
"placeholders": {
"name": {
"content": "$1",
"example": "Annoying Person"
}
}
},
"PendingRequests--block--confirm": {
"message": "Block Request",
"description": "Confirmation button of dialog to block a user from requesting to join via the link again"
},
"AvatarInput--no-photo-label--group": {
"message": "Add a group photo",
"description": "The label for the avatar uploader when no group photo is selected"
@ -6095,6 +6205,16 @@
}
}
},
"RemoveGroupMemberConfirmation__description__with-link": {
"message": "Remove \"$name$\" from the group? They will not be able to rejoin via the group link.",
"description": "When confirming the removal of a group member, show this text in the dialog",
"placeholders": {
"name": {
"content": "$1",
"example": "Jane Doe"
}
}
},
"CaptchaDialog__title": {
"message": "ផ្ទៀងផ្ទាត់ដើម្បីបន្តផ្ញើសារ",
"description": "Header in the captcha dialog"
@ -6935,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -6943,22 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.34--1": {
"message": "Ever used Signal while on an unstable connection? You can worry no more - disappearing message timer changes and more will now be sent out once your Wi-Fi feels better again.",
"description": "Release notes for v5.34"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -6967,8 +7079,20 @@
"message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.36--3": {
"message": "Thanks to our volunteer translators, we've added support for Scottish Gaelic!",
"description": "Release notes for v5.36"
"WhatsNew__v5.37--1": {
"message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ಧ್ವನಿ ಸಂದೇಶಗಳನ್ನು ಐದು ನಿಮಿಷಗಳಿಗೆ ಮಿತಿಗೊಳಿಸಲಾಗಿದೆ. ಇನ್ನೊಂದು ಆಪ್‌ಗೆ ನೀವು ಬದಲಿಸಿದರೆ ರೆಕಾರ್ಡಿಂಗ್ ನಿಲ್ಲುತ್ತದೆ.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ಬಹುಶಃ macOS ಕ್ವಾರಂಟೈನ್‌ನಲ್ಲಿದೆ ಮತ್ತು ಇದು ಸ್ವಯಂ ಅಪ್‌ಡೇಟ್ ಆಗದಿರಬಹುದು. ಫೈಂಡರ್ ಬಳಸಿ $app$ ಅನ್ನು $folder$ ಗೆ ಸಾಗಿಸಲು ಪ್ರಯತ್ನಿಸಿ.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "ಸದಸ್ಯರನ್ನು ಆಯ್ಕೆ ಮಾಡಿ",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "음성 메시지는 5분으로 제한됩니다. 다른 앱으로 전환하면 녹음이 중단됩니다.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop이 macOS 검역에 걸렸을 가능성이 크며 자동 업데이트할 수 없습니다. 탐색기를 사용하여 $app$ 앱을 $folder$ 폴더로 이동하세요.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "멤버 선택",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -460,21 +460,25 @@
"description": "Shown in conversation banner when more than one group member's safety number has changed, but they were previously verified."
},
"debugLogExplanation": {
"message": "This log will be posted publicly online for contributors to view. You may download the full log before submitting.",
"description": ""
"message": "When you click Submit, your log will be posted online for 30 days at a unique, unpublished URL. You may Save it locally first.",
"description": "Description of what will happen with your debug log"
},
"debugLogError": {
"message": "Something went wrong with the upload! Please email support@signal.org and attach your log as a text file.",
"description": ""
"description": "Error message a recommendations if debug log upload fails"
},
"debugLogSuccess": {
"message": "Debug log submitted",
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "Debug log uploaded. When you contact support, copy the link below and attach it along with a description of the problem you saw and steps to reproduce it.",
"message": "Debug log uploaded. When you contact support, copy the URL below and attach it along with a description of the problem you saw and steps to reproduce it.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... to see the full log, click Save",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
"message": "Girêdanê kopî bike",
"description": "Shown as the text for the copy button on the debug log screen"
@ -828,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -962,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Peyamên dengî bi pênc deqeyan ve hatine sînardarkirin. Heke tu derbasî sepaneke din bibî ew ê tomarkirin raweste.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1061,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop is likely in a macOS quarantine, and will not be able to auto-update. Please try moving $app$ to $folder$ with Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2379,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2389,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choose members",
"description": "The title for the 'choose group members' left pane screen"
@ -4103,6 +4149,14 @@
"message": "This group link is no longer valid.",
"description": "Shown if you click a group link and we can't get information about it"
},
"GroupV2--join--link-forbidden--title": {
"message": "Cant Join Group",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--link-forbidden": {
"message": "You can't join this group via the group link because an admin removed you.",
"description": "Shown if you click a group link and you have been forbidden from joining via the link"
},
"GroupV2--join--prompt-with-approval": {
"message": "An admin of this group must approve your request before you can join this group. If approved, your name and photo will be shared with its members.",
"description": "Shown when you click on a group link to confirm, if it requires admin approval"
@ -5137,6 +5191,30 @@
}
}
},
"GroupV2--admin-approval-bounce--one": {
"message": "$joinerName$ requested and cancelled their request to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
}
}
},
"GroupV2--admin-approval-bounce": {
"message": "$joinerName$ requested and cancelled $numberOfRequests$ requests to join via the group link",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"joinerName": {
"content": "$1",
"example": "Alice"
},
"numberOfRequests": {
"content": "$1",
"example": "3"
}
}
},
"GroupV2--group-link-add--disabled--you": {
"message": "You turned on the group link with admin approval disabled.",
"description": "Shown in timeline or conversation preview when v2 group changes"
@ -5713,6 +5791,16 @@
}
}
},
"PendingRequests--deny-for--with-link": {
"message": "Deny request from \"$name$\"? They will not be able to request to join via the group link again.",
"description": "This is the modal content when confirming denying a group request to join",
"placeholders": {
"name": {
"content": "$1",
"example": "Meowsy Purrington"
}
}
},
"PendingInvites--invites": {
"message": "Invited by you",
"description": "This is the title list of all invites"
@ -5803,6 +5891,28 @@
"message": "Details about people invited to this group arent shown until they join. Invitees will only see messages after they join the group.",
"description": "Information shown below the invite list"
},
"PendingRequests--block--button": {
"message": "Block request",
"description": "Shown in timeline if users cancel their request to join a group via a group link"
},
"PendingRequests--block--title": {
"message": "Block request?",
"description": "Title of dialog to block a user from requesting to join via the link again"
},
"PendingRequests--block--contents": {
"message": "$name$ will not be able to join or request to join this group via the group link. They can still be added to the group manually.",
"description": "Details of dialog to block a user from requesting to join via the link again",
"placeholders": {
"name": {
"content": "$1",
"example": "Annoying Person"
}
}
},
"PendingRequests--block--confirm": {
"message": "Block Request",
"description": "Confirmation button of dialog to block a user from requesting to join via the link again"
},
"AvatarInput--no-photo-label--group": {
"message": "Add a group photo",
"description": "The label for the avatar uploader when no group photo is selected"
@ -6095,6 +6205,16 @@
}
}
},
"RemoveGroupMemberConfirmation__description__with-link": {
"message": "Remove \"$name$\" from the group? They will not be able to rejoin via the group link.",
"description": "When confirming the removal of a group member, show this text in the dialog",
"placeholders": {
"name": {
"content": "$1",
"example": "Jane Doe"
}
}
},
"CaptchaDialog__title": {
"message": "Verify to continue messaging",
"description": "Header in the captcha dialog"
@ -6935,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -6943,22 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.34--1": {
"message": "Ever used Signal while on an unstable connection? You can worry no more - disappearing message timer changes and more will now be sent out once your Wi-Fi feels better again.",
"description": "Release notes for v5.34"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -6967,8 +7079,20 @@
"message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.36--3": {
"message": "Thanks to our volunteer translators, we've added support for Scottish Gaelic!",
"description": "Release notes for v5.36"
"WhatsNew__v5.37--1": {
"message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ຂໍ້ຄວາມສຽງ ຖືກຈຳກັດ 5ນາທີ ຂອງການບັນທືກສຽງ ຈະຢຸດ ຖ້າທ່ານປຽ່ນໄປແອັບອື່ນ.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop is likely in a macOS quarantine, and will not be able to auto-update. Please try moving $app$ to $folder$ with Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Choose members",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Rasti pagal naudotojo vardą",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Rasti pagal telefono numerį",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Balso žinutės trukmė yra ribojama iki penkių minučių. Jei perjungsite į kitą programą, įrašymas bus sustabdytas.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Tikriausiai, Signal Desktop yra macOS karantine ir negalės būti automatiškai atnaujinta. Pabandykite, naudodami Finder, perkelti $app$ į $folder$.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nepavyko gauti naudotojo vardo. Patikrinkite interneto ryšį ir bandykite dar kartą.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Naudotojas nerastas. $atUsername$ nėra Signal naudotojas; įsitikinkite, kad įvedėte pilną naudotojo vardą.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Naudotojas nerastas. „$phoneNumber$“ nėra Signal naudotojas.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Naudotojas nerastas. „$phoneNumber$“ nėra tinkamas telefono numeris.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Pasirinkite narius",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Klaida atvaizduojant paveikslą",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Aplankyti tinklalapį",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Kas naujo",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Šioje versijoje yra daug smulkių patobulinimų ir klaidų ištaisymų, kurie padės Signal sklandžiai veikti.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Pristatyta nauja atnaujinimų sistema ir visi bičiuliai nuo kito atnaujinimo turėtų pradėti matyti smulkesnius atnaujinimus.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Medijos klavišus naudojančios programos džiūgaukite! Signal daugiau jų nebeblokuoja.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Geresnis šrifto palaikymas mūsų draugams japonams.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Greitai peržiūrite pokalbį? Vienu metu ekrane yra daugiau vietos žinutėms. Dabar, grupuojame siuntėjų žinutes, jeigu jos buvo išsiųstos panašiu laiku.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -468,7 +468,7 @@
"description": "Error message a recommendations if debug log upload fails"
},
"debugLogSuccess": {
"message": "Debug log submitted",
"message": "Atkļūdošanas žurnāls iesniegts",
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
@ -656,7 +656,7 @@
}
},
"decryptionErrorToastAction": {
"message": "Submit log",
"message": "Ieniegt žurnālu",
"description": "Label for the decryption error toast button"
},
"oneNonImageAtATimeToast": {
@ -688,11 +688,11 @@
"description": "Displayed when the desktop client is currently connecting to the server."
},
"connect": {
"message": "Click to reconnect.",
"message": "Noklikšķiniet, lai pieslēgtos atkārtoti.",
"description": "Shown to allow the user to manually attempt a reconnect."
},
"connectingHangOn": {
"message": "Shouldn't be long",
"message": "Nevajadzētu būt ilgi",
"description": "Subtext description for when the client is connecting to the server."
},
"offline": {
@ -784,7 +784,7 @@
"description": "Aria label for clear search button"
},
"searchIn": {
"message": "Search chat",
"message": "Meklēt sarunu",
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Atrast pēc lietotājvārds",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Meklēt pēc tālruņa numura",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Balss ziņu laiks ir ierobežots līdz piecām minūtēm. Pārslēdzoties uz citu lietotni, ierakstīšana tiks pārtraukta.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop, visticamāk, atrodas macOS karantīnā, un šo lietotnes versiju nevarēs automātiski atjaunināt. Pārvietojiet $app$uz $folder$, izmantojot meklētāju.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2136,11 +2154,11 @@
"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'."
},
"timestampFormat__long__today": {
"message": "[Today] LT",
"message": "[Šodien], LT",
"description": "Timestamp format string for displaying \"Today\" and the time"
},
"timestampFormat__long__yesterday": {
"message": "[Yesterday] LT",
"message": "[Vakar], LT",
"description": "Timestamp format string for displaying \"Yesterday\" and the time"
},
"messageBodyTooLong": {
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Izvēlēties dalībniekus",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Apmeklēt saiti",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Гласовните пораки се ограничени на пет минути. Снимањето ќе прекине ако се префлите на друга апликација.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop е најверојатно во macOS карантин, и нема да може автоматски да се ажурира. Ве молиме преместете го $app$ во $folder$ со помош на Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Избери членови",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Посети го линкот",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ശബ്ദ സന്ദേശങ്ങള്‍-ടെ സമയപരിധി അഞ്ചു മിനിട്ടാണ് . മറ്റൊരു ആപ്ലിക്കേഷനിലോട്ടു മാറിയാൽ സന്ദേശം രേഖപ്പെടുത്തുന്നത് നിലക്കും ",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ഒരു മാക് ഒഎസ് ക്വാറന്റൈനിലാണ്, അതിനാൽ സ്വയം അപ്‌ഡേറ്റ് ചെയ്യാൻ കഴിയില്ല. ഫൈൻഡർ ഉപയോഗിച്ച് $app$- യെ $folder$- ലേക്ക് നീക്കാൻ ശ്രമിക്കുക.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "അംഗങ്ങളെ തിരഞ്ഞെടുക്കുക",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "वापरकर्ता नावाने शोधा",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "व्हॉईस संदेश पाच मिनिटापर्यंत मर्यादित आहेत. आपण दुसऱ्या अ‍ॅपवर स्विच केल्यास रेकॉर्डिंग बंद होऊन जाईल.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop हे कदाचित macOS क्वॉरंटाईन मध्ये आहे, आणि स्वयं-अद्यतन करू शकणार नाही. कृपया$folder$यासोबत फाईंडरने $app$वर हलविण्याचा प्रयत्न करा.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "वापरकर्तानाव प्राप्त करता आले नाही. तुमचे कनेक्शन तपासा आणि पुन्हा प्रयत्न करा.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "वापरकर्ता सापडला नाही. $atUsername$ Signal वापरकर्ता नाहीये; आपण संपूर्ण वापरकर्तानाव प्रविष्ट केले आहे याची खात्री करा.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "सदस्य निवडा",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "लिंकला भेट द्या",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "नवीन काय आहे",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Signal निर्विघ्नपणे चालत ठेवण्यासाठी या आवृत्तीत अनेक लहान समन्वय आणि त्रुटी दुरुस्त्या समाविष्ट आहेत",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Cari mengikut Nama Pengguna",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Mesej suara terhad kepada lima minit. Rakaman akan berhenti jika anda bertukar kepada apl lain.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop kemungkinan berada dalam kuarantin macOS dan tidak dapat mengemas kini secara automatik. Sila cuba mengalihkan $app$ ke $folder$ dengan Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Gagal mencari nama pengguna. Periksa sambungan anda dan cuba lagi.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Pengguna tidak ditemui. $atUsername$ bukan pengguna Signal; pastikan anda telah memasukkan nama pengguna yang lengkap.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Pilih ahli",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Perkara Baharu",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Versi ini mengandungi sedikit tweak kecil dan pembetulan pepijat untuk memastikan Signal berjalan dengan lancar.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Talemeldinger er begrenset til fem minutter. Innspillingen vil stoppe hvis du bytter til en annen app.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop er sannsynligvis i en macOS-karantene, og vil derfor ikke kunne oppdatere seg automatisk. Prøv å flytte $app$ til $folder$ ved bruk av Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Velg medlemmer",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -788,7 +788,7 @@
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
"message": "Geen resultaten voor $searchTerm$",
"message": "Geen resultaten voor “$searchTerm$”",
"description": "Shown in the search left pane when no results were found",
"placeholders": {
"searchTerm": {
@ -802,7 +802,7 @@
"description": "Shown in the search left pane when no results were found and primary device has SMS/MMS handling enabled"
},
"noSearchResultsInConversation": {
"message": "Geen resultaten voor “$searchTerm$” in $conversationName$",
"message": "Geen resultaten voor “$searchTerm$” in “$conversationName$”",
"description": "Shown in the search left pane when no results were found",
"placeholders": {
"searchTerm": {
@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Zoeken op gebruikersnaam",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Zoeken op telefoonnummer",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -962,11 +966,11 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to max time limit"
},
"voiceRecordingInterruptedBlur": {
"message": "Het opnemen van een audiobericht is gestopt omdat je je aandacht naar een nadere app hebt verplaatst.",
"message": "Het opnemen van een audiobericht is gestopt omdat je een andere app aandacht hebt gegeven.",
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Audioberichten hebben een lengtelimiet van vijf minuten. De opname wordt gestopt als je je aandacht verlegd naar een andere app.",
"message": "Audioberichten hebben een lengtelimiet van een uur. De opname wordt gestopt als je een andere app aandacht geeft.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal kan niet worden bijgewerkt. Bezoek $url$ om handmatig een nieuwere versie te installeren. Neem vervolgens over dit probleem $support$. ",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal-desktop bevind zich waarschijnlijk in een MacOS quarantaine, waardoor het niet automatisch kan bijwerken. Probeer de directory $app$ met Finder naar $folder$ te verplaatsen.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Het ophalen van de gebruikersnaam is mislukt. Ga na dat je apparaat met het internet is verbonden en probeer het opnieuw.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Het ophalen van het telefoonnummer is mislukt. Ga na dat je apparaat met het internet is verbonden en probeer het opnieuw.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "De gebruikersnaam is niet gevonden. $atUsername$ is geen Signalgebruiker. Ga na dat je de volledige gebruikersnaam hebt ingevoerd.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Gebruiker niet gevonden. “$phoneNumber$” heeft de Signal-app niet.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Gebruiker niet gevonden. “$phoneNumber$” is geen geldig telefoonnummer.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Groepsleden kiezen",
"description": "The title for the 'choose group members' left pane screen"
@ -3692,7 +3734,7 @@
"description": "Shown to indicate this user is not a member of any groups"
},
"no-groups-in-common-warning": {
"message": "Je hebt met deze persoon geen gemeenschappelijke groep: overweeg dit gespreksverzoek zorgvuldig.",
"message": "Deze persoon is een onbekende, je zit zelfs niet in een groepsgesprek met deze persoon. Overweeg daarom zorgvuldig of je dit gespreksverzoek wilt aanvaarden.",
"description": "When a user has no common groups, show this warning"
},
"acceptCall": {
@ -4302,7 +4344,7 @@
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-attributes--admins--other": {
"message": "$adminName$ heeft de instelling voor wie de groepsinformatie kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "$adminName$ heeft de instelling voor wie de groepsinformatie kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"adminName": {
@ -4312,15 +4354,15 @@
}
},
"GroupV2--access-attributes--admins--you": {
"message": "Je hebt de instelling voor wie de groepsinformatie kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "Je hebt de instelling voor wie de groepsinformatie kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-attributes--admins--unknown": {
"message": "Een beheerder heeft de instelling voor wie de groepsinformatie kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "Een beheerder heeft de instelling voor wie de groepsinformatie kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-attributes--all--other": {
"message": "$adminName$ heeft de instelling voor wie de groepsinformatie kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "$adminName$ heeft de instelling voor wie de groepsinformatie kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"adminName": {
@ -4330,15 +4372,15 @@
}
},
"GroupV2--access-attributes--all--you": {
"message": "Je hebt de instelling voor wie de groepsinformatie kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "Je hebt de instelling voor wie de groepsinformatie kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-attributes--all--unknown": {
"message": "Een beheerder heeft de instelling voor wie de groepsinformatie kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "Een beheerder heeft de instelling voor wie de groepsinformatie kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-members--admins--other": {
"message": "$adminName$ heeft de instelling voor wie de groepsleden kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "$adminName$ heeft de instelling voor wie de groepsleden kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"adminName": {
@ -4348,15 +4390,15 @@
}
},
"GroupV2--access-members--admins--you": {
"message": "Je hebt de instelling voor wie de groepsleden kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "Je hebt de instelling voor wie de groepsleden kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-members--admins--unknown": {
"message": "Een beheerder heeft de instelling voor wie de groepsleden kan wijzigen naar “Enkel beheerders” ingesteld.",
"message": "Een beheerder heeft de instelling voor wie de groepsleden kan wijzigen naar Enkel beheerders ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-members--all--other": {
"message": "$adminName$ heeft de instelling voor wie de groepsleden kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "$adminName$ heeft de instelling voor wie de groepsleden kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes",
"placeholders": {
"adminName": {
@ -4366,11 +4408,11 @@
}
},
"GroupV2--access-members--all--you": {
"message": "Je hebt de instelling voor wie de groepsleden kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "Je hebt de instelling voor wie de groepsleden kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-members--all--unknown": {
"message": "Een beheerder heeft de instelling voor wie de groepsleden kan wijzigen naar “Alle groepsleden” ingesteld.",
"message": "Een beheerder heeft de instelling voor wie de groepsleden kan wijzigen naar Alle groepsleden ingesteld.",
"description": "Shown in timeline or conversation preview when v2 group changes"
},
"GroupV2--access-invite-link--disabled--you": {
@ -7017,6 +7059,10 @@
"message": "Fout bij weergeven van afbeelding",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Verwijzing volgen",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "wat er nieuw is",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Deze versie bevat een aantal kleine foutoplossingen waardoor Signal voor nog meer mensen goed werkt.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Het systeem om Signal bij te werken is vernieuwd, daardoor zouden updates vanaf nu kleiner moeten zijn.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Als je een toetsenbord met mediatoetsen gebruikt dan is het fijn dat Signal niet langer blokkeert dat je die toetsen voor andere applicaties gebruikt.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Verbeterd lettertype voor Japans.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Er passen vanaf nu meer berichten tegelijk op het scherm omdat berichten van dezelfde afzender die korte tijd na elkaar zijn verzonden nu als een groep berichten wordt weergeven.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Er was een fout waardoor sommige stickerpakketten niet konden worden weergegeven in Signal-desktop. Vanaf nu kun je alle stickerpakketten zien net als op je telefoon.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Je kunt vanaf nu ook personen toevoegen aan groepen door alleen hun telefoonnummer in te voeren.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Ook personen die niet het Latijnse alfabet gebruiken kunnen vanaf nu contactpersonen zoeken.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Finn med brukarnamn",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Talemeldingar kan vere opptil fem minutt lange. Opptaket stoppar dersom du byter til ein annan app.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop er sannsynlegvis i ein macOS-karantene, og kan ikkje oppdatera automatisk. Prøv å flytta $app$ til $folder$ med Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Klarte ikkje henta brukarnamn. Sjekk tilkoplinga di og prøv igjen.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Vel medlemmar",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Følgj lenka",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Kva er nytt",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ਅਵਾਜ਼ ਵਾਲੇ ਸੁਨੇਹਿਆਂ ਦੀ ਸੀਮਾ ਪੰਜ ਮਿੰਟ ਤਕ ਹੈ। ਜੇ ਤੁਸੀਂ ਕਿਸੇ ਹੋਰ ਐਪ ਵਿੱਚ ਚਲੇ ਜਾਂਦੇ ਹੋ ਤਾਂ ਰਿਕਾਰਡਿੰਗ ਬੰਦ ਹੋ ਜਾਵੇਗੀ।",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ਸੰਭਾਵਤ ਰੂਪ ਵਿੱਚ ਇੱਕ macOS ਕੁਆਰੰਟੀਨ ਹੈ, ਅਤੇ ਆਪਣੇ ਆਪ ਅੱਪਡੇਟ ਨਹੀਂ ਹੋ ਸਕੇਗਾ। ਕਿਰਪਾ ਕਰਕੇ ਫ਼ਾਈਂਡਰ ਦੇ ਨਾਲ $app$ ਨੂੰ $folder$ ਵਿੱਚ ਲਿਜਾਉਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "ਮੈਂਬਰਾਂ ਨੂੰ ਚੁਣੋ",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "ਨਵਾਂ ਕੀ ਹੈ",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Znajdź po nazwie użytkownika",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Znajdź po numerze telefonu",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Maksymalna długość wiadomości głosowych to pięć minut. Jeśli przełączysz się na inną aplikację, nagrywanie zostanie zatrzymane.",
"message": "Maksymalna długość wiadomości głosowych to godzina. Jeśli przełączysz się na inną aplikację, nagrywanie zostanie zatrzymane.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Aktualizacja Signal nie powiodła się. Odwiedź $url$, aby zainstalować aplikację ręcznie. Następnie, $support$ w sprawie tego problemu",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop prawdopodobnie znajduje się w kwarantannie systemu MacOS i nie będzie można dokonać automatycznej aktualizacji. Spróbuj przenieść $app$ do $folder$ za pomocą Findera.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nie udało się wyszukać nazwy użytkownika. Sprawdź połączenie z internetem i spróbuj ponownie.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Nie udało się wyszukać numeru telefonu. Sprawdź połączenie z internetem i spróbuj ponownie.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Nie znaleziono użytkownika. $atUsername$ nie jest użytkownikiem Signal. Upewnij się, że podałeś(aś) pełną nazwę użytkownika.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Nie znaleziono użytkownika. \"$phoneNumber$\" nie jest użytkownikiem Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Nie znaleziono użytkownika. \"$phoneNumber$\" nie jest prawidłowym numerem telefonu.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Wybierz członków",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Błąd przy wyświetlaniu obrazu",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Odwiedź link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Co nowego",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Ta wersja zawiera wiele drobnych ulepszeń i poprawek błędów, zapewniających płynne działanie aplikacji Signal.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Wprowadziliśmy nowy system aktualizacji. Od następnej wersji powinieneś zauważyć, że pliki aktualizacji są mniejsze.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Święto dla aplikacji korzystających z klawiszy multimedialnych! Signal już ich nie kontroluje.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Lepsza obsługa czcionek dla naszych, japońskich przyjaciół.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Chcesz szybko przejrzeć rozmowę grupową? Wiadomości mają więcej miejsca na ekranie. Teraz grupujemy wiadomości od tego samego nadawcy, wysłane w krótkim odstępie czasu.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Przepadnijcie brakujące pakiety naklejek! Aplikacja Desktop powinna teraz obsługiwać wszystkie pakiety naklejek, które masz na telefonie!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Teraz możesz dodawać ludzi do grup, używając tylko ich numeru telefonu.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Twoje ulubione kontakty znajdą się już po naciśnięciu kilku klawiszy. Wyszukiwanie kontaktów obsługuje teraz alfabety inne, niż łaciński, takie jak cyrylica.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "غږیز پیغام د پنځو دقیقو محدودیت لري. که چیرته تاسې بل اپلیکیشن ته ولاړ شئ نو ثبتول به ودرول شي.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "د ډیسکټاپ Signal ښايي د macOS په قرنطین کې وي او له همدې کبله ښايي د اتومات اپډیټ جوګه نه وي. د مهرباني له مخې هڅه وکړئ تر څو $app$ سرله فاینډر $folder$ ته ولیږدوئ.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "د غړو ټاکنه",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "څه شی نوي دي",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "دغه نسخه یو شمېر واړه کارونه او د بوګ جوړونې لري تر څو Signal په روانه توګه سره کار ورکړي.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -472,11 +472,11 @@
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "O registro de depuração foi enviado. Ao contatar o suporte, copie a URL abaixo e anexe-a junto com uma descrição do problema que você teve e os passos para reproduzi-lo.",
"message": "O registro de depuração foi enviado. Ao entrar em contato com o suporte, copie a URL abaixo e anexe-a junto com uma descrição do problema que você teve e o passo a passo para reproduzi-lo.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogLogIsIncomplete": {
"message": "... para ver o registro completo, clique em Salvar",
"message": " para ver o registro completo, clique em Salvar",
"description": "Shown as the text for the copy button on the debug log screen"
},
"debugLogCopy": {
@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Encontre por nome de usuário",
"description": "Shown to separate the types of search results"
"message": "Encontrar pelo nome de usuário",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Encontrar pelo número de telefone",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Mensagens de voz são limitadas a cinco minutos. A gravação será interrompida se você trocar de aplicativo.",
"message": "Mensagens de voz são limitadas a uma hora. A gravação será interrompida se você trocar de aplicativo.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal não foi atualizado. Visite $url$ para instalá-lo manualmente. Em seguida, $support$ sobre esse problema",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "O Signal Desktop possivelmente está na quarentena do macOS, portanto não será capaz de atualizar-se automaticamente, Por favor, tente mover $app$ para $folder$ usando o Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Falha ao buscar o nome de usuário. Verifique a sua conexão e tente novamente.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Falha ao buscar o número de telefone. Verifique a sua conexão e tente novamente.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Pessoa não encontrada. $atUsername$ não é um nome de usuário registrado no Signal; certifique-se de que você digitou o nome de usuário completo.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Usuário não encontrado. \"$phoneNumber$\" não está no Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Usuário não encontrado. \"$phoneNumber$\" não é um número de telefone válido.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Escolher membros",
"description": "The title for the 'choose group members' left pane screen"
@ -5858,7 +5900,7 @@
"description": "Title of dialog to block a user from requesting to join via the link again"
},
"PendingRequests--block--contents": {
"message": "$name$ não poderá participar ou solicitar a participação neste grupo via o link do grupo. Essa pessoa ainda poderá ser convidada ao grupo.",
"message": "$name$ não poderá participar ou pedir para participar deste grupo via o link do grupo. Essa pessoa ainda poderá ser convidada ao grupo.",
"description": "Details of dialog to block a user from requesting to join via the link again",
"placeholders": {
"name": {
@ -7017,6 +7059,10 @@
"message": "Erro ao exibir a imagem",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Abrir link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Novidades",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Essa versão contém pequenos retoques e consertos no Signal para ele continuar funcionando confortavelmente.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Melhoramos a interação entre seu aplicativo e nossos servidores. O tamanho das atualizações será menor a partir de agora.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Melhoramos a interação entre o Signal e as teclas do teclado que retomam músicas em pausa e aumentam o volume.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Melhoramos o contorno de caracteres japoneses para facilitar a sua leitura.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Pretende ler rapidamente a conversa desse grupo? A partir de agora, há mais espaço para caber mais mensagens na tela, ao mesmo tempo, por causa de as mensagens do mesmo remetente serem agrupadas, se forem enviadas em um curto espaço de tempo.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Os pacotes de figurinhas que tanto faltava estão aqui! Agora o Desktop deve suportar os mesmos pacotes de figurinhas que seu telefone!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Agora você pode adicionar pessoas em grupos, por meio do número de telefone delas.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "A partir de agora, é mais fácil encontrar os seus contatos favoritos. A busca de contatos tem suporte para alfabetos não-latinos como o cirílico.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Procurar por 'Nome de utilizador'",
"description": "Shown to separate the types of search results"
"message": "Procurar por nome de utilizador",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Procurar por número de telefone",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "As mensagens de voz estão limitadas ao máximo de 5 minutos. A gravação irá parar caso mude para outra aplicação.",
"message": "As mensagens de voz estão limitadas a uma hora. A gravação irá parar caso mude para outra aplicação.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal não foi atualizado. Visite $url$ para instalá-lo manualmente. De seguida, $support$ acerca deste problema",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Provavelmente o Signal Desktop encontra-se na quarentena do macOS e como tal não será possível atualizar automaticamente. Por favor, tente mover $app$ para $folder$ com o Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Falha ao procurar o nome de utilizador. Verifique a sua ligação e tente novamente.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Falha ao procurar o número de telefone. Verifique a sua ligação e tente novamente.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Utilizador não encontrado. $atUsername$ não é um nome de utilizador registado no Signal, certifique-se de que você introduziu o nome de utilizador completo.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Utilizador não encontrado. \"$phoneNumber$\" não é um utilizador do Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Utilizador não encontrado. \"$phoneNumber$\" não é um número de telefone válido.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Escolher membros",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Erro ao exibir a imagem",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Abrir link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Novidades",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Esta versão contém um número de pequenas funcionalidades e correções de erros de forma a manter o Signal a correr suavemente.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Foi introduzida uma nova atualização do sistema e as pessoas deverão começar a ver pequenas atualizações com a próxima atualização..",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Aplicações que utilizam teclas multimédia alegrem-se! O Signal deixou de ter controlo sobre elas.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Melhor suporte de letras para os seus amigos Japoneses.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Está a analisar rapidamente essa conversa do grupo? Existe mais espaço no ecrã para mais mensagens ao mesmo tempo. Agora agrupamos as mensagens do remetente caso estejam próximas temporalmente.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Os pacotes de autocolantes que faltavam apareceram! A área de trabalho agora deverá ser capaz de lidar com todos os pacotes de autocolantes que o seu telemóvel também pode!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Agora você pode adicionar pessoas a grupos, através do número de telefone delas.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "A partir de agora, é mais fácil encontrar os seus contactos favoritos. A procura de contactos tem suporte para alfabetos não-latinos como o cirílico.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Caută după nume de utilizator",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Caută după numărul de telefon",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Mesajele vocale sunt limitate la cinci minute. Înregistrarea se va opri dacă deschizi altă aplicație.",
"message": "Mesajele vocale sunt limitate la o oră. Înregistrarea se va opri dacă deschizi altă aplicație.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal nu a putut fi actualizat. Mergi la $url$ pentru a instala manual. Apoi, $support$ în legătură cu această problemă",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop se află probabil în carantină macOS, și nu va putea fi actualizat automat. Te rugăm să încearci să muți $app$ în $folder$ folosind Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Nu s-a găsit numele de utilizator. Verifică conexiunea și încearcă din nou.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Nu s-a găsit numărul de telefon. Verifică conexiunea și încearcă din nou.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Utilizatorul nu a fost găsit. $atUsername$ nu este un utilizator Signal, asigură-te că ai introdus numele de utilizator complet.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Utilizator nu a fost găsit. \"$phoneNumber$\" nu este un utilizator Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Utilizator nu a fost găsit. \"$phoneNumber$\" nu este un număr de telefon valid.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Alege membrii",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Eroare la afișarea imaginii",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Vezi linkul",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Ce este nou",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Această versiune conține o serie de mici modificări și remedieri ale unor erori pentru ca Signal să funcționeze fără probleme.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Am introdus un nou sistem de actualizare, utilizatorii vor vedea dimensiuni mai mici pentru actualizări o dată cu următoarea actualizare.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Aplicațiile ce folosesc tastele media se vor bucura! Signal nu va mai ține aceste taste blocate.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Suport mai bun pentru fonturi pentru prietenii noștri Japonezi.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Scanezi rapid acel grup de chat? Este mai mult spațiu pentru mai multe mesaje pe ecran simultan. Acum grupăm împreună mesajele expeditorului dacă sunt apropiate în timp.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Nu vor mai exista pachete de autocolante lipsă! Signal Desktop ar trebui să fie acum capabil să gestioneze toate pachetele de autocolante pe care le poate gestiona telefonul tău!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Acum poți adăuga persoane în grupuri folosind doar numărul lor de telefon.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Contactele tale preferate sunt acum la doar câteva apăsări de taste distanță. Căutarea de contacte acceptă acum alfabete non-latine, cum ar fi cel chirilic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Поиск по имени пользователя",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Поиск по номеру телефона",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Голосовые сообщения ограничены пятью минутами. Запись остановится, если вы переключитесь на другое приложение.",
"message": "Голосовые сообщения ограничены одним часом. Запись остановится, если вы переключитесь на другое приложение.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1048,7 +1052,7 @@
"description": "Shown in a button when a conversation is unmuted and can be muted"
},
"cannotUpdateDetail": {
"message": "Signal не удалось обновиться. $retry$ или посетите $url$, чтобы установить обновление вручную. Затем, $support$ об этой проблеме",
"message": "Signal не удалось обновиться. $retry$ или посетите $url$, чтобы установить обновление вручную. Затем $support$ об этой проблеме",
"description": "Shown if a general error happened while trying to install update package",
"placeholders": {
"retry": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal не удалось обновиться. Посетите $url$, чтобы установить обновление вручную. Затем $support$ об этой проблеме",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Скорее всего, Signal Desktop находится в карантине macOS и не сможет обновляться автоматически. Пожалуйста, попробуйте переместить $app$ в $folder$ при помощи Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Не удалось выполнить запрос по имени пользователя. Проверьте ваше подключение к интернету и попробуйте еще раз.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Не удалось выполнить запрос по номеру телефона. Проверьте ваше подключение к интернету и попробуйте ещё раз.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Пользователь не найден. $atUsername$ — не пользователь Signal; убедитесь, что вы ввели полное имя пользователя.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Пользователь не найден. «$phoneNumber$» — не пользователь Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Пользователь не найден. «$phoneNumber$» — недействительный номер телефона.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Выберите участников",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Ошибка при показе изображения",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Посетить ссылку",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Что нового",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Эта версия содержит несколько небольших изменений и исправлений ошибок.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Была представлена новая система обновлений: вы можете заметить меньшие по размеру обновления, начиная со следующего.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Приложения, которые используют медиа-клавиши, возрадуйтесь! Signal больше не удерживает их.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Улучшенная поддержка шрифтов для наших японских друзей.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Быстро просматриваете групповой чат? На экране будет больше места для сообщений, потому что мы теперь группируем сообщения от одного отправителя, если они близки по времени.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Проблемы с недостатком наборов стикеров закончились! Теперь Signal Desktop поддерживает все наборы стикеров, которые поддерживает ваш телефон!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Теперь вы можете добавлять людей в группы, просто используя их номера телефонов.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Ваши любимые контакты теперь всего в нескольких нажатиях по клавишам от вас. Поиск по контактам теперь поддерживает не латинские алфавиты, например кириллический.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Nájsť podľa používateľského mena",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Nájsť podľa telefónneho čísla",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Hlasové správy môžu mať maximálne 5 minút. Nahrávanie sa zastaví ak prepnete na inú aplikáciu.",
"message": "Hlasové správy sú obmedzené na jednu hodinu. Nahrávanie sa zastaví, ak prepnete na inú aplikáciu.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal sa nepodarilo aktualizovať. Navštívte $url$ a nainštalujte ho manuálne. Potom kontaktujte $support$ o tomto probléme",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop je pravdepodobne v karanténe macOS a preto sa nedokáže automaticky aktualizovať. Prosím skúste premiestniť $app$ do $folder$ pomocou programu Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Používateľské meno sa nepodarilo načítať. Skontrolujte pripojenie a skúste to znova.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Nepodarilo sa načítať telefónne číslo. Skontrolujte pripojenie a skúste to znova.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Užívateľ nenájdený. $atUsername$ nie je používateľom služby Signal; uistite sa, že ste zadali celé používateľské meno.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Užívateľ nenájdený. „$phoneNumber$“ nie je používateľom Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Užívateľ nenájdený. „$phoneNumber$“ nie je platné telefónne číslo.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Vybrať členov",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Chyba pri zobrazovaní obrázka",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Navštívte odkaz",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Čo je nové",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Táto verzia obsahuje množstvo drobných vylepšení a opráv chýb, ktoré zaisťujú bezproblémový chod systému Signal.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Bol predstavený nový aktualizačný systém a ľudia by mali začať vidieť menšie aktualizácie s ďalšou aktualizáciou.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Aplikácie, ktoré používajú mediálne klávesy, sa radujú! Signal už na nich nemá vplyv.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Lepšia podpora písma pre našich japonských priateľov.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Rýchlo prezeráte tento skupinový chat? Na obrazovke je viac miesta pre viac správ naraz. Správy odosielateľov teraz zoskupujeme, ak sú časovo blízko pri sebe.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Chýbajúce balíčky nálepiek sú preč! Desktop by teraz mal zvládnuť všetky balíčky nálepiek, ktoré dokáže váš telefón!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Teraz môžete pridávať ľudí do skupín iba pomocou ich telefónneho čísla.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Vaše obľúbené kontakty sú teraz vzdialené len na niekoľko stlačení kláves. Vyhľadávanie kontaktov teraz podporuje aj inú ako latinskú abecedu, ako napríklad cyriliku.",
"description": "Release notes for v5.39"
}
}

View File

@ -12,7 +12,7 @@
"description": "Shown in the top-level error popup, allowing user to copy the error text and close the app"
},
"unknownContact": {
"message": "Neznan kontakt",
"message": "Neznan stik",
"description": "Shown as the name of a contact if we don't have any displayable information about them"
},
"unknownGroup": {
@ -128,7 +128,7 @@
"description": "Window menu command to make the current window the size of the whole screen"
},
"windowMenuBringAllToFront": {
"message": "Prikaži vse na površju",
"message": "Prenesi vse v ospredje",
"description": "Window menu command to bring all windows of current application to front"
},
"viewMenuResetZoom": {
@ -148,7 +148,7 @@
"description": "View menu command to enter or leave Full Screen mode"
},
"viewMenuToggleDevTools": {
"message": "Vklopi razvijalska orodja",
"message": "Vklopi razvojna orodja",
"description": "View menu command to show or hide the developer tools"
},
"menuSetupAsNewDevice": {
@ -172,11 +172,11 @@
"description": "Shown in the context menu for an image to indicate that the user can copy the image"
},
"contextMenuNoSuggestions": {
"message": "Brez predlogov",
"message": "Ni predlogov",
"description": "Shown in the context menu for a misspelled word to indicate that there are no suggestions to replace the misspelled word"
},
"avatarMenuViewArchive": {
"message": "Poglej Arhiv",
"message": "Poglej arhiv",
"description": "One of the menu options available in the Avatar popup menu"
},
"avatarMenuChatColors": {
@ -316,7 +316,7 @@
}
},
"view": {
"message": "Preglej",
"message": "Prikaz",
"description": "Used as a label on a button allowing user to see more information"
},
"youLeftTheGroup": {
@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Iskanje po uporabniškem imenu",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Iskanje po telefonski številki",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Zvočna sporočila so omejena na največ pet minut. Snemanje se bo prekinilo, če boste preklopili na drugo aplikacijo.",
"message": "Glasovna sporočila so omejena na eno uro. Če boste preklopili na drugo aplikacijo, se bo snemanje ustavilo.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal se ni uspel posodobiti. Za ročno namestitev obiščite $url$. Nato $support$ o tem problemu.",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Aplikacija Signal Desktop je najverjetneje v karanteni sistema macOS in se zato ne more samo-nadgraditi. Poskusite premakniti datoteko $app$ v $folder$ z orodjem Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Iskanje neuspešno. Preverite povezavo in poskusite znova.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Ne najdemo številke. Preverite internetno povezavo in poskusite znova.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Uporabnik/ca ni bil najden/a. $atUsername$ ni uporabnik/ca Signala. Prepričajte se, da ste vnesli pravo ime.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Uporabnik_ca ni bil najden_a. \"$phoneNumber$\" ni uporabnik_ca Signala.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Uporabnik_ca ni bil najden_a. \"$phoneNumber$\" ni veljavna telefonska številka.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Izberi člane/ice",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,40 +7059,40 @@
"message": "Napaka pri prikazovanju slike",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Obišči povezavo",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Kaj je novega",
"description": "Title for the whats new modal"
},
"WhatsNew__bugfixes": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"message": "Ta različica vsebuje majhne spremembe in popravke, ki omogočajo, da Signal teče brez težav.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"message": "Hitro iščete po skupinskem pogovoru? Sedaj je na zaslonu več prostora za sporočila. Odslej združujemo sporočila pošiljatelja, ki so si časovno blizu.",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.36--2": {
"message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!",
"message": "Če uporabite funkcijo Izbriši za vse, boste odslej videli vrtečo se ikono, ki sporoča ali je bilo pošiljanje uspešno. Če to zaradi kakšnega razloga ne uspe, vam je na voljo ponovni poskus!",
"description": "Release notes for v5.36"
},
"WhatsNew__v5.37--1": {
"message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.",
"message": "Kratka sporočila ostajajo kratka tudi zato, ker stvari kot so časovne oznake dodajamo v isto vrstico kot besedilo. Sedaj vam je na voljo več prostora na zaslonu za tisti hitri 'hej', da preverite prijatelja.",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"message": "Nič več izgubljenih paketov z nalepkami! Namizna različica odslej deluje z vsemi paketi z nalepkami, s katerimi zna delati telefon!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Ljudi lahko sedaj dodajate v skupino z uporabo njihove telefonske številke.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Priljubljeni stiki so le še nekaj tipk oddaljeni. Iskanje stikov odslej podpira tudi ne-latinske abecede, kot je cirilica.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Gjej sipas Emri Përdoruesi",
"description": "Shown to separate the types of search results"
"message": "Gjeni sipas emri përdoruesi",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Gjeni sipas numri telefoni",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Mesazhet zanorë janë të kufizuar në pesë minuta. Incizimi fo të ndalet, nëse kaloni te një aplikacion tjetër.",
"message": "Mesazhet zanorë kufizohen në një orë. Incizimi do të ndalet, nëse kaloni te një tjetër aplikacion.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal-i su përditësua dot. Vizitoni $url$, që ta instaloni dorazi. Mandej, $support$ rreth këtij problemi",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal-i për Desktop gjendet në një si punë karantine nga macOS-i, dhe sdo të jetë në gjendje të vetëpërditësohet. Ju lutemi, provoni të kaloni $app$ te $folder$ me Finder-in.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Su arrit të sillet emër përdoruesi. Kontrolloni lidhjen tuaj dhe riprovoni.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Su arrit të sillej numër telefoni. Kontrolloni lidhjen tuaj dhe riprovoni.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Su gjet përdorues. $atUsername$ sështë përdorues Signal-i; sigurohuni se e keni dhënë të plotë emrin e përdoruesit.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Su gjet përdorues. “$phoneNumber$” sështë përdorues Signal-i.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Su gjet përdorues. “$phoneNumber$” sështë numër telefoni i vlefshëm.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Zgjidhni anëtarë",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Gabim në shfaqje figure",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Vizitoni lidhjen",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": ka të Re",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Ky version përmban një numër përimtimesh të vockla dhe ndreqje të metash për ta mbajtur të rrjedhshme punën e Signal-it.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Është sjellë për herë të parë një sistem i ri përditësimesh dhe njerëzit do të duhet të shohin përditësime më të vockla me përditësimin pasues.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Le të gëzohen aplikacionet që përdorin taste për media! Signal-i ska më punë me to.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Mbulim më i mirë shshkronjash për miqtë tanë japonezë.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Të skanohet shpejt ajo fjalosje grupi? Ka më tepër vend për më tepër mesazhe njëherësh në ekran. Tani do ti grupojmë tok mesazhet e dërguesit, nëse janë afër njërit-tjetrit në kohë.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Ska më paketa ngjitësish që mungojnë! Desktopi duhet të jetë në gjendje tanimë të trajtojë krejt paketat e ngjitësve që trajton telefoni juaj!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Tani mund të shtoni persona te grupe duke përdorur thjesht numrin e tyre të telefonit.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Kontaktet tuaja të parapëlqyera tani janë vetëm disa taste larg. Kërkimi i kontakteve tani mbulon alfabete jolatine, bie fjala, cirilik.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Пронађите корисничким именом",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Говорне поруке су ограничене на пет минута. Снимање ће се зауставити ако пређете на другу апликацију.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop је вероватно у карантину macOS-а, и неће моћи да се аутоматски ажурира. Покушајте да се померите $app$ у $folder$ са Finder-ом.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Није могуће налазити имена. Проверите да ли сте повезани на интернет и покушајте поново.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Корисник није нађен. $atUsername$ није Signal корисник; проверите да ли сте унели комплетно корисничко име.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Одаберите чланове",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Грешка при приказивања слике",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Посетите везу",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Шта ново",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Hitta efter användarnamn",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Röstmeddelanden är begränsade till fem minuter. Inspelningen stoppas om du byter till en annan app.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop är sannolikt i en MacOS-karantän och kan inte uppdateras automatiskt. Försök att flytta $app$ till $folder$ med Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Det gick inte att hämta användarnamnet. Kontrollera din anslutning och försök igen.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Användaren hittades inte. $atUsername$ är inte en Signal-användare; se till att du har angett hela användarnamnet.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Välj medlemmar",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Besök länk",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Vad är nytt",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Den här versionen innehåller ett antal små justeringar och felrättningar för att Signal ska fungera smidigt.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Bättre teckensnittsstöd för våra japanska vänner.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Ujumbe wa sauti hauwezi kuzidi dakika tano. Mchakato wa kurekodi utakomeshwa ikiwa utabadilisha programu unayotumia.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Huenda Signal Desktop ipo katika karantini ya macOS, na haitaweza kusasisha kiotomatiki. Tafadhali jaribu kuhamishia $app$ kwenye $folder$ kwa kutumia Kitafutaji.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Chagua wanachama",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "குரல் செய்திகள் ஐந்து நிமிடங்களுக்கு மட்டுமே. நீங்கள் மற்றொரு பயன்பாட்டிற்கு மாறினால் பதிவு நிறுத்தப்படும்.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop டெஸ்க்டாப் ஒரு macOS தனிமைப்படுத்தலில் இருக்கலாம், அதனால் தானாக புதுப்பிக்க முடியாது. $app$ பயன்பாட்டை $folder$ கோப்புறையில் Finder மூலம் நகர்த்த முயற்சிக்கவும்.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "உறுப்பினர்களை தேர்ந்தெடு",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "వాయిస్ సందేశాలు ఐదు నిమిషాలకు పరిమితం. మీరు మరొక అనువర్తనానికి మారితే రికార్డింగ్ ఆగిపోతుంది.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop macOS నిర్బంధంలో ఉండవచ్చు మరియు స్వయంచాలకంగా నవీకరించబడదు. ఫైండర్‌తో $app$ నుండి $folder$ వరకు తరలించడానికి ప్రయత్నించండి.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "సభ్యులను ఎన్నుకోండి",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ข้อความเสียงถูกจำกัดไว้ที่ 5 นาที การอัดเสียงจะหยุดเมื่อคุณสลับไปแอปอื่น",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "ดูเหมือนว่า Signal Desktop จะถูก macOS กักบริเวณและไม่สามารถปรับปรุงตัวเองได้อัตโนมัติ ลองย้าย $app$ ไปที่ $folder$ ด้วย Finder",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "เลือกสมาชิก",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Kullanıcı Adıyla Ara",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Sesli iletiler beş dakika ile sınırlıdır. Farklı bir uygulamaya geçtiğinizde kayıt durdurulacaktır.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop muhtemelen macOS karantinasında ve otomatik güncellenemeyecek. Lütfen Bulucu ile $app$ uygulamasını $folder$ klasörüne taşıyın.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2364,7 +2382,7 @@
"description": "Label for header when starting a new conversation"
},
"stories": {
"message": "Stories",
"message": "Hikayeler",
"description": "Label for header to go to stories view"
},
"contactSearchPlaceholder": {
@ -2383,6 +2401,10 @@
"message": "Kullanıcı adı alınamadı. Bağlantını kontrol edip tekrar dene.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Kullanıcı bulunamadı. $atUsername$ bir Signal kullanıcısı değil; tam kullanıcı adını girdiğinden emin ol.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Üyeleri seçin",
"description": "The title for the 'choose group members' left pane screen"
@ -6930,7 +6972,7 @@
"description": "Confirmation dialog description text for deleting a story"
},
"Stories__title": {
"message": "Stories",
"message": "Hikayeler",
"description": "Title for the stories list"
},
"Stories__mine": {
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Bağlantıyı ziyaret et",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Neler Yeni",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Bu sürüm Signal'in sorunsuz çalışması için gereken bir takım küçük düzeltme ve hata gidermelerini içerir.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Yeni bir güncelleme sistemi tanıtıldı ve insanlar bir sonraki güncellemeyle daha küçük güncellemeler görmeye başlamalı.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "İçerik tuşlarını kullanan uygulamalar sevilir! Signal artık onları tutmuyor.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Japon arkadaşlarımız için daha iyi yazı tipi desteği.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "ئۈن ئۇچۇر بەش مىنۇتتا چەكلىنىدۇ. ئەگەر باشقا بىر ئەپكە ئالماشسىڭىز، ئۈن ئۇچۇرنى خاتىرىلەش توختايدۇ.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop بەلكىم macOS نىڭ ئايرىش رايونىدىدەك قىلىدۇ، ئۆزلۈكىدىن يېڭىلىيالمايدۇ. Finder. دا $app$ نى $folder$ غا يۆتكەڭ.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "ئەزا تاللاش",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "Пошук за ім'ям користувача",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Пошук за номером телефону",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Голосові повідомлення обмежені п'ятьма хвилинами. Запис зупиниться, якщо ви перейдете на інший додаток.",
"message": "Довжина голосових повідомлень обмежена однією годиною. Запис зупиниться, якщо ви перейдете до іншого застосунку.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Не вдалось оновити Signal. Перейдіть до $url$ для встановлення вручну. А потім $support$ про цю проблему",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Швидше за все, Signal Desktop знаходиться в карантині macOS і не зможе автоматично оновлюватись. Будь ласка, спробуйте перемістити $app$ в $folder$ за допомогою Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Не вдалось знайти ім'я користувача. Перевірте з'єднання та спробуйте ще.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Не вдалось знайти номер телефону. Перевірте з'єднання та спробуйте ще.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Користувача не знайдено. $atUsername$ не є користувачем Signal. Впевніться, що ви ввели повне ім'я користувача.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "Користувача не знайдено. «$phoneNumber$» не є користувачем Signal.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "Користувача не знайдено. «$phoneNumber$» не є дійсним номером телефону.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Обрати учасників",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "Помилка показування зображення",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Перейти за посиланням",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Що нового",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "Ця версія містить ряд невеликих налаштувань і виправлень помилок для забезпечення безперебійної роботи Signal.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "Впроваджено нову систему оновлень, отже з наступного оновлення ви бачитимете менші оновлення.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Застосунки, які використовують ключі медіа, радійте! Signal більше вас не тримає.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Краща підтримка шрифту для наших японських друзів.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Швидко переглядаєте груповий чат? Відтепер на екрані вміщатимуться більше повідомлень. Адже ми почали об'єднувати повідомлення одного відправника, якщо вони надіслані одне за одним.",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Зниклі стікер-паки знайшлись! Відтепер комп'ютерна версія застосунку підтримує усі стікер-паки, що й телефон!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "Відтепер можна додавати користувачів до груп за їхнім номером телефону.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Ваші улюблені контакти усього у декількох натисканнях на клавіатуру від вас. Пошук контактів відтепер підтримує не лише латинські літери, як-от кирилицю.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "آڈیو پیغامات پانچ منٹ تک محدود ہیں۔ اگر آپ کسی اور ایپ پر سوئچ کرتے ہیں تو ریکارڈنگ بند ہوجائے گی۔",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop ممکنہ طور پر macOS کے quarantine میں ہے ، اور خودبخود تازہ کاری کرنے کے قابل نہیں ہوگا۔ برائے مہربانی فائنڈر کے ساتھ $app$ کو $folder$ میں منتقل کرنے کی کوشش کریں۔",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "ممبروں کا انتخاب کریں",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Tìm theo tên người dùng",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "Tin nhắn thoại được giới hạn lại ở năm phút. Việc thu âm sẽ dừng nếu bạn chuyển sang ứng dụng khác.",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop đang trong tình trạng cách ly trên macOS, và sẽ không thể tự-cập nhật được. Xin hãy dời $app$ đến $folder$ với ứng dụng Finder.",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Không tìm nạp được tên người dùng. Kiểm tra kết nối của bạn và thử lại.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "Không tìm thấy người dùng. $atUsername$ không phải là người dùng Signal; đảm bảo rằng bạn đã nhập tên người dùng hoàn chỉnh.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "Chọn thành viên",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "Có gì mới",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "Phiên bản này có một số chỉnh sửa nhỏ và sửa lỗi để giữ cho Signal hoạt động mượt mà.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -832,8 +832,12 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Find by Username",
"description": "Shown to separate the types of search results"
"message": "Find by username",
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "Find by phone number",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -966,7 +970,7 @@
"description": "Confirmation dialog message for when the voice recording is interrupted due to app losing focus"
},
"voiceNoteLimit": {
"message": "语音消息限制为五分钟。 如果您切换到另一个应用,录制将停止。",
"message": "Voice messages are limited to one hour. Recording will stop if you switch to another app.",
"description": "Shown in toast to warn user about limited time and that window must be in focus"
},
"voiceNoteMustBeOnlyAttachment": {
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal couldn't update. Visit $url$ to install it manually. Then, $support$ about this problem",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal Desktop 可能在 macOS 隔离区,无法自动升级。请用 Finder 移动$app$应用至$folder$。",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "Failed to fetch username. Check your connection and try again.",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "Failed to fetch phone number. Check your connection and try again.",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "User not found. $atUsername$ is not a Signal user; make sure youve entered the complete username.",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "User not found. \"$phoneNumber$\" is not a Signal user.",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "User not found. \"$phoneNumber$\" is not a valid phone number.",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "选择成员",
"description": "The title for the 'choose group members' left pane screen"
@ -7013,6 +7055,14 @@
}
}
},
"StoryImage__error": {
"message": "Error displaying image",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "Visit link",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "What's New",
"description": "Title for the whats new modal"
@ -7021,18 +7071,6 @@
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "Better font support for our Japanese friends.",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
"description": "Release notes for v5.36"
@ -7048,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "You can now add people to groups using just their phone number.",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
"description": "Release notes for v5.39"
}
}

View File

@ -833,7 +833,11 @@
},
"findByUsernameHeader": {
"message": "以使用者名稱搜尋",
"description": "Shown to separate the types of search results"
"description": "Shown when search could be a valid username, with one sub-item that will kick off the search"
},
"findByPhoneNumberHeader": {
"message": "以電話號碼搜尋",
"description": "Shown when search could be a valid phone number, with one sub-item that will kick off the search"
},
"at-username": {
"message": "@$username$",
@ -1065,6 +1069,20 @@
}
}
},
"cannotUpdateRequireManualDetail": {
"message": "Signal無法更新。 瀏覽 $url$ 以手動安裝。 然後,$support$ 關於這個問題",
"description": "Shown if a general error happened while trying to install update package and manual update is required",
"placeholders": {
"url": {
"content": "$2",
"example": "https://signal.org/download"
},
"support": {
"content": "$3",
"example": "contact support"
}
}
},
"readOnlyVolume": {
"message": "Signal 桌面版可能在 macOS 隔離區中,將無法自動更新。 請嘗試使用Finder 移動 $app$到 $folder$。",
"description": "Shown on MacOS if running on a read-only volume and we cannot update",
@ -2383,6 +2401,10 @@
"message": "取得使用者名稱失敗。檢查你的網路連接並重試。",
"description": "Shown if request to Signal servers to find username fails"
},
"Toast--failed-to-fetch-phone-number": {
"message": "取得使用者名稱失敗。檢查你的網路連接並重試。",
"description": "Shown if request to Signal servers to find phone number fails"
},
"startConversation--username-not-found": {
"message": "未找到該使用者。$atUsername$不是 Signal 使用者;請確定你輸入的是完整的使用者名稱。",
"description": "Shown in dialog if username is not found. Note that 'username' will be the output of at-username",
@ -2393,6 +2415,26 @@
}
}
},
"startConversation--phone-number-not-found": {
"message": "找不到使用者。\"$phoneNumber$\" 不是 Signal的使用者。",
"description": "Shown in dialog if phone number is not found.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"startConversation--phone-number-not-valid": {
"message": "找不到使用者。\"$phoneNumber$\" 不是有效的電話號碼。",
"description": "Shown in dialog if phone number is not valid.",
"placeholders": {
"phoneNumber": {
"content": "$1",
"example": "+1 203-123-4567"
}
}
},
"chooseGroupMembers__title": {
"message": "選擇成員",
"description": "The title for the 'choose group members' left pane screen"
@ -7017,6 +7059,10 @@
"message": "顯示影像錯誤",
"description": "aria-label for image errors"
},
"TextAttachment__preview__link": {
"message": "訪問連結",
"description": "Title for the link preview tooltip"
},
"WhatsNew__modal-title": {
"message": "有甚麼新的",
"description": "Title for the whats new modal"
@ -7025,18 +7071,6 @@
"message": "此版本包含許多小調整和錯誤修復,以維持 Signal 穩定運作。",
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.35--1": {
"message": "已經引入了一個新的更新系統,人們應該在下一次更新中開始看到較小的更新。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--2": {
"message": "使用媒體密鑰的應用程式應該很開心! Signal 不再控制它們。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.35--3": {
"message": "為我們的日本朋友提供更好的字體支援。",
"description": "Release notes for v5.35"
},
"WhatsNew__v5.36--1": {
"message": "快速掃描那個群組聊天? 螢幕上有更多空間可以同時顯示更多訊息。 如果傳送者的訊息在時間上很接近,我們現在將它們組合在一起。",
"description": "Release notes for v5.36"
@ -7052,5 +7086,13 @@
"WhatsNew__v5.37--2": {
"message": "想念遺失的貼圖包! 電腦版本現在能夠處理你的手機可以處理的所有貼圖包!",
"description": "Release notes for v5.37"
},
"WhatsNew__v5.39--1": {
"message": "你現在可以使用電話號碼將成員新增到群組。",
"description": "Release notes for v5.39"
},
"WhatsNew__v5.39--2": {
"message": "你最喜歡的聯絡人現在只需幾個按鍵即可。 搜索聯絡人現在支援非拉丁字母,例如塞里爾字母。",
"description": "Release notes for v5.39"
}
}

0
fixtures/diff-empty.bin Normal file
View File

Binary file not shown.

View File

@ -4,7 +4,7 @@
"description": "Private messaging from your desktop",
"desktopName": "signal.desktop",
"repository": "https://github.com/signalapp/Signal-Desktop.git",
"version": "5.39.0-beta.1",
"version": "5.39.0",
"license": "AGPL-3.0-only",
"author": {
"name": "Signal Messenger, LLC",
@ -87,7 +87,7 @@
"array-move": "2.1.0",
"axe-core": "4.1.4",
"backbone": "1.4.0",
"better-sqlite3": "https://github.com/signalapp/better-sqlite3#4f66ee7b85477016dd0b2c3d2f13dcb60abd452e",
"better-sqlite3": "https://github.com/signalapp/better-sqlite3#3c4a7eebba3d5f5d8cb88fe83be1c01b8c0dea7d",
"bezier-easing": "2.1.0",
"blob-util": "2.0.2",
"blueimp-load-image": "5.14.0",
@ -189,13 +189,13 @@
"@chanzuckerberg/axe-storybook-testing": "3.0.2",
"@electron/fuses": "1.5.0",
"@mixer/parallel-prettier": "2.0.1",
"@signalapp/mock-server": "1.2.1",
"@signalapp/mock-server": "1.3.0",
"@storybook/addon-actions": "5.1.11",
"@storybook/addon-knobs": "5.1.11",
"@storybook/addons": "5.1.11",
"@storybook/react": "5.1.11",
"@types/backbone": "1.4.5",
"@types/better-sqlite3": "7.4.0",
"@types/better-sqlite3": "7.5.0",
"@types/blueimp-load-image": "5.14.1",
"@types/chai": "4.2.18",
"@types/chai-as-promised": "7.1.4",

View File

@ -1,12 +0,0 @@
diff --git a/node_modules/@types/better-sqlite3/index.d.ts b/node_modules/@types/better-sqlite3/index.d.ts
index d6e4309..5948fd0 100755
--- a/node_modules/@types/better-sqlite3/index.d.ts
+++ b/node_modules/@types/better-sqlite3/index.d.ts
@@ -84,6 +84,7 @@ declare namespace BetterSqlite3 {
prototype: Database;
SqliteError: typeof SqliteError;
+ setCorruptionLogger(fn: (message: string) => void): void;
}
}

View File

@ -2360,7 +2360,6 @@ button.ConversationDetails__action-button {
}
@include keyboard-mode {
border: none;
&:focus {
border-color: $color-ultramarine;
outline: none;

View File

@ -264,7 +264,9 @@ export const ProfileEditor = ({
const [avatarBuffer, setAvatarBuffer] = useState<Uint8Array | undefined>(
undefined
);
const [isLoadingAvatar, setIsLoadingAvatar] = useState(true);
const [isLoadingAvatar, setIsLoadingAvatar] = useState(
Boolean(profileAvatarPath)
);
const [stagedProfile, setStagedProfile] = useState<ProfileDataType>({
aboutEmoji,
aboutText,

View File

@ -2628,7 +2628,7 @@ export class Message extends React.PureComponent<Props, State> {
const containerStyles = {
width: isShowingImage ? width : undefined,
};
if (!isStickerLike && direction === 'outgoing') {
if (!isStickerLike && !deletedForEveryone && direction === 'outgoing') {
Object.assign(containerStyles, getCustomColorStyle(customColor));
}

View File

@ -239,7 +239,6 @@ export const ChooseGroupMembersModal: FunctionComponent<PropsType> = ({
{i18n('AddGroupMembersModal--title')}
</h1>
<SearchInput
disabled={candidateContacts.length === 0}
i18n={i18n}
placeholder={i18n('contactSearchPlaceholder')}
onChange={event => {
@ -277,7 +276,7 @@ export const ChooseGroupMembersModal: FunctionComponent<PropsType> = ({
))}
</ContactPills>
)}
{candidateContacts.length ? (
{rowCount ? (
<Measure bounds>
{({ contentRect, measureRef }: MeasuredComponentProps) => {
// We disable this ESLint rule because we're capturing a bubbled keydown

View File

@ -3893,7 +3893,10 @@ async function integrateGroupChange({
const newMembers = profileKeysToMembers(newProfileKeys);
if (groupChangeMessages.length !== 0 || newMembers.length !== 0) {
if (
canApplyChange &&
(groupChangeMessages.length !== 0 || newMembers.length !== 0)
) {
assert(
groupChangeMessages.length === 0,
'Fallback group state processing should not kick in'

View File

@ -1,7 +1,7 @@
// Copyright 2020-2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { debounce, isNumber } from 'lodash';
import { debounce, isNumber, chunk } from 'lodash';
import pMap from 'p-map';
import Long from 'long';
@ -26,6 +26,7 @@ import {
toGroupV2Record,
} from './storageRecordOps';
import type { MergeResultType } from './storageRecordOps';
import { MAX_READ_KEYS } from './storageConstants';
import type { ConversationModel } from '../models/conversations';
import { strictAssert } from '../util/assert';
import { dropNull } from '../util/dropNull';
@ -979,26 +980,36 @@ async function processRemoteRecords(
`count=${remoteOnlyRecords.size}`
);
const readOperation = new Proto.ReadOperation();
readOperation.readKey = Array.from(remoteOnlyRecords.keys()).map(
Bytes.fromBase64
);
const credentials = window.storage.get('storageCredentials');
const storageItemsBuffer =
await window.textsecure.messaging.getStorageRecords(
Proto.ReadOperation.encode(readOperation).finish(),
{
credentials,
}
);
const batches = chunk(Array.from(remoteOnlyRecords.keys()), MAX_READ_KEYS);
const storageItems = (
await pMap(
batches,
async (
batch: ReadonlyArray<string>
): Promise<Array<Proto.IStorageItem>> => {
const readOperation = new Proto.ReadOperation();
readOperation.readKey = batch.map(Bytes.fromBase64);
const storageItemsBuffer =
await window.textsecure.messaging.getStorageRecords(
Proto.ReadOperation.encode(readOperation).finish(),
{
credentials,
}
);
return Proto.StorageItems.decode(storageItemsBuffer).items ?? [];
},
{ concurrency: 5 }
)
).flat();
const missingKeys = new Set<string>(remoteOnlyRecords.keys());
const storageItems = Proto.StorageItems.decode(storageItemsBuffer);
const decryptedStorageItems = await pMap(
storageItems.items,
storageItems,
async (
storageRecordWrapper: Proto.IStorageItem
): Promise<MergeableItemType> => {

View File

@ -0,0 +1,5 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
// Server limit is 5120, but we set this to a safer lower amount
export const MAX_READ_KEYS = 2500;

View File

@ -832,9 +832,7 @@ export async function mergeContactRecord(
}
}
// Update verified status unconditionally to make sure we will take the
// latest identity key from the manifest.
{
if (contactRecord.identityKey) {
const verified = await conversation.safeGetVerified();
const storageServiceVerified = contactRecord.identityState || 0;
const verifiedOptions = {
@ -847,6 +845,8 @@ export async function mergeContactRecord(
details.push(`updating verified state to=${verified}`);
}
// Update verified status unconditionally to make sure we will take the
// latest identity key from the manifest.
let keyChange: boolean;
switch (storageServiceVerified) {
case STATE_ENUM.VERIFIED:

View File

@ -592,10 +592,7 @@ function makeChannel(fnName: string) {
'Detected sql corruption in renderer process. ' +
`Restarting the application immediately. Error: ${error.message}`
);
ipc?.send(
'database-error',
`${error.stack}\n${Server.getCorruptionLog()}`
);
ipc?.send('database-error', error.stack);
}
log.error(
`Renderer SQL channel job (${fnName}) error ${error.message}`

View File

@ -644,7 +644,6 @@ export type ServerInterface = DataInterface & {
// Server-only
getCorruptionLog: () => string;
initialize: (options: {
configDir: string;
key: string;

View File

@ -315,7 +315,6 @@ const dataInterface: ServerInterface = {
// Server-only
getCorruptionLog,
initialize,
initializeRenderer,
@ -468,19 +467,6 @@ let globalInstanceRenderer: Database | undefined;
let databaseFilePath: string | undefined;
let indexedDBPath: string | undefined;
let corruptionLog = new Array<string>();
SQL.setCorruptionLogger(line => {
logger.error(`SQL corruption: ${line}`);
corruptionLog.push(line);
});
function getCorruptionLog(): string {
const result = corruptionLog.join('\n');
corruptionLog = [];
return result;
}
async function initialize({
configDir,
key,

View File

@ -19,17 +19,10 @@ const port = parentPort;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function respond(seq: number, error: Error | undefined, response?: any) {
const corruptionLog = db.getCorruptionLog();
const errorMessage = [
...(error ? [error.stack] : []),
...(corruptionLog ? [corruptionLog] : []),
].join('\n');
const wrappedResponse: WrappedWorkerResponse = {
type: 'response',
seq,
error: errorMessage,
error: error?.stack,
response,
};
port.postMessage(wrappedResponse);

View File

@ -9,8 +9,9 @@ import createDebug from 'debug';
import type { Device, PrimaryDevice } from '@signalapp/mock-server';
import { Server, loadCertificates } from '@signalapp/mock-server';
import { App } from './playwright';
import { MAX_READ_KEYS as MAX_STORAGE_READ_KEYS } from '../services/storageConstants';
import * as durations from '../util/durations';
import { App } from './playwright';
const debug = createDebug('mock:bootstrap');
@ -97,7 +98,7 @@ type BootstrapInternalOptions = Pick<BootstrapOptions, 'extraConfig'> &
// the same between different test runs.
//
export class Bootstrap {
public readonly server = new Server();
public readonly server: Server;
private readonly options: BootstrapInternalOptions;
private privContacts?: ReadonlyArray<PrimaryDevice>;
@ -107,6 +108,11 @@ export class Bootstrap {
private timestamp: number = Date.now() - durations.MONTH;
constructor(options: BootstrapOptions = {}) {
this.server = new Server({
// Limit number of storage read keys for easier testing
maxStorageReadKeys: MAX_STORAGE_READ_KEYS,
});
this.options = {
linkedDevices: 5,
contactCount: MAX_CONTACTS,

View File

@ -6,6 +6,7 @@ import type { Group, PrimaryDevice } from '@signalapp/mock-server';
import { StorageState, Proto } from '@signalapp/mock-server';
import { App } from '../playwright';
import { Bootstrap } from '../bootstrap';
import type { BootstrapOptions } from '../bootstrap';
export const debug = createDebug('mock:test-storage');
@ -17,7 +18,7 @@ export type InitStorageResultType = Readonly<{
bootstrap: Bootstrap;
app: App;
group: Group;
members: Array<PrimaryDevice>;
members: ReadonlyArray<PrimaryDevice>;
}>;
//
@ -30,9 +31,11 @@ export type InitStorageResultType = Readonly<{
// In addition to above, this function will queue one incoming message in the
// group, and one for the first contact (so that both will appear in the left
// pane).
export async function initStorage(): Promise<InitStorageResultType> {
export async function initStorage(
options?: BootstrapOptions
): Promise<InitStorageResultType> {
// Creates primary device, contacts
const bootstrap = new Bootstrap();
const bootstrap = new Bootstrap(options);
await bootstrap.init();

View File

@ -0,0 +1,90 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { assert } from 'chai';
import { Proto } from '@signalapp/mock-server';
import * as durations from '../../util/durations';
import { UUID } from '../../types/UUID';
import { MAX_READ_KEYS } from '../../services/storageConstants';
import type { App, Bootstrap } from './fixtures';
import { initStorage, debug } from './fixtures';
const IdentifierType = Proto.ManifestRecord.Identifier.Type;
describe('storage service', function needsName() {
this.timeout(durations.MINUTE);
let bootstrap: Bootstrap;
let app: App;
beforeEach(async () => {
({ bootstrap, app } = await initStorage());
});
afterEach(async () => {
await app.close();
await bootstrap.teardown();
});
it('should receive all contacts despite low read keys limit', async () => {
debug('prepare for a slow test');
const { phone, contacts } = bootstrap;
const firstContact = contacts[0];
const lastContact = contacts[contacts.length - 1];
const window = await app.getWindow();
const leftPane = window.locator('.left-pane-wrapper');
debug('wait for first contact to be pinned in the left pane');
await leftPane
.locator(
'_react=ConversationListItem' +
'[isPinned = true] ' +
`[title = ${JSON.stringify(firstContact.profileName)}]`
)
.waitFor();
{
let state = await phone.expectStorageState('consistency check');
debug('generating a lot of fake contacts');
for (let i = 0; i < MAX_READ_KEYS + 1; i += 1) {
state = state.addRecord({
type: IdentifierType.CONTACT,
record: {
contact: {
serviceUuid: UUID.generate().toString(),
},
},
});
}
debug('pinning last contact');
state = state.pin(lastContact);
await phone.setStorageState(state);
debug('sending fetch storage');
await phone.sendFetchStorage({
timestamp: bootstrap.getTimestamp(),
});
}
debug('wait for last contact to be pinned in the left pane');
await leftPane
.locator(
'_react=ConversationListItem' +
'[isPinned = true] ' +
`[title = ${JSON.stringify(lastContact.profileName)}]`
)
.waitFor({ timeout: durations.MINUTE });
debug('Verifying the final manifest version');
const finalState = await phone.expectStorageState('consistency check');
assert.strictEqual(finalState.version, 2);
});
});

View File

@ -60,6 +60,8 @@ describe('updater/differential', () => {
const oldFile = 'diff-original.bin';
const oldBlockFile = getBlockMapFileName(oldFile);
const emptyFile = 'diff-empty.bin';
const newFile = 'diff-modified.bin';
const newBlockFile = getBlockMapFileName(newFile);
const newHash =
@ -109,6 +111,20 @@ describe('updater/differential', () => {
return [parseInt(range[1], 10), parseInt(range[2], 10)];
});
if (ranges.length === 1) {
res.writeHead(200, {
'content-type': 'application/octet-stream',
});
if (shouldTimeout === 'response') {
res.flushHeaders();
return;
}
const [from, to] = ranges[0];
res.end(fullFile.slice(from, to + 1));
return;
}
const BOUNDARY = 'f8f254ce1ba37627';
res.writeHead(206, {
@ -278,6 +294,34 @@ describe('updater/differential', () => {
);
});
it('downloads the full file with a single range', async () => {
const data = await prepareDownload({
oldFile: path.join(FIXTURES, emptyFile),
newUrl: `${baseUrl}/${newFile}`,
sha512: newHash,
});
const outDir = await fs.mkdtemp(path.join(tmpdir(), 'signal-temp-'));
await fs.mkdir(outDir, { recursive: true });
const outFile = path.join(outDir, 'out.bin');
const chunks = new Array<number>();
await download(outFile, data, {
statusCallback(size) {
chunks.push(size);
},
});
const expected = await fs.readFile(path.join(FIXTURES, newFile));
const actual = await fs.readFile(outFile);
assert.isTrue(actual.equals(expected), 'Files do not match');
assert.isTrue(
chunks.length > 0,
'Expected multiple callback invocations'
);
});
it('handles response timeouts gracefully', async () => {
const data = await prepareDownload({
oldFile: path.join(FIXTURES, oldFile),

View File

@ -3,10 +3,11 @@
import type { FileHandle } from 'fs/promises';
import { readFile, open } from 'fs/promises';
import type { Readable } from 'stream';
import { promisify } from 'util';
import { gunzip as nativeGunzip } from 'zlib';
import got from 'got';
import { chunk as lodashChunk } from 'lodash';
import { chunk as lodashChunk, noop } from 'lodash';
import pMap from 'p-map';
import Dicer from 'dicer';
@ -197,7 +198,7 @@ export function computeDiff(
last.size += size;
}
return optimizedDiff;
return optimizedDiff.filter(({ size }) => size !== 0);
}
export async function prepareDownload({
@ -369,45 +370,52 @@ export async function downloadRanges(
const onPart = async (part: Dicer.PartStream): Promise<void> => {
const diff = await takeDiffFromPart(part, diffByRange);
let offset = 0;
for await (const chunk of part) {
strictAssert(
offset + chunk.length <= diff.size,
'Server returned more data than expected, ' +
`written=${offset} ` +
`newChunk=${chunk.length} ` +
`maxSize=${diff.size}`
);
if (abortSignal?.aborted) {
return;
}
await output.write(chunk, 0, chunk.length, offset + diff.writeOffset);
offset += chunk.length;
chunkStatusCallback(chunk.length);
}
strictAssert(
offset === diff.size,
`Not enough data to download from offset=${diff.readOffset} ` +
`size=${diff.size}`
);
await saveDiffStream({
diff,
stream: part,
abortSignal,
output,
chunkStatusCallback,
});
};
const [{ statusCode, headers }] = await wrapEventEmitterOnce(
stream,
'response'
);
strictAssert(statusCode === 206, `Invalid status code: ${statusCode}`);
let boundary: string;
try {
const [{ statusCode, headers }] = await wrapEventEmitterOnce(
stream,
'response'
);
const match = headers['content-type']?.match(
/^multipart\/byteranges;\s*boundary=([^\s;]+)/
);
strictAssert(match, `Invalid Content-Type: ${headers['content-type']}`);
// When the result is single range we might get 200 status code
if (ranges.length === 1 && statusCode === 200) {
await saveDiffStream({
diff: ranges[0],
stream,
abortSignal,
output,
chunkStatusCallback,
});
return;
}
const dicer = new Dicer({ boundary: match[1] });
strictAssert(statusCode === 206, `Invalid status code: ${statusCode}`);
const match = headers['content-type']?.match(
/^multipart\/byteranges;\s*boundary=([^\s;]+)/
);
strictAssert(match, `Invalid Content-Type: ${headers['content-type']}`);
// eslint-disable-next-line prefer-destructuring
boundary = match[1];
} catch (error) {
// Ignore further errors and destroy stream early
stream.on('error', noop);
stream.destroy();
throw error;
}
const dicer = new Dicer({ boundary });
const partPromises = new Array<Promise<void>>();
dicer.on('part', part => partPromises.push(onPart(part)));
@ -472,3 +480,43 @@ async function takeDiffFromPart(
return diff;
}
async function saveDiffStream({
diff,
stream,
output,
abortSignal,
chunkStatusCallback,
}: {
diff: DiffType;
stream: Readable;
output: FileHandle;
abortSignal?: AbortSignal;
chunkStatusCallback: (chunkSize: number) => void;
}): Promise<void> {
let offset = 0;
for await (const chunk of stream) {
strictAssert(
offset + chunk.length <= diff.size,
'Server returned more data than expected, ' +
`written=${offset} ` +
`newChunk=${chunk.length} ` +
`maxSize=${diff.size}`
);
if (abortSignal?.aborted) {
return;
}
await output.write(chunk, 0, chunk.length, offset + diff.writeOffset);
offset += chunk.length;
chunkStatusCallback(chunk.length);
}
strictAssert(
offset === diff.size,
`Not enough data to download from offset=${diff.readOffset} ` +
`size=${diff.size}`
);
}

View File

@ -1372,10 +1372,10 @@
node-gyp-build "^4.2.3"
uuid "^8.3.0"
"@signalapp/mock-server@1.2.1":
version "1.2.1"
resolved "https://registry.yarnpkg.com/@signalapp/mock-server/-/mock-server-1.2.1.tgz#20fd9f1efded52155ad3d55b7e739d4bfcf1953f"
integrity sha512-TR2l3+6rSQ3+jXGhrPTQ/QIk1ygKro5CrEg4X8A8j68V/uPxoa1b8a4EGBS6swHxw26Wh1l0DZUPoOGXhdM9Qg==
"@signalapp/mock-server@1.3.0":
version "1.3.0"
resolved "https://registry.yarnpkg.com/@signalapp/mock-server/-/mock-server-1.3.0.tgz#288a994c4f5c26c4c2680289af471e08746ac353"
integrity sha512-ix3GO0lytE02nWLj1fKY3UhKM3lCynhvF2LVNHEiMen9wurVyb8mVcmBDb9zRBi63tZmFLAq/IQEYrc1OK3ZJQ==
dependencies:
"@signalapp/libsignal-client" "0.15.0"
debug "^4.3.2"
@ -1901,10 +1901,12 @@
"@types/jquery" "*"
"@types/underscore" "*"
"@types/better-sqlite3@7.4.0":
version "7.4.0"
resolved "https://registry.yarnpkg.com/@types/better-sqlite3/-/better-sqlite3-7.4.0.tgz#2b88d8474fc3f755617c0a5a8643388252c10aa1"
integrity sha512-tmSORlztb2cdWZDy4V81mRDgL+q7bd+ext4pI+Wj8EtJ5EHIZ6v7yiWbJ6A5eKVtoz77EsBEm7amwAzfqR/kAw==
"@types/better-sqlite3@7.5.0":
version "7.5.0"
resolved "https://registry.yarnpkg.com/@types/better-sqlite3/-/better-sqlite3-7.5.0.tgz#c57f42c76153d070f7673fbad0084ee324905be0"
integrity sha512-G9ZbMjydW2yj1AgiPlUtdgF3a1qNpLJLudc9ynJCeJByS3XFWpmT9LT+VSHrKHFbxb31CvtYwetLTOvG9zdxdg==
dependencies:
"@types/node" "*"
"@types/blueimp-load-image@5.14.1":
version "5.14.1"
@ -4100,9 +4102,9 @@ bcrypt-pbkdf@^1.0.0:
dependencies:
tweetnacl "^0.14.3"
"better-sqlite3@https://github.com/signalapp/better-sqlite3#4f66ee7b85477016dd0b2c3d2f13dcb60abd452e":
version "7.1.4"
resolved "https://github.com/signalapp/better-sqlite3#4f66ee7b85477016dd0b2c3d2f13dcb60abd452e"
"better-sqlite3@https://github.com/signalapp/better-sqlite3#3c4a7eebba3d5f5d8cb88fe83be1c01b8c0dea7d":
version "7.5.0"
resolved "https://github.com/signalapp/better-sqlite3#3c4a7eebba3d5f5d8cb88fe83be1c01b8c0dea7d"
dependencies:
bindings "^1.5.0"
tar "^6.1.0"