Compare commits

...

31 Commits
main ... 5.27.x

Author SHA1 Message Date
Scott Nonnenberg 9403ed0ca3 v5.27.1 2022-01-06 14:25:44 -08:00
Scott Nonnenberg f97d1ca88b Update to the latest version of chanzuckerberg/axe-storybook-testing 2022-01-06 14:08:24 -08:00
Fedor Indutny 4f7a61853b
Fix message_user_initiated 2022-01-06 11:53:30 -08:00
Fedor Indutny e94896b388 Optimize a few queries
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2022-01-06 11:26:15 -08:00
Evan Hahn a69db10130
Update translations 2022-01-06 11:23:07 -08:00
Evan Hahn e449993796
Update release notes for v5.27.1 release 2022-01-06 12:41:22 -06:00
Evan Hahn e3b3327317
Tweak wording of macOS M1 release note 2022-01-05 11:33:21 -06:00
Evan Hahn c6baf2f94b v5.27.0 2022-01-04 13:37:21 -06:00
Evan Hahn e6f5d852a6
Update translations 2022-01-04 13:25:57 -06:00
automated-signal b20d7d5e8a
Update electron to 16.0.6
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2022-01-04 09:18:40 -06:00
automated-signal 1269b14fd1
Fix sticker uninstall popup z-index
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-29 17:07:29 -08:00
automated-signal 671b5a6f53
Include sharp dlls on windows
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-22 21:26:20 +01:00
automated-signal 2819a1b029
Patch got@11.8.2 to fix onCancel error
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-22 20:53:00 +01:00
Fedor Indutnyy c268ec84a3 v5.27.0-beta.3 2021-12-21 21:26:50 +01:00
Fedor Indutnyy 1cc1e7c5d9 Update translations 2021-12-21 21:26:38 +01:00
Fedor Indutny 24f3babca9
Fix getUnreadReactionsAndMarkRead 2021-12-21 21:22:29 +01:00
Fedor Indutnyy aa8eabf4d9 v5.27.0-beta.2 2021-12-20 18:20:37 +01:00
Fedor Indutnyy caf0678750 Update translations 2021-12-20 18:20:07 +01:00
automated-signal 44a5794559
Default to `system` `theme-setting`
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-20 18:17:03 +01:00
automated-signal 0b526b4b1e
Fix getHtmlDocument for compressed documents
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-20 18:05:57 +01:00
automated-signal 0f6383c91b
Fix batching in getUnreadReactionsAndMarkRead
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-20 16:40:34 +01:00
automated-signal 2eab52dd0d
Use Signal's spellcheck dictionary files
Co-authored-by: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com>
2021-12-17 16:45:01 -06:00
automated-signal 269d3d28d4
Update to RingRTC v2.16.1
Co-authored-by: Jim Gustafson <jim@signal.org>
2021-12-17 16:43:04 -06:00
automated-signal c9f211d3b3
Block WebAPI during active registration
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-17 22:58:16 +01:00
Evan Hahn 3a9b3f6fbb
Remove ADM2 feature flag 2021-12-17 11:22:03 -06:00
automated-signal 5f39db9aa2
Compact universal builds for macOS
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-16 16:53:17 -08:00
automated-signal a9bbc18fb7
Fix groupV2 change rendering in notifications and left pane
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2021-12-16 12:04:08 -06:00
automated-signal b3afc327da
Usernames: Fetch own username from /whoami not /profile
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2021-12-16 10:32:25 -06:00
automated-signal a6b4491ebe
Update ChangeNumber--notification
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
2021-12-15 11:18:19 -06:00
automated-signal a5abb4acb4
messages table: introduce new computed isStory field for index usage
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2021-12-15 09:34:03 +01:00
automated-signal ffbedc2955
Enable media editor for everyone
Co-authored-by: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com>
2021-12-14 17:19:31 -08:00
139 changed files with 7035 additions and 2894 deletions

View File

@ -117,6 +117,21 @@ const typescriptRules = {
'@typescript-eslint/array-type': ['error', { default: 'generic' }],
'no-restricted-imports': 'off',
'@typescript-eslint/no-restricted-imports': [
'error',
{
paths: [
{
name: 'electron',
importNames: ['BrowserWindow'],
message: 'Please use createBrowserWindow',
allowTypeImports: true,
},
],
},
],
// Overrides recommended by typescript-eslint
// https://github.com/typescript-eslint/typescript-eslint/releases/tag/v4.0.0
'@typescript-eslint/no-redeclare': 'error',

View File

@ -1,4 +1,4 @@
<!-- Copyright 2020-2021 Signal Messenger, LLC -->
<!-- Copyright 2020-2022 Signal Messenger, LLC -->
<!-- SPDX-License-Identifier: AGPL-3.0-only -->
# Acknowledgments

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privaatheid is moontlik. Signal maak dit maklik.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Koppel jou selfoon te Signal Desktop?",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal-instellings",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Gekoppelde toestelle",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' knoppie",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Koppel nuwe toestel",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Instellings",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Kom meer te wete",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Toestelnaam",
@ -1371,6 +1391,10 @@
"message": "Sinkroniseer kontakte en groepe",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Kon nie aan bediener koppel.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Iets het verkeerd geloop!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Probeer weer",
"description": ""
@ -5548,7 +5576,7 @@
"description": "This is a button on the conversation details to show all members"
},
"ConversationNotificationsSettings__mentions__label": {
"message": "Mentions",
"message": "Meldings",
"description": "In the conversation notifications settings, this is the label for the mentions option"
},
"ConversationNotificationsSettings__mentions__info": {
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "واجه سطح المكتب خطأ في فك التشفير.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "‫لقد وقع البرنامج في خطأ يتعلق بفك التعمية انطلاقا من $name$، الجهاز $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "لقد استُبدِل رقم $sender$ برقم جديد",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "الحفاظ على الخصوصية أمر ممكن. يجعل Signal ذلك سهلا.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "يُرجى ربط هاتفك بنسخة Signal للحاسوب",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "إعدادات Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "الأجهزة المرتبطة",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "زر '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "ربط جهاز جديد",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "امسح هذا الرمز ضوئيًا في تطبيق Signal على هاتفك",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "افتح Signal على هاتفك",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "الإعدادات",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "لمعرفة المزيد",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "‫اسم الجهاز",
@ -1371,6 +1391,10 @@
"message": "مزامنة جهات الاتصال والمجموعات",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "فشل الاتصال بالخادم.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "حدث خطأٌ ما!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "حاول مجدداً",
"description": ""
@ -6685,18 +6713,6 @@
"message": "ما الجديد",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "يُمكنك الآن البحث في المحادثات المحفوظة. تخيّل نفسك تبحث (سريعاً) في مجلدات قديمة بينما تحاول العثور على الدليل التالي.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "إذا قُمت بالتمرير للأعلى وأرسلت رسالة، قد تتساءل أين ذهبت رسالتك! الآن، متى ما ترسل رسالة، ستظهر أمامك لتقدر عملك الشاق.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "الرد على رسالة؟ يجب أن يُعتمد عليه بشكل أكبر الآن، إعادة المحاولة لما يصل إلى 24 ساعة",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "يحتوي هذا الإصدار على عدد من التعديلات الصغيرة وإصلاحات الأخطاء للحفاظ على تشغيل Signal بسلاسة.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "هل شعرت من قبل في حياتك أنك تحتاج إلى المزيد من وحدات البيكسل للجزء الأيمن من شاشتك؟ هل تحب الصور الرمزية، ولكن الصور الرمزية فقط ولا شيء غيرها؟ هل لديك ملصق صدام \"توفير مساحة العرض\" على سيارتك؟ إذا أجبت بنعم أو لا على أي من هذه الأسئلة، فسيوفر لك هذا التحديث جزءاً أيسر قابل للطي.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "‫لقد أصبح الآن Signal Desktop يدعم بشكل طبيعي « المعالج M1 » لشركة آبل، والتي تُستخدَم في حواسيبهم الجديدة. إن كنت من مستخدمي هذا الصنف من الأجهزة، فمن المفترض أن يكون التطبيق أسرع مما سبق. أما إن كنت على غير ذلك، فيكفيك غبطة أن آخرين تحسن استخدامهم للتطبيق. نود أن نتقدم ببالغ عبارات الامتنان والشكر لـ $dennis$ بفضل العمل الشاق الذي تم إنجازه !",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "أ دامت مكالمتك طويلا ؟ سيبقى نظامك مشتغلا طول تلك المدة، بدل أن يغفو في وسط محادثة مهمة.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "هناك أيضا بضع تعديلات وإصلاحات للعلل لإبقاء عمل Signal سلسا، بما في ذلك عدة تحسينات متعلقة بالمكالمات.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Masaüstü, şifrə açma xətası ilə qarşılaşdı.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Masaüstü, $name$, $deviceId$ cihazından bir şifrə açma xətası ilə qarşılaşdı",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$, nömrəsini dəyişdirdi",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Gizlilik mümkündür. Signal, bunu asanlaşdırır.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Telefonunuzu, Signal Masaüstü ilə əlaqələndirin.",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal Tənzimləmələri",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Əlaqə yaradılmış cihazlar",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' düyməsi",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Yeni cihazla əlaqə yarat",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Bu kodu telefonunuzdakı Signal tətbiqində skan edin",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Signal-ı telefonunuzda açın",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Tənzimləmələr",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Daha ətraflı",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Cihaz adı",
@ -1371,6 +1391,10 @@
"message": "Əlaqələr və qruplar eyniləşdirilir",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Serverlə bağlantı qurulmadı.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Nəsə səhv getdi!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Yenidən sına",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Yeni nə var",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Artıq arxivlənmiş danışıqlarda axtarış edə bilərsiniz. Qədimi kitablar arasında növbəti ipucu axtardığınızı təsəvvür edin.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Daha əvvəl yuxarı sürüşdürərək bir mesaj göndərmisinizsə, mesajınızın harada olduğu ilə maraqlana bilərsiniz! İndi, bir mesaj göndərəndə, gördüyünüz işə heyran qalmağınız üçün görüntülənəcək.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Bir mesaja reaksiya verirsiniz? Artıq daha güvənli olmaları üçün 24 saata qədər təkrar sınanmalıdır",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Həyatınız boyu heç sağ paneldə daha çox pikselə ehtiyacınız olduğunu hiss etmisiniz? Avatar pərəstişkarısınız, amma yalnız avatarlar, başqa heç nə? Avtomobilinizdə \"Ekran daşınmaz əmlakını saxla\" bufer etiketi var? Bu suallardan hər hansısa birinə bəli cavabı vermisinizsə, bu yeniləmədə sizin üçün yığcamlaşdırıla bilən sol panel var.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Masaüstü, artıq Apple-ın ən son kompüterlərində istifadə edilən M1 çipini yerli olaraq dəstəkləyir. Bu yeni modelləri istifadə edirsinizsə, tətbiq daha sürətli olmalıdır. Əziyyətinə görə çoxlu təşəkkürlər $dennis$!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Uzun-uzun söhbət edirsiniz? Vacib iclasda olarkən sisteminizin yuxuya getmək əvəzinə tam oyaq qalmalıdır.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Həmçinin, zənglərlə əlaqəli bir neçə təkmilləşdirmə daxil olmaqla Signal-ın problemsiz işləməsini təmin etmək üçün bir neçə xəta düzəlişləri də var.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Поверителността е възможна. Сигнал го прави лесно.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Свържете телефона си със Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal Настройки",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Свързани Устройства",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Бутон",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Свържи Ново Устройство",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Настройки",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Научете повече",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Име на Устройството",
@ -1371,6 +1391,10 @@
"message": "Синхронизиране на контакти и групи",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Неуспешна връзка със сървъра.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Нещо се обърка!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Опитай отново",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "ডেস্কটপে একটি ডিক্রিপশন ত্রুটি হয়েছে।",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ একটি নতুন নম্বরে তাদের নম্বর পরিবর্তন করেছে",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "গোপনীয়তা সম্ভব। Signal এটি সহজ করে তোলে।",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Signal ডেস্কটপে আপনার ফোন সংযুক্ত করুন",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal সেটিংস",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "সংযুক্ত ডিভাইসগুলি",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' বোতাম",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "নতুন ডিভাইস যুক্ত করুন",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "আপনার ফোনে সিগন্যাল অ্যাপে এই কোডটি স্ক্যান করুন",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "আপনার ফোনে সিগন্যাল খুলুন",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "সেটিংস",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "আরও জানুন",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ডিভাইস এর নাম",
@ -1371,6 +1391,10 @@
"message": "গ্রুপ এবং পরিচিতিসমূহ সমন্বয় করা হচ্ছে",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "সার্ভারের সাথে সংযোগ করতে ব্যর্থ।",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "কিছু ভুল হয়েছে!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "আবার চেষ্টা করুন",
"description": ""
@ -6685,18 +6713,6 @@
"message": "নতুন কি",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "আপনি এখন সংরক্ষণাগারভুক্ত কথোপকথন অনুসন্ধান করতে পারেন. কল্পনা করুন যে আপনি প্রাচীন টোমগুলির মাধ্যমে (দ্রুত) অনুসন্ধান করছেন, পরবর্তী ক্লু খুঁজছেন।",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "আপনি যদি কখনও স্ক্রোল করে একটি বার্তা পাঠিয়ে থাকেন, তাহলে আপনি ভাবতে পারেন যে আপনার বার্তাটি কোথায় ছিল! এখন, আপনি যখনই একটি বার্তা পাঠান, আপনার কঠোর পরিশ্রমের প্রশংসা করার জন্য এটি স্ক্রোল করা হবে",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "কোনও বার্তায় প্রতিক্রিয়া দেখাচ্ছেন? এটি এখন আরও নির্ভরযোগ্য হওয়া উচিত, 24 ঘন্টা পর্যন্ত পুনরায় চেষ্টা করা উচিত",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "সিগন্যালকে মসৃণভাবে চলমান রাখতে এই সংস্করণে অনেকগুলি ছোটখাট পরিবর্তন রয়েছে এবং বাগ সংশোধন করা হয়েছে।",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "কখনও মনে হয় আপনার জীবনে সঠিক পেনে আরও পিক্সেল প্রয়োজন? আপনি কি অবতারের ভক্ত, কিন্তু কেবল অবতার এবং অন্য কিছু নয়? আপনার গাড়িতে কি \"স্ক্রিন রিয়েল এস্টেট সংরক্ষণ করুন\" বাম্পার স্টিকার আছে? আপনি যদি এই প্রশ্নগুলির কোনওটিতে হ্যাঁ বা না উত্তর দেন তবে এই আপডেটটির আপনার জন্য কিছু কোলাপসিবল বাম পেন রয়েছে।",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Hi ha hagut un error de desencriptació.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "L'escriptori ha tingut un error de desencriptació de $name$, dispositiu $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ha canviat el número",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "La privadesa és possible. El Signla la fa fàcil.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Enllaceu el mòbil amb el Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Configuració del Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Dispositius enllaçats",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Botó «+»",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Enllaça un dispositiu nou",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Escanegeu aquest codi a l'aplicació Signal del telèfon",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Obriu el Signal al telèfon.",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Configuració",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Més informació",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nom del dispositiu",
@ -1371,6 +1391,10 @@
"message": "Sincronització de contactes i grups",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "No s'ha pogut connectar al servidor.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Alguna cosa ha anat malament!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Torna a provar-ho",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Què hi ha de nou",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Ara podeu cercar a les converses arxivades. Imagineu-vos buscant (ràpidament) a través de volums antics, buscant la pista següent.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Si alguna vegada us heu desplaçat cap amunt i heu enviat un missatge, potser us preguntareu on era el missatge! Ara, sempre que envieu un missatge, es desplaçarà a la vista perquè admireu la feina feta.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reaccioneu a un missatge? Ara hauria de ser més fiable, tornant-ho a provar fins a 24 hores.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Alguna vegada heu sentit que necessiteu més píxels al plafó? Sou fan dels avatars, però només dels avatars i res més? Teniu un adhesiu estrambòtic al para-xocs del cotxe? Si heu respost sí o no a qualsevol d'aquestes preguntes, aquesta actualització té un plafó esquerre plegable per a vosaltres.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "En una trucada llarga? El vostre sistema hauria de romandre despert tota l'estona, en lloc d'adormir-se mentre esteu enmig d'una discussió important.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "També hi ha una sèrie de petits retocs i correccions d'errors perquè el Signal funcioni sense problemes, incloses diverses millores relacionades amb les trucades.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -52,7 +52,7 @@
"description": "The label that is used for the Help menu in the program main menu. The '&' indicates that the following letter will be used as the keyboard 'shortcut letter' for accessing the menu with the Alt-<letter> combination."
},
"mainMenuSettings": {
"message": "Předvolby...",
"message": "Předvolby",
"description": "The label that is used for the Preferences menu in the program main menu. This should be consistent with the standard naming for Preferences on the operating system."
},
"appMenuServices": {
@ -188,15 +188,15 @@
"description": "One of the menu options available in the Avatar popup menu"
},
"loading": {
"message": "Nahrávání...",
"message": "Načítání…",
"description": "Message shown on the loading screen before we've loaded any messages"
},
"optimizingApplication": {
"message": "Optimalizace aplikace...",
"message": "Optimalizace aplikace",
"description": "Message shown on the loading screen while we are doing application optimizations"
},
"migratingToSQLCipher": {
"message": "Optimalizace zpráv... $status$ dokončeno.",
"message": "Optimalizace zpráv $status$ dokončeno.",
"description": "Message shown on the loading screen while we are doing application optimizations",
"placeholders": {
"status": {
@ -302,7 +302,7 @@
"description": "Message shown as the export location if we didn't capture the target directory"
},
"upgradingDatabase": {
"message": "Aktualizace databáze. To může nějakou chvíli trvat...",
"message": "Aktualizace databáze. Může to nějakou chvíli trvat…",
"description": "Message shown on the loading screen when we're changing database structure on first run of a new version"
},
"loadingMessages": {
@ -614,7 +614,7 @@
"description": "Shown in toast when user attempts to send .exe file, for example"
},
"loadingPreview": {
"message": "Načítám náhled...",
"message": "Načítání náhledu…",
"description": "Shown while Signal Desktop is fetching metadata for a url in composition area"
},
"stagedPreviewThumbnail": {
@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop narazil na chybu při dešifrování.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal narazil na chybu při dešifrování od $name$, zařízení $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -690,7 +690,7 @@
"description": "Displayed when the desktop client cannot connect to the server."
},
"connecting": {
"message": "Probíhá připojování...",
"message": "Připojování…",
"description": "Displayed when the desktop client is currently connecting to the server."
},
"connect": {
@ -852,7 +852,7 @@
}
},
"welcomeToSignal": {
"message": "Vítejte v Signal",
"message": "Vítá vás Signal",
"description": ""
},
"whatsNew": {
@ -924,7 +924,7 @@
"description": "When rendering an address, used to provide context to a post office box"
},
"downloading": {
"message": "Stahuji",
"message": "Stahování",
"description": "Shown in the message bubble while a long message attachment is being downloaded"
},
"downloadAttachment": {
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ změnili své číslo na nové",
"message": "$sender$ změnil své telefonní číslo",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Soukromí je možné. Signal jej usnadňuje.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Propojit telefon se Signal v počítači",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Nastavení Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Propojená zařízení",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Tlačítko '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Propojit nové zařízení",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"message": "Naskenujte tento kód v aplikaci Signal ve svém telefonu.",
"description": "Alt text for the QR code on the device link screen"
"Install__scan-this-code": {
"message": "Tento kód naskenujte v aplikaci Signal na svém telefonu",
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Na svém telefonu otevřete Signal",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Klepněte na $settings$ a potom na $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Nastavení",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Klepněte na $plusButton$ (Android), nebo na $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "QR kód se nemohl načíst. Zkontrolujte své připojení k internetu a zkuste to znovu. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Zjistit více",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Název tohoto zařízení uvidíte pod „Spárovaná zařízení“",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Můj počítač",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Název zařízení",
@ -1371,6 +1391,10 @@
"message": "Synchronizuji kontakty a skupiny",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Poznámka: Historie chatu nebude synchronizována do tohoto zařízení.",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Připojení k serveru selhalo.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Něco se pokazilo!",
"description": ""
},
"installUnknownError": {
"message": "Nastala neočekávaná chyba. Zkuste to prosím znovu.",
"description": ""
},
"installTryAgain": {
"message": "Zkusit znovu",
"description": ""
@ -2268,7 +2296,7 @@
"description": "Label text for menu bar visibility setting"
},
"startConversation": {
"message": "Zahájit novou konverzaci...",
"message": "Zahájit novou konverzaci",
"description": "Label underneath number a user enters that is not an existing contact"
},
"newConversation": {
@ -2350,7 +2378,7 @@
"description": "Shown in the alert when you try to add someone who can't be added to a group"
},
"chooseGroupMembers__cant-add-member__body": {
"message": "\"$name$\" nemůže být přidán do skupiny, protože používám starou verzi aplikace Signal. Můžete je přidat do skupiny poté, co si aktualizují aplikaci Signal.",
"message": "„$name$“ nelze přidat do skupiny, protože používají starou verzi aplikace Signal. Můžete je přidat do skupiny poté, co si aktualizují aplikaci Signal.",
"description": "Shown in the alert when you try to add someone who can't be added to a group",
"placeholders": {
"max": {
@ -2698,7 +2726,7 @@
"description": "Shown in the sticker picker when one or more stickers could not be downloaded."
},
"stickers--StickerPicker--DownloadPending": {
"message": "Instaluji balík nálepek...",
"message": "Instalace balíčku nálepek…",
"description": "Shown in the sticker picker when one or more stickers are still downloading."
},
"stickers--StickerPicker--Empty": {
@ -3162,7 +3190,7 @@
"description": "Help text for the drop stage of the sticker creator"
},
"StickerCreator--MetaStage--title": {
"message": "Ještě pár detailů...",
"message": "Ještě pár detailů",
"description": "Title for the meta stage of the sticker creator"
},
"StickerCreator--MetaStage--Field--title": {
@ -3658,7 +3686,7 @@
"description": "Shown in conversation history when your video call is missed or declined"
},
"incomingAudioCall": {
"message": "Příchozí hovor...",
"message": "Příchozí hovor",
"description": "Shown in both the incoming call bar and notification for an incoming audio call"
},
"incomingVideoCall": {
@ -6685,18 +6713,6 @@
"message": "Co je nového",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Nyní můžete vyhledávat v archivovaných konverzacích. Představte si, že (rychle) prohledáváte staré svazky a hledáte další stopu.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Pokud jste někdy posouvali nahoru a odesílali zprávu, možná jste se divili, kde se vaše zpráva nachází! Nyní, kdykoli odešlete zprávu, bude posunuta na obrazovku, abyste mohli obdivovat svou tvrdou práci.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagujete na zprávu? Nyní by měla být reakce spolehlivější s opakovanými pokusy až 24 hodin.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Tato verze obsahuje řadu drobných úprav a oprav chyb, aby Signal fungoval hladce.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Měli jste někdy pocit, že potřebujete více pixelů na té \"správné\" straně svého života? Jste fanouškem avatarů, ale pouze avatarů a ničeho jiného? Máte na autě samolepku \"Šetřete prostor na obrazovce\"? Pokud jste na některou z těchto otázek odpověděli ano nebo ne, pak má pro vás tato aktualizace schovávací levý panel.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop nyní nativně podporuje čip M1 společnosti Apple, který se používá v novějších počítačích. Pokud používáte jedno z těchto nových zařízení, aplikace by měla být mnohem svižnější. Pokud nejste, ostatním to přejte. Obrovské díky $dennis$ za jeho skvělou práci!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Na dlouhém callu? Váš systém by měl zůstat po celou dobu vzhůru, místo aby usnul uprostřed důležité diskuse.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "K dispozici je také řada drobných vylepšení a oprav chyb, které zajišťují bezproblémový chod aplikace Signal, včetně několika vylepšení souvisejících s voláním.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Nový rok, nová úvodní obrazovka nastavení. Přepracovali jsme obrazovky úvodního nastavení tak akorát na začátek 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Cafodd y bwrdd gwaith yn wall dadgryptio.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Cafodd y bwrdd gwaith wall dadgryptio o $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "Newidiodd $sender$ eu rhif i rif newydd",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Mae preifatrwydd yn bosib. Mae Signal yn ei wneud yn hawdd.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Cysylltwch eich ffôn i Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Gosodiadau Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Dyfeisiau Cysylltiedig",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Botwm '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Cysylltu Dyfais Newydd",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Sganio'r cod hwn yn yr ap Signal ar eich ffôn",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Agorwch Signal ar eich ffôn",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Gosodiadau",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Dysgu rhagor",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Enw dyfais",
@ -1371,6 +1391,10 @@
"message": "Yn cydweddu cysylltiadau a grwpiau",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Methwyd cysylltu â'r gweinydd.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Aeth rhywbeth o'i le!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Ceisio eto",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Be sy'n Newydd",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Nawr gallwch chwilio mewn sgyrsiau wedi'u harchifo. Dychmygwch eich hun yn chwilio (yn gyflym) trwy gyfrolau hynafol, yn edrych am y cliw nesaf.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Os ydych chi erioed wedi sgrolio i fyny ac wedi anfon neges, efallai y byddech chi'n meddwl tybed ble roedd eich neges! Nawr, pryd bynnag y byddwch chi'n anfon neges, bydd yn cael ei sgrolio i'r golwg i chi edmygu'ch gwaith caled.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Yn ymateb i neges? Dylai nawr fod yn fwy dibynadwy, gan geisio eto am hyd at 24 awr",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ydych chi erioed wedi teimlo bod angen mwy o bicseli arnoch chi ar y cwarel de yn eich bywyd? Ydych chi'n ffan o afatarau, ond dim ond afatarau a dim byd arall? Oes gennych chi sticer bumper \"Save the screen real estate\" ar eich car? Os gwnaethoch chi ateb ie neu na i unrhyw un o'r cwestiynau hynny, yna mae gan y diweddariad hwn ryw gwarel chwith cwympadwy i chi.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Ar alwad hir? Dylai eich system aros yn effro trwy'r amser, yn lle cwympo i gysgu tra'ch bod chi yng nghanol sgwrs bwysig.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Mae yna hefyd nifer o newidiadau bach a chywiriadau i gadw Signal i redeg yn llyfn, gan gynnwys sawl gwelliant sy'n gysylltiedig â galwadau.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop stødte på en dekrypteringsfejl.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop stødte på en dekrypteringsfejl fra $name$, enhed $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ændrede sit nummer til et nyt nummer.",
"message": "$sender$ har ændret sit telefonnummer",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privatliv er muligt. Signal gør det nemt",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Forbind din telefon til Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal-indstillinger",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Forbundne enheder",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' knap",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Forbind ny enhed",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan denne kode i Signal-appen på din telefon",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Åbn Signal på din telefon",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tryk ind på $settings$, tryk så på $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Indstillinger",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tryk på $plusButton$ (Android) eller $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "QR-kode kunne ikke indlæses. Tjek dit internet, og prøv igen. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Lær mere",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Du vil se dette navn under \"Forbundne enheder\" på din telefon",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Min computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Enhedsnavn",
@ -1371,6 +1391,10 @@
"message": "Synkroniserer kontakter og grupper",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Bemærk: Din samtalehistorik vil ikke blive synkroniseret til denne enhed",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Det var ikke muligt at kontakte serveren.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Noget gik galt!",
"description": ""
},
"installUnknownError": {
"message": "Der opstod en uventet fejl. Prøv venligst igen.",
"description": ""
},
"installTryAgain": {
"message": "Prøv igen",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Nyheder",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Du kan nu søge i arkiverede samtaler. Forestil dig, at du søger (hurtigt) gennem gamle skrifter på jagt efter det næste spor.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Hvis du nogensinde har scrollet opad og sendt en besked, har du måske undret dig over, hvor din besked var. Når du nu sender en besked, bliver den scrollet op i billedet, så du kan beundre dit hårde arbejde.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagerer du på en besked? Det skulle nu være mere pålideligt, idet der forsøges igen i op til 24 timer",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Denne version indeholder en række småjusteringer og fejlrettelser som sikrer, at Signal kører problemfrit.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Har du nogensinde følt, at du har brug for flere pixels på en rude? Er du fan af avatarer, men kun avatarer og ikke andet? Har du et \"Bevar skærmpladsen\"-klistermærke på din kofanger? Hvis du har svaret ja eller nej til et af disse spørgsmål, får du med denne opdatering en sammenklappelig venstre rude.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop er nu optimeret til Apples M1-chip, som bruges i deres nyere computere. Hvis du bruger en af disse nymodens enheder, burde appen nu være meget hurtigere. Hvis du ikke gør, så giv en varm velkomst til de brugere, der gør. En kæmpe tak til $dennis$ for hans hårde arbejde her!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "I gang med et langt opkald? Dit system burde nu holde sig vågent uafbrudt i stedet for at falde i søvn, mens du er midt i en vigtig diskussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Der er også en række små justeringer og fejlrettelser for at få Signal til at køre problemfrit, herunder flere opkaldsrelaterede forbedringer.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Nyt år, nyt skærmbillede til startopsætning. Vi har omdesignet skærmbillederne til den indledende opsætning lige i tide til 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Es trat ein Entschlüsselungsfehler auf.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop hat einen Entschlüsselungsfehler von $name$, Gerät $deviceId$ festgestellt. ",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -838,7 +838,7 @@
"description": "Shown to separate the types of search results"
},
"findByUsernameHeader": {
"message": "Nutzername suchen",
"message": "Nutzernamen suchen",
"description": "Shown to separate the types of search results"
},
"at-username": {
@ -1331,29 +1331,49 @@
"message": "Privatsphäre ist möglich. Signal macht sie einfach.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Kopple dein Telefon mit Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal-Einstellungen",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Gekoppelte Geräte",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "»+«-Schaltfläche",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Neues Gerät koppeln",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scanne diesen Code mit der auf deinem Telefon installierten Signal-App ein",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Öffne Signal auf deinem Telefon",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tippe auf $settings$, dann auf $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Einstellungen",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tippe auf $plusButton$ (Android) oder $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Der QR-Code konnte nicht geladen werden. Überprüfe bitte deine Internetverbindung und versuche es erneut.$learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Mehr erfahren",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Dieser Name wird unter »Gekoppelte Geräte« auf deinem Telefon erscheinen.",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Mein Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Gerätename",
@ -1371,6 +1391,10 @@
"message": "Kontakte und Gruppen werden synchronisiert …",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Hinweis: Dein bisheriger Unterhaltungsverlauf wird nicht auf dieses Gerät übertragen.",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Verbinden mit Server gescheitert.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Etwas ist schiefgelaufen!",
"description": ""
},
"installUnknownError": {
"message": "Ein unerwarteter Fehler ist aufgetreten. Versuche es bitte erneut.",
"description": ""
},
"installTryAgain": {
"message": "Erneut versuchen",
"description": ""
@ -5322,11 +5350,11 @@
"description": "Generic next label"
},
"BadgeDialog__become-a-sustainer-button": {
"message": "Werde Unterstützer",
"message": "Unterstützer werden",
"description": "In the badge dialog. This button is shown under sustainer badges, taking users to some instructions"
},
"BadgeSustainerInstructions__header": {
"message": "Werde Unterstützer",
"message": "Unterstützer werden",
"description": "In the instructions for becoming a sustainer. The heading."
},
"BadgeSustainerInstructions__subheader": {
@ -5342,7 +5370,7 @@
"description": "In the instructions for becoming a sustainer. Second instruction."
},
"BadgeSustainerInstructions__instructions__3": {
"message": "Tippe auf „Werde Unterstützer“ und wähle einen Geldbetrag aus.",
"message": "Tippe auf »Unterstützer werden« und wähle einen Geldbetrag aus.",
"description": "In the instructions for becoming a sustainer. Third instruction."
},
"CompositionArea--expand": {
@ -6685,18 +6713,6 @@
"message": "Was ist neu",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Du kannst jetzt in archivierten Gesprächen suchen. Stell dir vor, du suchst (schnell) in alten Büchern nach dem nächsten Hinweis.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Falls du jemals nach oben gescrollt und eine Nachricht gesendet hast, kam vielleicht die Frage auf, wo sie geblieben ist! Wann immer du jetzt eine Nachricht sendest, wird sie in den Sichtbereich gescrollt, damit du deine harte Arbeit bewundern kannst.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reaktion auf eine Nachricht? Sie sollten jetzt zuverlässiger gesendet werden (Wiederholungsversuche bis zu 24 Stunden lang)",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Diese Version enthält eine Reihe kleinerer Optimierungen und Fehlerbehebungen, damit Signal weiterhin reibungslos funktioniert.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Schon mal das Gefühl gehabt, mehr Pixel in der rechten Fensterhälfte zu benötigen? Bist du ein Freund von Avataren und sonst nichts anderem? Hast du einen „Bildschirmplatz sparen“-Aufkleber an deinem Auto? Egal ob du einige Fragen mit Ja oder Nein beantwortet hast, diese Aktualisierung bringt einen einklappbaren linken Fensterbereich.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop ist nun für Apples M1-Chip optimiert, den Apple in seinen neueren Rechnern verbaut. Wenn du so ein neumodisches Gerät benutzt, sollte das Programm deutlich flüssiger laufen. Wenn nicht, heiße die Nutzer, die es tun, herzlich willkommen. Vielen Dank an $dennis$ für seine harte Arbeit hier!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Bei einem langen Anruf? Dein System sollte jetzt die ganze Zeit aktiv bleiben, anstatt sich Schlafen zu legen, während du gerade in einer wichtigen Besprechung bist.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Es ist auch eine Reihe kleiner Optimierungen und Fehlerbehebungen eingeflossen, eingeschlossen einiger anrufbezogenen Verbesserungen, damit Signal weiterhin flüssig läuft.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Neues Jahr, neuer Ersteinrichtungsbildschirm. Wir haben den Ersteinrichtungsbildschirm gerade rechtzeitig für 2022 neu gestaltet.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Το Desktop αντιμετώπισε σφάλμα αποκρυπτογράφησης.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "Ο/Η $sender$ άλλαξε τον αριθμό τηλεφώνου του/της",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Η ιδιωτικότητα είναι εφικτή. Το Signal την κάνει εύκολη.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Σύνδεσε το τηλέφωνό σου με το Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Ρυθμίσεις του Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Συνδεμένες συσκευές ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Κουμπί '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Σύνδεση νέας συσκεύης",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Σκάναρε αυτό τον κωδικό στην εφαρμογή Signal στη συσκευή σου",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Άνοιξε το Signal στο κινητό σου",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Ρυθμίσεις",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Μάθε περισσότερα",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Όνομα συσκεύης",
@ -1371,6 +1391,10 @@
"message": "Συγχρονισμός ομάδων και επαφών",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Αποτυχία σύνδεσης με τον διακομιστή.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Κάτι πήγε στραβά!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Ξαναπροσπάθησε",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Νέες δυνατότητες",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Μπορείς πλέον να κάνεις αναζήτηση στις αρχειοθετημένες συνομιλίες. Σαν να ψάχνεις για στοιχεία στις αρχαίες γραφές.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Πλέον αν έχεις σκρολάρει προς τα πάνω και στείλεις μήνυμα, το Signal θα σκρολάρει αυτόματα προς τα κάτω για να δεις το μήνυμα που μόλις έστειλες.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Η αντίδραση σε μηνύματα είναι πλέον πιο αξιόπιστη.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Αυτή η έκδοση περιλαμβάνει διάφορες μικρές βελτιώσεις και αποσφαλματώσεις για να συνεχίσει το Signal να λειτουργεί ομαλά.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Νιώσατε ποτέ στη ζωή σας ότι χρειάζεστε περισσότερα pixel στο δεξί παράθυρο; Είστε λάτρης των avatar, αλλά μόνο των avatar και τίποτα άλλο; Έχετε αυτοκόλλητο στον προφυλακτήρα του αυτοκινήτου σας που λέει \"Χρειάζομαι Περισσότερο Χώρο Στην Οθόνη\"; Εάν απαντήσατε ναι ή όχι σε κάποια από αυτές τις ερωτήσεις, τότε αυτή η ενημέρωση έχει ένα πτυσσόμενο αριστερό παράθυρο για εσάς.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -1257,7 +1257,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -6681,7 +6681,7 @@
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop now natively supports Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Eraro de malĉifrado okazis.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal Desktop renkontis malĉifran eraron el $name$, aparato $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -790,7 +790,7 @@
"description": "Aria label for clear search button"
},
"searchIn": {
"message": "Search chat",
"message": "Serĉi en la interparolo",
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ŝanĝis sian numeron.",
"message": "$sender$ ŝanĝis sian telefonnumeron.",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privateco eblas. Signal tion faciligas.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Ligi vian poŝtelefonon al Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Agordoj de Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Ligitaj aparatoj",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Butono „+“",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Ligi novan aparaton",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skani tiun kodon en la aplikaĵo Signal ĉe via telefono",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Malfermi Signal ĉe via telefono",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tuŝetu „$settings$“, poste tusêtu „$linkedDevices$“",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Agordoj",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tuŝetu $plusButton$ (Android) aŭ $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "La QR-kodo ne funkciis. Kontrolu vian retaliron kaj reprovu. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Scii pli",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Vi vidos tiun nomon ĉe „Ligitaj aparatoj“ ĉe via telefono",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Mia komputilo",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nomo de la aparato",
@ -1371,6 +1391,10 @@
"message": "Sinkronigo de kontaktoj kaj grupoj",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Notu: viaj antaŭaj interparoloj ne sinkroniĝos en tiun aparaton.",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Malsukcesis konekti al servilo.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Ho ve! Okazis eraro!",
"description": ""
},
"installUnknownError": {
"message": "Neatendita eraro okazis. Bonvolu reprovi.",
"description": ""
},
"installTryAgain": {
"message": "Provi denove",
"description": ""
@ -5434,7 +5462,7 @@
"description": "This is the info about the disappearing messages setting, in groups"
},
"ConversationDetails--disappearing-messages-info--direct": {
"message": "When enabled, messages sent and received in this 1:1 chat will disappear after they've been seen.",
"message": "Kiam ŝaltita, mesaĝoj senditaj kaj ricevitaj en tiu ĉi interparolo inter du personoj malaperos post sia legiĝo.",
"description": "This is the info about the disappearing messages setting, for direct conversations"
},
"ConversationDetails--notifications": {
@ -6602,7 +6630,7 @@
"description": "Label for the draw button in the media editor"
},
"MediaEditor__control--text": {
"message": "Add text",
"message": "Aldoni tekston",
"description": "Label for the text button in the media editor"
},
"MediaEditor__control--sticker": {
@ -6610,7 +6638,7 @@
"description": "Label for the sticker button in the media editor"
},
"MediaEditor__control--crop": {
"message": "Crop and rotate",
"message": "Stuci kaj turni",
"description": "Label for the crop & rotate button in the media editor"
},
"MediaEditor__control--undo": {
@ -6622,35 +6650,35 @@
"description": "Label for the redo button in the media editor"
},
"MediaEditor__text--regular": {
"message": "Regular",
"message": "Norma",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--highlight": {
"message": "Highlight",
"message": "Marko",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--outline": {
"message": "Outline",
"message": "Konturo",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--underline": {
"message": "Underline",
"message": "Substreko",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__draw--pen": {
"message": "Pen",
"message": "Feltokrajono",
"description": "Type of brush to free draw"
},
"MediaEditor__draw--highlighter": {
"message": "Highlighter",
"message": "Emfazilo",
"description": "Type of brush to free draw"
},
"MediaEditor__draw--thin": {
"message": "Thin",
"message": "Maldika",
"description": "Tip width of the brush"
},
"MediaEditor__draw--regular": {
"message": "Regular",
"message": "Norma",
"description": "Tip width of the brush"
},
"MediaEditor__draw--medium": {
@ -6658,7 +6686,7 @@
"description": "Tip width of the brush"
},
"MediaEditor__draw--heavy": {
"message": "Heavy",
"message": "Dika",
"description": "Tip width of the brush"
},
"MediaEditor__crop--reset": {
@ -6666,7 +6694,7 @@
"description": "Reset the crop state"
},
"MediaEditor__crop--rotate": {
"message": "Rotate",
"message": "Turni",
"description": "Rotate the canvas"
},
"MediaEditor__crop--flip": {
@ -6678,25 +6706,13 @@
"description": "Lock the aspect ratio"
},
"MediaEditor__crop--crop": {
"message": "Crop",
"message": "Stuci",
"description": "Performs the crop"
},
"WhatsNew__modal-title": {
"message": "Kio novas",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Vin nun povas serĉi en arĥivigitaj interparoloj. Imagu, ke vi estas serĉanta (rapide) tra pralibroj pri postsignoj. ",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Se vi iam rulumis supren kaj sendis mesaĝon, vi eble demandis vin, kie via mesaĝo estas! Nun, kiam vi sendas mesaĝon, ĝi aperos rulume antaŭ vi, por ke vi admiru vian laboron.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Ĉu vi reagis al mesaĝo? Tio pli bone funkcias, reprovante ĝis unu tago.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Tiu versio enhavas kelkajn optimumaĵojn kaj riparetojn, por ke Signal plu funkciu bone.",
"description": "Release notes for v5.25"
@ -6706,11 +6722,33 @@
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.26--1": {
"message": "Tired: Sending plain un-edited images on Signal. Wired: Adding cat stickers, neon text, and drawing happy trees on your images before sending them on Signal.",
"message": "Vi povas nun desegni sur bildo aŭ aldoni glumarkojn aŭ tekstojn sur bildo antaŭ ol sendi ĝin.",
"description": "Release notes for v5.26"
},
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"message": "Ĉu vi jam diris al vi, ke vi bezonas pli da spaco en la dekstra panelo? Se jes, vi nun povas maletendi la maldekstran panelon.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop nun funkcias senpere ĉe novaj M1-komputiloj de Apple. Sur tiaj komputiloj, la aplikaĵo estu pli rapida. Multajn dankojn al $dennis$ por ties granda laboro pri tio!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Ĉu longa alvoko? Via sistemo ne plu endormiĝos dum via grava interparolo.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Estas ankaŭ kelkaj plibonaĵetoj kaj sencimigoj, por ke Signal plu bone funkcias, inkluzive de plibonigoj pri alvokoj.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Nova jaro, nova eka agordo-fenestro. Ni refaris la bonvenigajn fenestrojn ĵuse por 2022. ",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Fallo encontrado al descifrar.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Fallo encontrado al descifrar un mensaje de $name$, dispositivo $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1208,7 +1208,7 @@
"description": "Shown on the drop-down menu for an individual message, deletes single message"
},
"deleteMessageForEveryone": {
"message": "Eliminar mensaje en el chat",
"message": "Eliminar mensaje del chat",
"description": "Shown on the drop-down menu for an individual message, deletes single message for everyone"
},
"deleteMessages": {
@ -1331,29 +1331,49 @@
"message": "La privacidad es posible. Signal lo hace fácil.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Enlaza tu teléfono con Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Ajustes de Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Dispositivos enlazados",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Botón '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Enlazar nuevo dispositivo",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"message": "Escanea este código en la aplicación de Signal en tu teléfono",
"description": "Alt text for the QR code on the device link screen"
"Install__scan-this-code": {
"message": "Escanea este código desde Signal en tu teléfono",
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Abre Signal en tu teléfono.",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Toca en «$settings$», después en «$linkedDevices$»",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Ajustes",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Toca en «$plusButton$» (Android) o «$linkNewDevice$» (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Fallo al cargar el código QR. Comprueba tu conexión e inténtalo de nuevo. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Saber más",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Este nombre aparecerá bajo «Dispositivos enlazados» en tu teléfono",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Computadora/ordenador",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nombre del dispositivo",
@ -1371,6 +1391,10 @@
"message": "Sincronizando personas y grupos",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Nota: Tus chats previos no se sincronizarán con este dispositivo",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Fallo al conectar con el servidor.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "¡Algo ha salido mal!",
"description": ""
},
"installUnknownError": {
"message": "Ha ocurrido un fallo inesperado. Por favor, inténtalo de nuevo.",
"description": ""
},
"installTryAgain": {
"message": "Inténtalo de nuevo",
"description": ""
@ -2292,7 +2320,7 @@
"description": "Shown if request to Signal servers to find username fails"
},
"startConversation--username-not-found": {
"message": "Alias de usuari@ no encontrado. $atUsername$ no usa Signal. Asegúrate de haber introducido el alias de usuari@ correcto.",
"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",
"placeholders": {
"atUsername": {
@ -6685,18 +6713,6 @@
"message": "Novedades",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Ahora puedes buscar en los chat archivados. Imagínate buscando (rápidamente) la siguiente pista entre tomos antiguos.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Si alguna vez te desplazaste hacia arriba en el chat y enviaste un mensaje, es posible que te preguntaras ¿dónde está mi mensaje? Ahora, cada vez que envíes un mensaje, aparecerá en pantalla para que puedas admirar tu arduo trabajo.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "¿Reaccionas a un mensaje? Ahora debería ser más fiable, con reintentos hasta tras 24 horas",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Esta versión contiene un par de pequeñas mejoras para que Signal funcione sin problemas.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "¿Alguna vez has tenido la sensación de necesitar más píxeles en el panel de los mensajes? ¿Eres fan de avatares, y sólamente avatares? ¿Tienes una pegatina de \"Estás demasiado cerca, necesito espacio entre nosotr@s\" en la parte trasera de tu auto? Si has respondido sí o no a alguna de estas preguntas, te alegrará saber que la vista del panel con la lista de chats se puede reducir.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Ahora, Signal Desktop está optimizada para los procesadores M1 que Apple usa en sus nuevos Macs. Si utilizas uno de esos Macs, Signal funciona de manera más ligera. Si no, dale la bienvenida a la gente que los usa. ¡Los agradecimientos son para $dennis$ por su duro trabajo!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "¿La llamada dura demasiado? Tu sistema permanecerá despierto durante todo el tiempo de la llamada, en lugar de entrar en hibernación en medio de esa conversación tan importante.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "También hemos reparado un par de fallos para que Signal funcione mejor, sobre todo en las llamadas.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Año nuevo, nueva pantalla de configuración. Hemos rediseñado las pantallas de configuración a tiempo para 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Programmil tekkis dekrüptimistõrge.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ muutis enda telefoninumbri uueks numbriks",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privaatsus on võimalik. Signal teeb selle lihtsaks.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Ühenda telefon Signal Desktopiga",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signali sätted",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Ühendatud seadmed",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+'-nupp",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Ühenda uus seade",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skanni see kood enda telefonis oleva Signal rakendusega",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Ava Signal enda telefonis",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Sätted",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Rohkem infot",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Seadme nimi",
@ -1371,6 +1391,10 @@
"message": "Kontaktide ja gruppide sünkimine",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Ühenduse loomine serverisse ei õnnestunud.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Midagi läks valesti!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Proovi uuesti",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Mis on uut",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "See versioon sisaldab paljusid väikseid parendusi, mis Signali sujuvalt käimas.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Pribatutasuna posible da. Signal-ek erraz egiten du.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Lotu zure telefona Signal Desktop-ekin",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal Ezarpenak",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Lotutako Gailuak",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Botoia",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Gailu berria lotu",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Ezarpenak",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Gehiago jakin",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Gailuaren izena",
@ -1371,6 +1391,10 @@
"message": "Kontaktuak eta taldeak sinkronizatzen",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Ezin izan da zerbitzariarekin konektatu.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Zerbait oker joan da",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Saiatu berriro",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ شمارهٔ خود را به یک شمارهٔ جدید تغییر داد",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "حفظ حریم خصوصی ممکن است. سیگنال این کار را راحت‌تر میکند.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "موبایل خود را به سیگنال Desktop لینک کنید",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "تنظیمات سیگنال",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "دستگاه های متصل شده",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "دکمه '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "لینک کردن دستگاه جدید",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "تنظیمات",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "بیشتر یاد بگیرید",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "نام دستگاه",
@ -1371,6 +1391,10 @@
"message": "هماهنگ سازی مخاطبین و گروه ها",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "برقراری ارتباط با سرور ناموفق بود.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "خطایی رخ داد!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "دوباره تلاش کنید",
"description": ""
@ -6685,18 +6713,6 @@
"message": "تازه‌ها",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Ohjelma törmäsi salauksen purkuvirheeseen.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Työpöytä törmäsi salauksen purkuvirheeseen lähteestä $name$, laitteelta $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -790,7 +790,7 @@
"description": "Aria label for clear search button"
},
"searchIn": {
"message": "Search chat",
"message": "Etsi keskustelusta",
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$on vaihtanut puhelinnumeronsa",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Yksityisyys on mahdollista. Signal tekee siitä helppoa.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Yhdistä puhelimesi ja Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal-asetukset",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Yhdistetyt laitteet",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+'-nappi",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Yhdistä uusi laite",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skannaa tämä koodi puhelimesi Signal-sovelluksessa.",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Avaa Signal puhelimessa",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Asetukset",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Lue lisää",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Laitteen nimi",
@ -1371,6 +1391,10 @@
"message": "Synkronoidaan yhteystietoja ja ryhmiä",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Palvelimeen ei saada yhteyttä.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Jokin meni pieleen!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Yritä uudelleen",
"description": ""
@ -5434,7 +5462,7 @@
"description": "This is the info about the disappearing messages setting, in groups"
},
"ConversationDetails--disappearing-messages-info--direct": {
"message": "When enabled, messages sent and received in this 1:1 chat will disappear after they've been seen.",
"message": "Kun käytössä, tämän 1:1-keskustelun lähetetyt ja vastaanotetut viestit katoavat, kun ne on nähty.",
"description": "This is the info about the disappearing messages setting, for direct conversations"
},
"ConversationDetails--notifications": {
@ -6602,7 +6630,7 @@
"description": "Label for the draw button in the media editor"
},
"MediaEditor__control--text": {
"message": "Add text",
"message": "Lisää teksti",
"description": "Label for the text button in the media editor"
},
"MediaEditor__control--sticker": {
@ -6610,7 +6638,7 @@
"description": "Label for the sticker button in the media editor"
},
"MediaEditor__control--crop": {
"message": "Crop and rotate",
"message": "Leikkaa ja käännä",
"description": "Label for the crop & rotate button in the media editor"
},
"MediaEditor__control--undo": {
@ -6622,35 +6650,35 @@
"description": "Label for the redo button in the media editor"
},
"MediaEditor__text--regular": {
"message": "Regular",
"message": "Tavallinen",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--highlight": {
"message": "Highlight",
"message": "Korostus",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--outline": {
"message": "Outline",
"message": "Reunaviiva",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--underline": {
"message": "Underline",
"message": "Alleviivaus",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__draw--pen": {
"message": "Pen",
"message": "Kynä",
"description": "Type of brush to free draw"
},
"MediaEditor__draw--highlighter": {
"message": "Highlighter",
"message": "Korostuskynä",
"description": "Type of brush to free draw"
},
"MediaEditor__draw--thin": {
"message": "Thin",
"message": "Ohut",
"description": "Tip width of the brush"
},
"MediaEditor__draw--regular": {
"message": "Regular",
"message": "Tavallinen",
"description": "Tip width of the brush"
},
"MediaEditor__draw--medium": {
@ -6658,7 +6686,7 @@
"description": "Tip width of the brush"
},
"MediaEditor__draw--heavy": {
"message": "Heavy",
"message": "Vahva",
"description": "Tip width of the brush"
},
"MediaEditor__crop--reset": {
@ -6666,7 +6694,7 @@
"description": "Reset the crop state"
},
"MediaEditor__crop--rotate": {
"message": "Rotate",
"message": "Käännä",
"description": "Rotate the canvas"
},
"MediaEditor__crop--flip": {
@ -6685,18 +6713,6 @@
"message": "Uudet ominaisuudet",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Voit nyt etsiä arkistoiduista keskusteluista. Kuvittele itsesi etsiväsi (nopeasti) muinaisten teosten läpi ja etsiväsi seuraavaa vihjettä.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Jos olet joskus vierittänyt ylöspäin ja lähettänyt viestin, saatat ihmetellä, missä viestisi oli! Nyt aina kun lähetät viestin, se vieritetään näkyviin, jotta voit ihailla kovaa työtäsi.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagoitko viestiin? Sen pitäisi nyt olla luotettavampi ja yrittää uudelleen jopa 24 tuntia",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Tämä versio sisältää useita pieniä parannuksia ja virhekorjauksia, jotka pitävät Signalin toiminnan sujuvana.",
"description": "Release notes for v5.25"
@ -6706,11 +6722,33 @@
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.26--1": {
"message": "Tired: Sending plain un-edited images on Signal. Wired: Adding cat stickers, neon text, and drawing happy trees on your images before sending them on Signal.",
"message": "Väsynyt: Lähetä tavallisia, muokkaamattomia kuvia Signalissa. Virkeä: Lisää kissatarroja, neon-tekstiä ja piirtele iloisia puita kuviin ennen niiden lähetystä Signalilla.",
"description": "Release notes for v5.26"
},
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Pitkä puhelu? Järjestelmäsi tulisi pysyä levon sijaan hereillä koko ajan, kun olet tärkeässä keskustelussa.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "On muutamia pieniä viilauksia ja korjauksia, joiden avulla Signal toimii sulavasti, mukaan lukien muutamia puheluaiheisia parannuksia.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -482,7 +482,7 @@
"description": "Title of the success page for submitting a debug log"
},
"debugLogSuccessNextSteps": {
"message": "Journal de débogage téléversé. Lorsque vous contactez lassistance, copiez le lien ci-dessous et joignez-le avec une description du problème rencontré et les étapes pour le reproduire.",
"message": "Le journal de débogage a été téléversé. Quand vous contactez lassistance, copiez le lien ci-dessous et joignez-le avec une description du problème rencontré, avec les étapes pour le reproduire.",
"description": "Explanation of next steps to take when submitting debug log"
},
"debugLogCopy": {
@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Signal pour ordinateur a rencontré une erreur de déchiffrement.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal Desktop a rencontré une erreur de déchiffrement de $name$, appareil $deviceId$.",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ a changé son numéro pour un nouveau.",
"message": "$sender$ a changé de numéro de téléphone",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "La confidentialité est possible. Signal la facilite.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Reliez votre téléphone à Signal Desktop pour ordinateur",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Paramètres de Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Appareils reliés",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Bouton « + »",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Relier un nouvel appareil",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Balayez ce code dans lapplication Signal sur votre téléphone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Ouvrez Signal sur votre téléphone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Touchez $settings$ puis $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Paramètres",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Touchez $plusButton$ (Android) ou $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"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"
},
"Install__qr-failed__learn-more": {
"message": "En apprendre davantage",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Ce nom apparaîtra sous « Appareils reliés » sur votre téléphone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Mon ordinateur",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nom de lappareil ",
@ -1371,6 +1391,10 @@
"message": "Synchronisation des contacts et groupes",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Remarque : lhistorique de vos conversations ne sera pas synchronisé avec cet appareil",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Échec de connexion au serveur.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Une erreur sest produite.",
"description": ""
},
"installUnknownError": {
"message": "Une erreur inattendue sest produite. Veuillez réessayer.",
"description": ""
},
"installTryAgain": {
"message": "Réessayer",
"description": ""
@ -5434,7 +5462,7 @@
"description": "This is the info about the disappearing messages setting, in groups"
},
"ConversationDetails--disappearing-messages-info--direct": {
"message": "When enabled, messages sent and received in this 1:1 chat will disappear after they've been seen.",
"message": "Si cette option est activée, les messages envoyés et reçus dans cette conversation disparaîtront après avoir été lus.",
"description": "This is the info about the disappearing messages setting, for direct conversations"
},
"ConversationDetails--notifications": {
@ -6180,7 +6208,7 @@
"description": "Label for the Disappearing Messages default timer setting"
},
"UniversalTimerNotification__text": {
"message": "La minuterie des messages éphémères sera définie sur $timeValue$ quand vous échanger des messages avec eux.",
"message": "La minuterie des messages éphémères sera définie sur $timeValue$ quand vous échangez des messages avec cette personne.",
"description": "A message displayed when default disappearing message timeout is about to be applied",
"placeholders": {
"timeValue": {
@ -6198,7 +6226,7 @@
"description": "Button text when the group description is too long"
},
"EditConversationAttributesModal__description-warning": {
"message": "Les descriptions de gruope seront visibles aux membres de ce groupe et aux personnes qui ont été invitées.",
"message": "Les descriptions de groupe seront visibles aux membres de ce groupe et aux personnes qui ont été invitées.",
"description": "Label text shown when editing group description"
},
"ConversationDetailsHeader--add-group-description": {
@ -6626,11 +6654,11 @@
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--highlight": {
"message": "Highlight",
"message": "Surligneur",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--outline": {
"message": "Outline",
"message": "Contour",
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__text--underline": {
@ -6685,18 +6713,6 @@
"message": "Les nouveautés",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Vous pouvez désormais faire une recherche dans les conversations archivées. Imaginez-vous en train de chercher (rapidement) dans des tomes anciens, à la recherche du prochain indice.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "S'il vous est déjà arrivé de faire défiler un message vers le haut et de l'envoyer, vous pourriez vous demander où était votre message ! Désormais, chaque fois que vous enverrez un message, il défilera à l'écran pour que vous puissiez admirer votre travail.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Vous réagissez à un message ? Il devrait maintenant être plus fiable, en réessayant jusqu'à 24 heures.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6706,11 +6722,33 @@
"description": "Release notes for releases that only include bug fixes"
},
"WhatsNew__v5.26--1": {
"message": "Tired: Sending plain un-edited images on Signal. Wired: Adding cat stickers, neon text, and drawing happy trees on your images before sending them on Signal.",
"message": "Fatiguant : envoyer des images simples et non retouchées sur Signal. Excitant : ajouter des autocollants de chats, du texte fluo et dessiner des arbres heureux sur vos images avant de les envoyer sur Signal.",
"description": "Release notes for v5.26"
},
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"message": "Vous avez déjà eu limpression davoir besoin de plus de pixels sur le volet droit de votre vie ? Êtes-vous un fan des avatars, mais seulement des avatars et rien dautre ? Avez-vous un autocollant \"Défendez l'espace libre\" sur votre voiture ? Si vous avez répondu oui ou non à l'une de ces questions, cette mise à jour vous propose un volet gauche rétractable.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop pour ordinateur est désormais optimisé pour la puce M1 dApple qui est utilisée dans ses ordinateurs les plus récents. Si vous êtes sur lun de ces appareils dernier cri, lappli devrait être beaucoup plus rapide. Sinon, souhaitez chaleureusement la bienvenue aux utilisateurs qui le sont. Un grand merci à $dennis$ pour son travail acharné!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Dans un long appel ? Votre système devrait rester allumé tout du long, plutôt que de s'endormir au milieu d'une discussion importante.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Il y a aussi quelques petits ajustements et corrections de bugs pour que Signal tourne bien, y compris plusieurs améliorations sur les appels.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Nouvelle année, nouvel écran de configuration initiale. Nous avons redessiné les écrans de configuration initiale juste à temps pour 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ગોપનીયતા શક્ય છે. Signal તેને સરળ બનાવે છે.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "તમારા ફોનને Signal ડેસ્કટોપ સાથે લિંક કરો",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal સેટિંગ્સ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "લિંક થયેલ ડિવાઇસ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' બટન",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "નવું ડિવાઇસ લિંક કરો",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "સેટિંગ્સ",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "વધુ શીખો",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ડિવાઇસનું નામ",
@ -1371,6 +1391,10 @@
"message": "સંપર્કો અને ગ્રુપનું સિંક કરી રહ્યું છે",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "સર્વર સાથે કનેક્ટ કરવામાં નિષ્ફળ.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "કંઈક ખોટું થયું!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ફરીથી પ્રયત્ન કરો",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "שולחן העבודה נתקל בשגיאת פיענוח.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "שולחן העבודה נתקל בשגיאת פיענוח מאת $name$, מכשיר $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ שינה/שינתה את המספר שלו/שלה אל מספר חדש",
"message": "$sender$ שינה/שינתה את המספר שלו/שלה",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "פרטיות היא אפשרית. Signal הופך את זה לקל.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Signal Desktop קשר את הטלפון שלך אל",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "הגדרות Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "מכשירים מקושרים",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "כפתור '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "קשר מכשיר חדש",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "סרוק קוד זה ביישום Signal בטלפון שלך",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "פתח את Signal בטלפון שלך",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "הקש על $settings$, לאחר מכן הקש על $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "הגדרות",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "הקש על $plusButton$ (Android) או $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "קוד ה־QR לא היה יכול להיטען. בדוק את חיבור האינטרנט שלך ונסה שוב. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "למד עוד",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "תראה שם זה תחת \"מכשירים מקושרים\" בטלפון שלך",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "המחשב שלי",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "שם מכשיר",
@ -1371,6 +1391,10 @@
"message": "מסנכרן אנשי קשר וקבוצות",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "הערה: היסטורית ההתכתבויות שלך לא תסונכרן אל מכשיר זה",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "נכשל בחיבור לשרת.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "משהו השתבש!",
"description": ""
},
"installUnknownError": {
"message": "שגיאה בלתי צפויה התרחשה. אנא נסה שוב.",
"description": ""
},
"installTryAgain": {
"message": "נסה שוב",
"description": ""
@ -6685,18 +6713,6 @@
"message": "מה חדש",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "אתה יכול לחפש עכשיו בשיחות מאורכבות. דמיין את עצמך מחפש (בזריזות) בכרכים עתיקים, בחיפוש אחר הרמז הבא.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "אם אי פעם גוללת למעלה ושלחת הודעה, בטח תהית איפה ההודעה הייתה! עכשיו, ברגע שתשלח הודעה, היא תגולל לתוך התצוגה בשבילך כדי להעריץ את העבודה הקשה שלך.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "מגיב אל הודעה? זה אמור להיות יותר אמין עכשיו, ניסיון חוזר עד 24 שעות",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "גרסה זו מכילה מספר של שפצורים קטנים ותיקוני תקלים כדי לשמור על Signal שירוץ באופן חלק.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "החלונית השמאלית ניתנת לקיפול כדי להפוך את החלונית הימנית רחבה יותר.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop ממוטב עכשיו עבור שבב M1 של Apple שנמצא בשימוש במחשבים החדשים יותר שלה. אם אתה על אחד מהמחשבים החדשים האלו, היישום אמור להיות זריז הרבה יותר. תודה ענקית אל $dennis$ על עבודתו הקשה כאן!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "בשיחה ארוכה? המערכת אמורה להישאר ערה כל הזמן, במקום להיכנס למצב שינה בזמן שאתה באמצע דיון חשוב.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "ישנם גם מספר שפצורים ותיקוני תקלים כדי להשאיר את Signal רץ בצורה חלקה, כולל כמה שיפורים קשורי התקשרות.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "שנה חדשה, מסך הגדרה ראשונית חדש. עיצבנו מחדש את מסכי ההגדרה הראשונית בדיוק בזמן אל 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "डेस्कटॉप एक डिक्रिप्शन एरर में चला गया.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ने अपना नंबर किसी नए नंबर से बदल लिया",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "गोपनीयता संभव है. Signal उसे आसान बनता है",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Signal Desktop से अपना फ़ोन लिंक करें",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal सेटिंग्स",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "लिंक की गईं डिवाइसें",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' बटन",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "नया डिवाइस लिंक करें",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "इस कोड को अपने फ़ोन के Signal ऐप में स्कैन करें",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "अपने फ़ोन पर Signal को ओपेन करें",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "सेटिंग्स",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "अधिक जानें",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "डिवाइस का नाम",
@ -1371,6 +1391,10 @@
"message": "संपर्क और समूह सिंक हो रहे हैं",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "सर्वर से कनेक्ट करने में विफल",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "कुछ गलत हो गया",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "फिर से कोशिश करो",
"description": ""
@ -6685,18 +6713,6 @@
"message": "नया क्या है",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "अब आप संग्रहीत बातचीत में सर्च कर सकते हैं. कल्पना कीजिए कि आप अगले सुराग की तलाश प्राचीन वक्त के ज़रिए (जल्दी से) खोज रहे हैं.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "अगर आपने कभी ऊपर स्क्रॉल किया है और मेसेज भेजा है, तो आपको आश्चर्य हो सकता है कि आपका मेसेज कहां था! अब, जब भी आप कोई मेसेज भेजेंगे, तो आप अपनी कड़ी मेहनत की प्रशंसा करने के लिए उसे स्क्रॉल करके देख सकेंगे.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "एक मेसेज पर प्रतिक्रिया देते हुए? अब इसे और ज़्यादा विश्वसनीय होना चाहिए, 24 घंटे तक फिर से कोशिश करते हुए",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "सिग्नल को सही रूप से चलाने के लिए इस वर्शन में कई छोटे बदलाव और बग फ़िक्स शामिल हैं.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "कभी ऐसा महसूस हुआ है कि आपको अपने जीवन में दाएं पेन पर ज़्यादा पिक्सेल की ज़रुरत है? क्या आप अवतारों के प्रशंसक हैं, लेकिन सिर्फ़ अवतार और कुछ नहीं? क्या आपकी कार पर \"सेव द स्क्रीन रियल एस्टेट\" बम्पर स्टिकर है? अगर आपने इनमें से किसी भी सवाल का जवाब हां या ना में दिया है, तो यह अपडेट आपके लिए कुछ संक्षिप्त करने योग्य बायां पेन लेकर आया है.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "एक लंबी कॉल पर हैं ? जब आप किसी महत्वपूर्ण चर्चा के बीच में हों तो आपका सिस्टम बंद जाने की जगह पर पूरे समय जागता रहना चाहिए। ",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Signal को सुचारू रूप से चलाने के लिए कई छोटे बदलाव और त्रुटि ठीक करी गई हैं, जिसमें कई कॉलिंग-संबंधी सुधार भी शामिल हैं।",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ promijenio je svoj broj ",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privatnost je moguća. Signal to olakšava.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Povežite vaš telefon s Signalom za Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Postavke Signala",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Povezani uređaji",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Dugme",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Poveži novi uređaj",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Postavke",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Saznajte više",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Naziv uređaja",
@ -1371,6 +1391,10 @@
"message": "Sinkroniziranje kontakata i grupa",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Nije uspjelo povezivanje s poslužiteljem.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Nešto je pošlo po zlu.",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Pokušajte ponovo",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop menemui eror dekripsi.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop mengalami kegagalan dekripsi dari $name$, perangkat $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ mengubah nomornya ke nomor baru",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privasi itu mungkin. Signal membuatnya lebih mudah.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Sambungkan telpon Anda dengan Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Pengaturan Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Perangkat Terhubung",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Tombol",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Sambungkan Perangkat Baru",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Pindai kode ini di aplikasi Signal di ponsel Anda",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Buka Signal di ponsel Anda",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Pengaturan",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Pelajari lebih lanjut",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nama Perangkat",
@ -1371,6 +1391,10 @@
"message": "Sinkronisasi dengan kontak dan grup",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Gagal menyambungkan ke peladen.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Ada yang keliru!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Coba Lagi",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Yang Baru",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Kini Anda dapat mencari percakapan arsip. Bayangkan Anda mencari (dengan cepat) di antara buku-buku kuno untuk mencari petunjuk selanjutnya.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Jika pernah menggulir ke atas dan mengirim pesan, Anda mungkin bertanya di manakah pesan Anda! Kini setiap Anda mengirim pesan, itu akan digulirkan ke dalam tampilan agar bisa Anda lihat.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Menanggapi pesan? Kini itu lebih andal, coba ulang hingga 24 jam.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Versi ini mengandung sejumlah perubahan kecil dan perbaikan bug agar Signal tetap berjalan lancar.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Pernah merasa seolah Anda membutuhkan lebih banyak piksel di panel kanan dalam hidup Anda? Apakah Anda penggemar avatar, tetapi hanya avatar dan bukan lainnya? Apakah di mobil Anda terpasang stiker bemper \"Hemat ruang layar monitor\"? Jika Anda menjawab ya ataupun tidak pada salah satu pertanyaan itu, maka pembaruan ini memberikan panel kiri yang dapat dilipat untuk Anda.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Ada juga sejumlah perubahan kecil dan perbaikan bug untuk menjaga Signal berjalan dengan lancar, termasuk beberapa peningkatan terkait panggilan.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Forritið lenti í afkóðunarvillu.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Forritið rakst á villu í afkóðun frá $name$, tæki $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ skipti yfir í nýtt símanúmer",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Gagnaleynd er möguleg. Signal gerir hana auðvelda.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Tengja símann þinn við Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal stillingar",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Tengd tæki",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' hnappur",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Tengjast nýju tæki",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skannaðu þennan kóða með Signal-forritinu á símanum þínum",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Opnaðu Signal á símanum þínum",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Stillingar",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Kanna nánar",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Heiti tækis",
@ -1371,6 +1391,10 @@
"message": "Samstilla tengiliði og hópa",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Náði ekki að tengjast netþjóni.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Eitthvað fór úrskeiðis!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Reyndu aftur",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Hvað er nýtt",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Núna geturðu leitað í samtölum í safni. Hugsaðu þér að nú þarftu ekki að finna vísbendingar hér og þar til að finna það sem þú þarft.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Ef þú hefur einhventíma skrunað upp og sent skilaboð, kemur að því að þú manst ekkert hvað hefur orðið af þessum skilaboðum. Núna munu þau skruna sjálf inn í gluggann svo einfalt sé að sjá þau.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Viðbrögð við skilaboðum? Þau ættu að vera áreiðanlegri, núna er reynt aftur í allt að 24 tíma",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Þessi útgáfa inniheldur nokkrar villuleiðréttingar og fínstillingar til að Signal keyri sem áreiðanlegast.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Einhverntíma fundist þrengt að þér í lífinu? Á hægri hliðinni? Ertu með áhuga á avatar-auðkennismyndum en engu öðru? Ertu með \"Spörum skjápláss\"-límmiða á stuðaranum? Ef þú hefur svarað með já eða nei við einhverjum þessara spurninga, áttu eftir að meta það að þessi uppfærsla kemur með samanfellanlegu hliðarspjaldi vinstra megin.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop styður núna M1-örflöguna frá Apple sem er notuð í tölvunum þeirra. Ef þú ert með eitt af þessum nýkomnu tækjum, ætti forritið að vera með mun betri svörun. Ef svo er ekki, ættirðu að óska til hamingju þeim notendum sem þessa njóta. Gríðarlega góðar þakkir til $dennis$ fyrir vinnu hans við þetta!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Í löngu símtali? Kerfið þitt ætti að haldast vakandi allan tímann, í stað þess að blunda á meðan þú ert í miðju mikilvægu samtali.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Það er einnig fjöldi smábreytinga og lagfæringa á göllum sem hjálpa til við að keyra Signal óaðfinnanlega, þar með taldar lagfæringar sem tengjast símtölum.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ha riscontrato un errore di decrittazione.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ha riscontrato un errore di decrittazione da $name$, dispositivo $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ha cambiato il suo numero con un nuovo numero",
"message": "$sender$ ha cambiato il suo numero di telefono",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "La riservatezza è possibile. Signal la rende facile.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Collega il tuo telefono a Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Impostazioni di Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Dispositivi collegati",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Pulsante \"+\"",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Collega un nuovo dispositivo",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scansiona questo codice nell'app Signal sul tuo telefono",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Apri Signal sul tuo telefono",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Clicca nelle $settings$, poi clicca $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Impostazioni",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Clicca $plusButton$ (Android) o $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Non è stato possibile caricare il codice QR. Controlla la tua connessione internet e riprova. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Scopri di più",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Vedrai questo nome sotto \"Dispositivi collegati\" sul tuo telefono",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Il mio computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nome del dispositivo",
@ -1371,6 +1391,10 @@
"message": "Sincronizzazione contatti e gruppi",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Nota: La tua cronologia delle chat non sarà sincronizzata su questo dispositivo",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Connessione al server non riuscita.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Qualcosa non ha funzionato!",
"description": ""
},
"installUnknownError": {
"message": "Si è verificato un errore inaspettato. Si prega di riprovare.",
"description": ""
},
"installTryAgain": {
"message": "Riprova",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Cosa c'è di nuovo",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Ora puoi cercare nelle conversazioni archiviate. Immagina di cercare (velocemente) tra antichi tomi, alla ricerca del prossimo indizio.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Se hai mai fatto scorrere in alto una chat e inviato un messaggio, potresti esserti chiesto dove fosse finito il tuo messaggio! Ora, ogni volta che invii un messaggio, questo verrà fatto scorrere in vista per farti ammirare il tuo duro lavoro.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagire a un messaggio? Ora dovrebbe essere più affidabile, riprovando fino a 24 ore",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Questa versione contiene una serie di piccole modifiche e correzioni di bug per far funzionare Signal senza problemi.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Vi siete mai sentiti come se aveste bisogno di più pixel sul pannello di destra nella vostra vita? Sei un fan degli avatar, ma solo degli avatar e nient'altro? Avete un adesivo \"Salva lo spazio su schermo\" sulla vostra auto? Se avete risposto sì o no a una qualsiasi di queste domande, allora questo aggiornamento ha del pannello sinistro pieghevole per voi.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop è ora ottimizzato per il chip M1 di Apple, utilizzato nei loro nuovi computer. Se sei su uno di questi nuovi dispositivi, l'applicazione dovrebbe essere molto più veloce. Se non lo sei, dai un caldo benvenuto agli utenti che lo sono. Un enorme ringraziamento a $dennis$ per il suo duro lavoro!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "In una lunga telefonata? Il tuo sistema dovrebbe rimanere sveglio per tutto il tempo, invece di addormentarsi mentre sei nel mezzo di una discussione importante.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Ci sono anche una serie di piccole modifiche e correzioni di bug per mantenere Signal senza problemi, compresi diversi miglioramenti relativi alle chiamate.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Anno nuovo, nuova schermata di configurazione iniziale. Abbiamo ridisegnato le schermate di configurazione iniziale giusto in tempo per il 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "デスクトップで復号化エラーが発生しました。",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "デスクトップで $name$ ($deviceId$) からの復号化エラーが発生しました。",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -904,7 +904,7 @@
"description": "Shown on contact detail screen as a label for an address/phone/email"
},
"mobile": {
"message": "携帯",
"message": "携帯電話",
"description": "Shown on contact detail screen as a label for a phone or email"
},
"email": {
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ が電話番号を変更しました",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,36 +1331,56 @@
"message": "Signalを使えば簡単にプライバシーを守れます。",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "携帯電話をSignal Desktopにリンクする",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal設定",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "リンク済み端末",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "「+」ボタン",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "新しい端末をリンク",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "携帯電話のSignalアプリで、このQRコードを読み取ってください。",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "あなたの電話でSignalを開きます",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "設定",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "さらに詳しく",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "端末名",
"description": "The label in settings panel shown for the user-provided name for this desktop instance"
},
"chooseDeviceName": {
"message": "この端末の名前を選択",
"message": "この端末の名前を設定してください",
"description": "The header shown on the 'choose device name' screen in the device linking process"
},
"finishLinkingPhone": {
@ -1371,6 +1391,10 @@
"message": "連絡先とグループを同期しています",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "サーバーに接続できませんでした",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "エラーが発生しました。",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "もう一度試す",
"description": ""
@ -2318,7 +2346,7 @@
"description": "The 'next' button text in the 'choose group members' left pane screen"
},
"chooseGroupMembers__maximum-group-size__title": {
"message": "グループのサイズが最大値に達しました",
"message": "グループメンバー数が上限に達しました",
"description": "Shown in the alert when you add the maximum number of group members"
},
"chooseGroupMembers__maximum-group-size__body": {
@ -2360,7 +2388,7 @@
}
},
"setGroupMetadata__title": {
"message": "このグループに名前を付ける",
"message": "このグループの名前",
"description": "The title for the 'set group metadata' left pane screen"
},
"setGroupMetadata__back-button": {
@ -2436,7 +2464,7 @@
"description": ""
},
"autoUpdateRestartButtonLabel": {
"message": "Signalを再起動",
"message": "Signalを再起動する",
"description": ""
},
"autoUpdateLaterButtonLabel": {
@ -2678,7 +2706,7 @@
"description": "Label for the open button for the sticker picker"
},
"stickers--StickerPicker--AddPack": {
"message": "ステッカーパックを追加する",
"message": "ステッカーパックを追加",
"description": "Label for the add pack button in the sticker picker"
},
"stickers--StickerPicker--NextPage": {
@ -2784,7 +2812,7 @@
"description": "Appears on the cancel button in confirmation dialogs."
},
"MessageBody--read-more": {
"message": "さらに表示",
"message": "続きを読む",
"description": "When a message is too long this is the affordance to expand the message"
},
"Message--unsupported-message": {
@ -3318,7 +3346,7 @@
"description": "Shown when a reaction fails to send"
},
"Reactions--more": {
"message": "さらに",
"message": "続き",
"description": "Use in the reaction picker as the alt text for the 'more' button"
},
"ReactionsViewer--all": {
@ -3482,7 +3510,7 @@
}
},
"MessageRequests--learn-more": {
"message": "もっと詳しく",
"message": "さらに詳しく",
"description": "Shown at the end of profile sharing messages as a link."
},
"ConversationHero--members": {
@ -5210,7 +5238,7 @@
"description": "Shown in timeline when a legacy group (GV1) is upgraded to a new group (GV2)"
},
"GroupV1--Migration--learn-more": {
"message": "詳細を見る",
"message": "さらに詳しく",
"description": "Shown on a bubble below a 'group was migrated' timeline notification, or as button on Migrate dialog"
},
"GroupV1--Migration--migrate": {
@ -5576,7 +5604,7 @@
"description": "Shown in the confirmation dialog when an admin is about to reset the group link"
},
"GroupLinkManagement--reset": {
"message": "リンクをリセットする",
"message": "リンクをリセット",
"description": "This lets users generate a new group link"
},
"GroupLinkManagement--approve-label": {
@ -5778,7 +5806,7 @@
"description": "When creating a new group and inviting users, this is shown in the dialog"
},
"NewlyCreatedGroupInvitedContactsDialog--body--learn-more": {
"message": "詳しく見る",
"message": "さらに詳しく",
"description": "When creating a new group and inviting users, this is shown in the dialog"
},
"AddGroupMembersModal--title": {
@ -5902,7 +5930,7 @@
"description": "aria-label for the 'next' button in the forward a message modal dialog"
},
"MessageRequestWarning__learn-more": {
"message": "詳しく見る",
"message": "さらに詳しく",
"description": "Shown on the message request warning. Clicking this button will open a dialog with more information"
},
"MessageRequestWarning__dialog__details": {
@ -6685,18 +6713,6 @@
"message": "更新情報",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "アーカイブされたチャットの中を検索できるようになりました。",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "上にスクロールしてメッセージを送信したことがある人は、自分のメッセージがどこにあるのか気になるかもしれません。メッセージを送信するたびに、スクロールして表示されるようになりました。",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "24時間以内に再試行するなど、メッセージ配送の信頼性が向上しました。",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "このバージョンではSignalをより良くするために、細かい変更とバグ修正を行いました。",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "チャット一覧の幅を変えられるようになりました。チャットの表示部分との境界を左右にドラッグすると、好きな幅に変えられます。幅を最小にすると、アイコンのみの表示となります。",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "通話中にシステムがスリーブしないようになりました。",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "また、通話に関する修正を含めた、細かな変更とバグ修正を行いました。",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ភាពឯកជនគឺអាចធ្វើទៅបាន។ Signalធ្វើបានដោយងាយស្រួល។",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "តភ្ជាប់ទូរស័ព្ទរបស់អ្នក ទៅកាន់ Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "ការកំណត់ Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ឧបករណ៍បានតភ្ជាប់",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' ប៊ូតុង",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "តភ្ជាប់ឧបករណ៍ថ្មី",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ការកំណត់",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "សិក្សាបន្ថែម",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ឈ្មោះឧបករណ៍",
@ -1371,6 +1391,10 @@
"message": "កំពុងចម្លងបញ្ជីទំនាក់ទំនង និងក្រុម",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "បរាជ័យក្នុងការតភ្ជាប់ទៅកាន់ម៉ាស៊ីនមេ។",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "មានបញ្ហាខុសប្រក្រតី!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ព្យាយាមម្តងទៀត",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ಖಾಸಗಿತನ ಸಾಧ್ಯ. Signal ಇದನ್ನು ಸುಲಭವಾಗಿಸುತ್ತದೆ.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "ನಿಮ್ಮ ಫೋನ್ ಅನ್ನು Signal Desktop ಗೆ ಲಿಂಕ್ ಮಾಡಿ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal ಸೆಟ್ಟಿಂಗ್‌ಗಳು",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ಲಿಂಕ್ ಮಾಡಲಾದ ಸಾಧನಗಳು",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' ಬಟನ್",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "ಹೊಸ ಸಾಧನವನ್ನು ಲಿಂಕ್ ಮಾಡಿ",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ಸೆಟ್ಟಿಂಗ್‌ಗಳು",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ಸಾಧನದ ಹೆಸರು",
@ -1371,6 +1391,10 @@
"message": "ಸಂಪರ್ಕಗಳು ಮತ್ತು ಗ್ರೂಪ್‌ಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಲಾಗುತ್ತಿದೆ",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "ಪೂರೈಕೆಗಣಕದ ಜೋತೆ ಸಂಪರ್ಕ ವಿಫಲವಾಗಿದೆ.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "ಏನೋ ತಪ್ಪಾಗಿದೆ!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "개인정보 지키기, Signal과 함께라면 아주 쉽습니다.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "휴대전화와 Signal Desktop 연결하기",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal 설정",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "연결된 기기",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' 버튼",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "새 기기 연결",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "설정",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "더 알아보기",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "기기 이름",
@ -1371,6 +1391,10 @@
"message": "연락처와 그룹 동기화 중",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "서버에 연결할 수 없습니다.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "오류가 발생했습니다!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "다시 시도해 주세요.",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Nihênî pêkan e. Signal jî wê hesan dike.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Telefona xwe li Signal Desktopê girê bide",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Sazkariyên Signalê",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Cîhazên girêdayî",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Bişkoka '+'ê",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Cîhaza nû girê bide",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Sazkarî",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Zêdetir bizane",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Navê cîhazê",
@ -1371,6 +1391,10 @@
"message": "Navnivîsk û kom tên senkronîzekirin",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Li serverê nehate girêdan.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Hinek tişt çewt çûn!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Dîsa biceribîne",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ມີຄວາມເປັນສວ່ນໄດ້. ສີກຫນໍໄດ້ໄຫ້ ຄວາມສະໂດກສະບາຍ.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "ລີ່ງໂທລະສັບ ຂອງທ່ານ ໄປທີສີກຫນໍ ແດັດທອບ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "ຕັ້ງຄ່າສີກຫນໍ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ອຸປະກອນເຊື່ອມໂຍງ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "ປຸ່ມ",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "ອຸປະກອນເຊື່ອມໂຍງໄໝ່",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ຕັ້ງຄ່າ",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Learn more",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ຊື່ອຸປະກອນ",
@ -1371,6 +1391,10 @@
"message": "ການຕິດຕໍ່ພົວພັນແລະກຸ່ມ",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "ການເຊື່ອມຕໍ່ກັບເຊີບເວີລົ້ມເຫລວ",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "ບາງຢາງມີບັນຫາ",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ລອງໄໝ່ອີກຄັ້ງ",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Programa susidūrė su iššifravimo klaida.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal Desktop susidūrė su iššifravimo klaida nuo $name$, įrenginio $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ pasikeitė numerį į naują",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privatumas yra įmanomas. Signal padaro jį lengvu.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Susiekite savo telefoną su Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal nustatymai",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Susieti įrenginiai",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "\"+\" mygtukas",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Susieti naują įrenginį",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Nuskenuokite šį kodą naudodami telefone įdiegtą Signal programėlę",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Atverkite savo telefone Signal programėlę",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Nustatymai",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Sužinoti daugiau",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Įrenginio pavadinimas",
@ -1371,6 +1391,10 @@
"message": "Sinchronizuojami adresatai ir grupės",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Nepavyko prisijungti prie serverio.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Kažkas nutiko!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Bandykite dar kartą",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Kas naujo",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Nuo šiol galite atlikti paiešką archyvuotuose pokalbiuose. Įsivaizduokite save. kaip (greitai) ieškote senuosiuose tomuose, bandydami rasti kitos užuominos.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Jei kada nors esate slinkę aukštyn ir išsiuntę žinutę, galbūt, norėjote žinoti, kurioje vietoje buvo jūsų žinutė. Dabar, kas kartą siunčiant žinutę, bus slenkama į rodinį, kad galėtumėte žavėtis savo sunkiu darbu.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reaguojate į žinutę? Dabar šis procesas turėtų būti patikimesnis. Nepavykus, bus 24 valandas vis bandoma iš naujo",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Šioje versijoje yra daug smulkių patobulinimų ir klaidų ištaisymų, kurie padės Signal sklandžiai veikti.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Nuo šiol kairįjį skydelį galima mažinti taip, kad daugiau vietos būtų skirta pokalbiams.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Dalyvaujate ilgame skambutyje? Visą šį laiką, kol dalyvaujate svarbioje diskusijoje, jūsų sistema turėtų išlikti aktyvi ir nepereiti į miego režimą.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Be to, yra daug smulkių patobulinimų ir klaidų ištaisymų, įskaitant su skambučiais susijusius pagerinimus, kurie padės Signal sklandžiai veikti.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ mainīja numuru uz jaunu",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privātums ir iespējams. Signāls padara to viegli īstenojamu.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Saistīt tālruni ar Signal Desktop versiju",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal iestatījumi",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Saistītās ierīces",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' poga",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Pievienot jaunu ierīci",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Iestatījumi",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Lasīt vairāk",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Ierīces nosaukums",
@ -1371,6 +1391,10 @@
"message": "Sinhronizē kontaktpersonas un grupas",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Neizdevās pieslēgties serverim",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Kaut kas sagāja grīstē!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Mēģiniet vēlreiz",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -56,7 +56,7 @@
"description": "The label that is used for the Preferences menu in the program main menu. This should be consistent with the standard naming for Preferences on the operating system."
},
"appMenuServices": {
"message": "Services",
"message": "Сервиси",
"description": "Application menu item for macOS 'Services'"
},
"appMenuHide": {
@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -662,7 +662,7 @@
}
},
"decryptionErrorToastAction": {
"message": "Submit log",
"message": "Испрати запис",
"description": "Label for the decryption error toast button"
},
"oneNonImageAtATimeToast": {
@ -694,7 +694,7 @@
"description": "Displayed when the desktop client is currently connecting to the server."
},
"connect": {
"message": "Click to reconnect.",
"message": "Кликнете да се поврзете пак.",
"description": "Shown to allow the user to manually attempt a reconnect."
},
"connectingHangOn": {
@ -790,7 +790,7 @@
"description": "Aria label for clear search button"
},
"searchIn": {
"message": "Search chat",
"message": "Пребарување на разговорот",
"description": "Shown in the search box before text is entered when searching in a specific conversation"
},
"noSearchResults": {
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Приватноста е можна. Signal ја прави лесна.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Поврзете го Вашиот телефон со Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal поставки",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Поврзани уреди",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' копче",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Поврзете нов уред",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Поставувања",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Дознајте повеќе",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Име на уредот",
@ -1371,6 +1391,10 @@
"message": "Синхронизација на контакти и групи",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Не успеав да се поврзам со серверот.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Нешто тргна наопаку!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Обиди се повторно ",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ അവരുടെ നമ്പർ ഒരു പുതിയ നമ്പറിലേക്ക് മാറ്റി",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "സ്വകാര്യത സാധ്യമാണ്. Signal ഇത് എളുപ്പമാക്കുന്നു.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "നിങ്ങളുടെ ഫോൺ Signal Desktop-മായി ബന്ധിപ്പിക്കുക ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal ക്രമീകരണങ്ങൾ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ലിങ്ക് ചെയ്തിട്ടുള്ള ഡിവൈസുകൾ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' ബട്ടൺ",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "പുതിയ ഡിവൈസ് ലിങ്ക് ചെയ്യുക",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ക്രമീകരണങ്ങൾ",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "കൂടുതൽ അറിയുക",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ഉപകരണത്തിന്റെ പേര്",
@ -1371,6 +1391,10 @@
"message": "കോൺ‌ടാക്റ്റുകളും ഗ്രൂപ്പുകളും സമന്വയിപ്പിക്കുന്നു",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "സെർവറുമായി കണക്റ്റ് ചെയ്യാനായില്ല.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "എന്തോ കുഴപ്പം സംഭവിച്ചു!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "വീണ്ടും ശ്രമിക്കുക",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": " डेस्कटॉपमध्ये डिक्रिप्शन त्रुटी आली",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ने त्याचा क्रमांक एका नवीन क्रमांकात बदलला",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "गोपनीयता शक्य आहे. Signal ते सहज बनवते.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Signal Desktop वर आपला फोन लिंक करा",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal सेटिंग",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "लिंक केलेले डिव्हाईस",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' बटण",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "नवीन डिव्हाईस जोडा",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "तुमच्या फोनवरील Signal ॲपमध्ये हे कोड स्कॅन करा",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "आपल्या फोनवर Signal उघडा",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "सेटिंग",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "अधिक जाणा",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "डिव्हाईस नाव",
@ -1371,6 +1391,10 @@
"message": "संपर्क आणि गट संकलित करत आहे",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "सर्व्हरला कनेक्ट करण्यात अयशस्वी.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "काहीतरी चुकीचे झाले!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "पुन्हा प्रयत्न करा",
"description": ""
@ -6685,18 +6713,6 @@
"message": "नवीन काय आहे",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "आता आपण संग्रहित संभाषणांत शोधू शकता. पुरातन ग्रंथांतून पुढील सूचक स्वत: शोधत (वेगाने) असल्याची कल्पना करा.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "तुम्ही या आधी स्क्रोल अप केले आणि संदेश पाठवला असेल तर तुमचा संदेश कुठे आहे या बद्दल तुम्हाला आश्चर्य वाटले असेल! आता तुम्ही केव्हाही संदेश पाठवाल तेव्हा तुमच्या हस्तकौशल्याची प्रशंसा तुम्ही करण्यासाठी तुम्हाला तो दिसेल असा तुमच्या नजरेत स्क्रोल होईल.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "एका संदेशावर प्रतिक्रिया करत आहात का? आता ते आणखी विश्वासार्ह असले पाहिजे, 24 तासांपर्यंत पुन्हा प्रयत्न करता येतो.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Signal निर्विघ्नपणे चालत ठेवण्यासाठी या आवृत्तीत अनेक लहान समन्वय आणि त्रुटी दुरुस्त्या समाविष्ट आहेत.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "तुम्हाला तुमच्या आयुष्यात उजव्या बाजूस अधिक पिक्सेल हवे आहेत, असे वाटते? तुम्ही अवतारांचे चाहते आहात, पण फक्त अवतारांचे आणि इतर कशाचे नाही? तुमच्या कारवर \"सेव्ह द स्क्रीन रिअल इस्टेट\" बंपर स्टिकर आहे का? तुम्ही यापैकी कोणत्याही प्रश्नाचे उत्तर होय किंवा नाही असे दिले असल्यास, या अपडेटमध्ये तुमच्यासाठी काही संकुचित करण्यायोग्य डावी बाजू आहे.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Komputer meja mengalami ralat nyahinkripsi.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ telah mengubah nombor mereka kepada nombor baharu",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privasi mampu dicapai. Signal memudahkannya.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Pautkan telefon anda kepada Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Tetapan Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Peranti Dipautkan",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Butang '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Pautkan Peranti Baru",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Semak imbas kod ini dalam aplikasi Signal di telefon anda",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Buka Signal di telefon anda",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Tetapan",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Ketahui lebih lanjut",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nama peranti",
@ -1371,6 +1391,10 @@
"message": "Menyegerakkan kenalan dan kumpulan",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Gagal menyambung ke pelayan.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Ada yang tidak kena!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Cuba lagi",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Perkara Baharu",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Anda kini boleh mencari dalam perbualan yang diarkibkan. Bayangkan diri anda mencari (dengan pantas) melalui buku-buku kuno, mencari petunjuk seterusnya. ",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Jika anda pernah menatal ke atas dan menghantar mesej, anda mungkin tertanya-tanya di mana mesej anda! Kini, setiap kali anda menghantar mesej, ia akan ditatal ke paparan untuk anda mengagumi kerja keras anda.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Memberi reaksi terhadap mesej? Ia kini lebih dipercayai, mencuba semula sehingga 24 jam",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Versi ini mengandungi sedikit tweak kecil dan pembetulan pepijat untuk memastikan Signal berjalan dengan lancar.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Pernahkah anda rasa yang anda memerlukan lebih banyak piksel di tetingkap kanan dalam hidup anda? Adakah anda peminat avatar, tetapi hanya avatar dan tiada apa yang lain? Adakah anda mempunyai pelekat bampar \"Simpan skrin hartanah\" pada kereta anda? Jika anda menjawab ya atau tidak kepada mana-mana soalan tersebut, maka kemas kini ini memberikan anda beberapa tetingkap kiri yang boleh dilipat untuk anda.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Personvern er mulig. Signal gjør det lett.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Koble telefonen din til Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Innstillinger for Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Koblede enheter",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "«+»-ikonet",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Koble Til En Ny Enhet",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Innstillinger",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Lær mer",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Enhetsnavn",
@ -1371,6 +1391,10 @@
"message": "Synkroniserer kontakter og grupper",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Klarte ikke koble til tjeneren.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Noe gikk galt!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Prøv igjen",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Signal-Desktop heeft een probleem met ontsleutelen.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Er is in Signal-Desktop een fout opgetreden bij het ontsleutelen van $name$, op apparaat $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1331,29 +1331,49 @@
"message": "Privacy is mogelijk. Signal maakt het gemakkelijk.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Koppel je telefoon aan Signal-Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signals instellingen",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Gekoppelde apparaten",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "+-knop",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Nieuw apparaat koppelen",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan deze code met de Signal app op je telefoon",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open de Signal app op je telefoon",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tik op $settings$ en vervolgens op $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Instellingen",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tik op $plusButton$ (Android) of $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "De QR-code kan niet geladen worden. Ga na dat je apparaat met het internet is verbonden en probeer het opnieuw. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Meer leren hierover",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Je zult deze naam zien in het menu Gekoppelde apparaten in de Signal app op je telefoon.",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Mijn computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Apparaatnaam",
@ -1371,6 +1391,10 @@
"message": "Contacten en groepen worden gesynchroniseerd",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Let op: Je gespreksgeschiedenis uit het verleden wordt niet overgezet naar dit apparaat",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Verbinden met server mislukt.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Er ging iets mis!",
"description": ""
},
"installUnknownError": {
"message": "Er is een onverwachte fout opgetreden. Probeer het opnieuw.",
"description": ""
},
"installTryAgain": {
"message": "Opnieuw proberen",
"description": ""
@ -6685,18 +6713,6 @@
"message": "wat er nieuw is",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Je kunt vanaf nu ook gearchive gesprekken doorzoeken.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Als je een bericht verzend terwijl je omhoog hebt gescrolt, dan wordt vanaf nu automatisch naar beneden naar je nieuwe bericht gescrolt.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Het verzenden van een emoji-reactie op een bericht zou vanaf nu betrouwbaarder moeten zijn. Als het niet lukt probeert Signal het automatisch opnieuw.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Deze versie bevat een aantal kleine foutoplossingen waardoor Signal voor nog meer mensen goed werkt.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Het linker paneel kan vanaf nu worden verkleint om gesprekken breder weer te geven.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal-Desktop is nu geoptimaliseerd voor Apples M1-chip die in hun nieuwere computers wordt gebruikt. Als je een van deze nieuwe apparaten gebruikt, zou de Signal app vanaf nu veel sneller moeten zijn. Veel dank aan $dennis$ voor zijn harde werk aan deze verbetering!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Je apparaat gaat niet langer automatisch over naar slaapstand wanneer je nog aan een oproep deelneemt.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Er zijn ook een aantal kleine verbeteringen en foutoplossingen om er onder andere tijdens het bellen voor te zorgen dat Signal goed blijft werken.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Het startscherm voor gebruikers die Signal-Desktop voor het eerst aan hun telefoon koppelen is opnieuw ontworpen.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ har endra nummeret sitt til eit nytt nummer",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Personvern er mogleg. Signal gjer det enkelt.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Kopla telefonen din til Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Innstillingar for Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Tilkopla einingar",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "«+»-knapp",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Kopla til ei ny eining",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skann denne koden i Signal-appen på telefonen din",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Opna Signal på telefonen din",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Innstillingar",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Lær meir",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Einingsnamn",
@ -1371,6 +1391,10 @@
"message": "Synkroniserer kontaktar og grupper",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Kunne ikkje kopla til tenaren.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Noko gjekk gale!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Prøv igjen",
"description": ""
@ -5910,7 +5938,7 @@
"description": "Shown in the message request warning dialog. Gives more information about message requests"
},
"MessageRequestWarning__dialog__learn-even-more": {
"message": "About Message Requests",
"message": "Om meldingsførespurnader",
"description": "Shown in the message request warning dialog. Clicking this button will open a page on Signal's support site"
},
"ContactSpoofing__same-name": {
@ -6685,18 +6713,6 @@
"message": "Kva er nytt",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Personvern er mulig. Signal gjør det enkelt.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Koble til telefonen din til Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Instillinger for Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Tilkoblede enheter",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Knapp",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Koble Til En Ny Enhet",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Innstillinger",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Learn more",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Enhetsnavn",
@ -1371,6 +1391,10 @@
"message": "Synkroniserer kontaker og grupper",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Kunne ikke koble til tjeneren.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Noe gikk galt!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Try again",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ਨੇ ਆਪਣਾ ਨੰਬਰ ਨਵੇਂ ਨੰਬਰ ਨਾਲ ਬਦਲਿਆ ਹੈ ",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ਪਰਦੇਦਾਰੀ ਸੰਭਵ ਹੈ। Signal ਨੇ ਇਹ ਸੌਖੀ ਕਰ ਦਿੱਤੀ ਹੈ।",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "ਆਪਣੇ ਫ਼ੋਨ ਨੂੰ Signal Desktop ਨਾਲ ਲਿੰਕ ਕਰੋ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal ਸੈਟਿੰਗਾਂ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ਲਿੰਕ ਕੀਤੀਆਂ ਡਿਵਾਈਸਾਂ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' ਬਟਨ",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "ਨਵੀਂ ਡਿਵਾਈਸ ਨੂੰ ਲਿੰਕ ਕਰੋ",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ਸੈਟਿੰਗਾਂ",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "ਹੋਰ ਜਾਣੋ",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ਡਿਵਾਈਸ ਦਾ ਨਾਂ",
@ -1371,6 +1391,10 @@
"message": "ਸੰਪਰਕ ਅਤੇ ਗਰੁੱਪ ਸਮਕਾਲੀ ਬਣਾਏ ਜਾ ਰਹੇ ਹਨ",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "ਸਰਵਰ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਫ਼ਲ",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ਫਿਰ ਕੋਸ਼ਿਸ਼ ਕਰੋ",
"description": ""
@ -2314,7 +2342,7 @@
"description": "The 'skip' button text in the 'choose group members' left pane screen"
},
"chooseGroupMembers__next": {
"message": "ਅਗਲਾ",
"message": "ਅੱਗੇ",
"description": "The 'next' button text in the 'choose group members' left pane screen"
},
"chooseGroupMembers__maximum-group-size__title": {
@ -2784,7 +2812,7 @@
"description": "Appears on the cancel button in confirmation dialogs."
},
"MessageBody--read-more": {
"message": "Read more",
"message": "ਹੋਰ ਪੜ੍ਹੋ",
"description": "When a message is too long this is the affordance to expand the message"
},
"Message--unsupported-message": {
@ -3116,7 +3144,7 @@
"description": "Title for WhatsApp button"
},
"StickerCreator--AppStage--next": {
"message": "ਅਗਲਾ",
"message": "ਅੱਗੇ",
"description": "Default text for the next button on all stages of the sticker creator"
},
"StickerCreator--AppStage--prev": {
@ -5322,11 +5350,11 @@
"description": "Generic next label"
},
"BadgeDialog__become-a-sustainer-button": {
"message": "Become a Sustainer",
"message": "ਸਹਾਇਕ ਬਣੋ",
"description": "In the badge dialog. This button is shown under sustainer badges, taking users to some instructions"
},
"BadgeSustainerInstructions__header": {
"message": "Become a Sustainer",
"message": "ਸਹਾਇਕ ਬਣੋ",
"description": "In the instructions for becoming a sustainer. The heading."
},
"BadgeSustainerInstructions__subheader": {
@ -6685,18 +6713,6 @@
"message": "ਨਵਾਂ ਕੀ ਹੈ",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Aplikacja Desktop napotkała błąd, w trakcie odszyfrowywania.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Aplikacja Desktop napotkała błąd, w trakcie odszyfrowywania, pochodzący od użytkownika $name$, z urządzenia $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1331,29 +1331,49 @@
"message": "Dzięki Signal zachowanie prywatności jest możliwe i proste.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Połącz swój telefon z Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Ustawienia Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Połączone urządzenia",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Przycisk \"+\"",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Połącz nowe urządzenie",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Zeskanuj ten kod, używając aplikacji Signal na swoim telefonie",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Otwórz Signal na swoim telefonie",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Stuknij $settings$, a następnie $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Ustawienia",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Stuknij $plusButton$ (Android) lub $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Nie udało się załadować kodu QR. Sprawdź swoje połączenie z internetem i spróbuj ponownie. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Dowiedz się więcej",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Zobaczysz tę nazwę pod nagłówkiem \"Połączone urządzenia\" na swoim telefonie",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Mój komputer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nazwa urządzenia",
@ -1371,6 +1391,10 @@
"message": "Synchronizacja grup i kontaktów",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Uwaga: Twoja historia rozmów nie zostanie zsynchronizowana na tym urządzeniu",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Nie można połączyć się z serwerem.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Coś poszło nie tak!",
"description": ""
},
"installUnknownError": {
"message": "Wystąpił nieoczekiwany błąd. Spróbuj ponownie.",
"description": ""
},
"installTryAgain": {
"message": "Spróbuj ponownie",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Co nowego",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Teraz możesz wyszukiwać w konwersacjach w archiwum. Wyobraź sobie, że (błyskawicznie) przeszukujesz starożytne woluminy, w poszukiwaniu kolejnej wskazówki.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Jeśli kiedyś przewinąłeś konwersację w górę i wysłałeś wiadomość, mogłeś się zastanawiać, gdzie się podziała. Teraz, gdy wyślesz wiadomość, konwersacja zostanie przewinięta, abyś mógł podziwiać efekty swojej, ciężkiej pracy.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagowanie na wiadomość powinno być teraz bardziej niezawodne, ponawiając próby wysłania do 24 godzin.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Ta wersja zawiera wiele drobnych ulepszeń i poprawek błędów, zapewniających płynne działanie aplikacji Signal.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Czujesz, że w Twoim życiu potrzeba więcej pikseli na prawym panelu? Jesteś fanem awatarów i niczego więcej? Masz na zderzaku nalepkę \"Oszczędzaj przestrzeń ekranową\"? Niezależnie, czy odpowiedziałeś tak, czy nie na powyższe pytania, ta aktualizacja ma dla Ciebie możliwość zmniejszenia lewego panelu.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Aplikacja Signal Desktop jest teraz zoptymalizowana do działania z procesorem Apple M1, używanym w nowszych komputerach tej firmy. Jeśli posiadasz jedno z tych nowych urządzeń, aplikacja powinna działać bardziej płynnie. Jeśli nie, ciesz się szczęściem tych użytkowników, którzy je mają. Ogromne dzięki za Twoją, ciężką pracę, $dennis$!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Prowadzisz długie rozmowy? Twój system powinien pozostać czujny przez cały czas, zamiast przechodzić w tryb uśpienia, gdy jesteś w środku ważnej dyskusji.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Ta wersja zawiera również wiele drobnych ulepszeń i poprawek błędów, zapewniających płynne działanie aplikacji Signal, włącznie z kilkoma poprawkami połączeń.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Nowy rok i nowy ekran konfiguracji. Przeprojektowaliśmy ekrany początkowej konfiguracji, w sam raz na początek roku 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "ډیسکټاپ له یوې ډیکرپشن شوې تیروتنې سره رن شوی",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ خپله شمېره نوې شمېرې ته بدله کړې ده.",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "محرمیت ساتل ممکن ده. Signal هغه اسانه کړی ده.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "خپل ټلیفون د ډیسکټاپ له Signal سره لینک کړئ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "د Signal تنظیمات",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "لینک شوې وسیلې",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "د '+' بټن",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "نوې وسیله لینک کړئ",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "دغه کوډ د خپل ټلیفون د Signal په اپلیکیشن کې سکن کړئ",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "تنظیمات",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "لا زیات زده کړئ ",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "د وسیلې نوم",
@ -1371,6 +1391,10 @@
"message": "د مخاطبینو او ګروپونو همآهنګ کول",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "له سرور سره نښلیدل تر سره نشو.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "کوم شی سم کار نه ورکوي!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "بیا هڅه وکړئ",
"description": ""
@ -6685,18 +6713,6 @@
"message": "څه شی نوي دي",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "دغه نسخه یو شمېر واړه کارونه او د بوګ جوړونې لري تر څو Signal په روانه توګه سره کار ورکړي.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Signal encontrou um erro ao descriptografar uma mensagem.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal encontrou um erro ao descriptografar uma mensagem de $name$, aparelho $deviceId$.",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ alterou seu número de telefone para um novo número",
"message": "$sender$ alterou o número de telefone",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privacidade é possível. Signal faz com que ela seja fácil.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Vincule seu telefone ao Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Configurações do Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Aparelhos vinculados",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Botão '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Vincular novo aparelho",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Escaneie este código no aplicativo Signal do seu telefone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Abra o Signal no seu telefone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Toque em $settings$ e, em seguida, toque em $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Configurações",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Toque em $plusButton$ (Android) ou em $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Não foi possível carregar o código QR. Verifique a sua internet e tente novamente. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Saiba mais",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Você verá este nome em \"Aparelhos vinculados\", no seu telefone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Meu computador",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nome do aparelho",
@ -1371,6 +1391,10 @@
"message": "Sincronizando contatos e grupos",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Nota: seu histórico das conversas não será transferido para esse aparelho",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Falha de conexão ao servidor.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Algo deu errado!",
"description": ""
},
"installUnknownError": {
"message": "Ocorreu um erro inesperado. Por favor, tente novamente.",
"description": ""
},
"installTryAgain": {
"message": "Tentar novamente",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Novidades",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "A partir de agora, você pode pesquisar mensagens em conversas arquivadas. Imagine-se rememorando livros antigos, procurando neles a próxima pista para o presente.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Você já ficou confuso depois de enviar sua mensagem, sem saber onde ela está dentro da conversa? A partir de agora, sempre que você enviar sua mensagem, nós alegremente guiaremos o seu olhar para ela, de modo que você possa encontrá-la.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Se a conexão de rede estiver fraca, não tem problema. Ao reagir a uma mensagem, tentaremos enviar essa reação dentro de 24 horas, se não for possível no presente.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Essa versão contém pequenos retoques e consertos no Signal para ele continuar funcionando confortavelmente.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "A partir de agora, a largura da lista de conversas se ajusta de acordo com o tamanho da janela, para facilitar a leitura de uma conversa.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "A partir de agora, Signal Desktop está otimizado para o chip M1, que é usado em computadores mais novos da Apple. Se você fizer uso de um desses computadores, o aplicativo do Signal funcionará confortavelmente, como ocorre em outros sistemas. Se este não for o chip do seu computador, também trouxemos mais potência para você. Um grande obrigado ao $dennis$ por seu trabalho árduo aqui!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Você tem honrado suas amizades com ligações prolongadas? A partir de agora, pedimos ao sistema do computador para ficar acordado o tempo todo, em vez de se suspender ou dormir no meio da sua discussão importante.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Essa versão contém pequenos retoques e consertos no Signal para ele continuar funcionando confortavelmente. Melhoramos especialmente as chamadas de voz e de vídeo.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Redesenhamos as telas introdutórias, bem a tempo para o ano de 2022. Ano novo, nova tela de acesso.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "O desktop apresentou um erro de desencriptação.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "O Signal encontrou um erro ao desencriptar uma mensagem de $name$, dispositivo $deviceId$.",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ alterou o seu número de telemóvel para um número novo",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "A privacidade é possível. O Signal torna-a fácil.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Associar o seu telefone ao Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Definições do Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Dispositivos associados",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Botão '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Associar um novo dispositivo",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Digitalize este código na aplicação do Signal no seu telemóvel",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Abra o Signal no seu telemóvel",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Definições",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Saber mais",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Nome do dispositivo",
@ -1371,6 +1391,10 @@
"message": "A sincronizar contactos e grupos",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Falha na ligação ao servidor",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Ocorreu algo de errado!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Tentar novamente",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Novidades",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "A partir de agora, você pode pesquisar mensagens em conversas arquivadas. Imagine-se pesquisando através de livros antigos, procurando neles a próxima pista para o presente.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Você já ficou confuso depois de enviar a sua mensagem, sem saber onde ela está dentro da conversa? A partir de agora, sempre que você enviar a sua mensagem, nós alegremente guiaremos o seu olhar para ela, de modo a que você a possa encontrar.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagir a uma menagem? Agora deverá ser mais fiável, indo tentando até 24 horas",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Você já sentiu que precisa de mais pixels no painel direito na sua vida? Você é fã de avatares, mas apenas de avatares e nada mais? Você tem um autocolante \"Poupe o espaço do ecrã\" no seu carro? Se respondeu sim ou não a alguma dessas perguntas, então esta atualização tem um painel esquerdo recolhível para si.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Tem honrado as suas amizades com chamadas prolongadas? A partir de agora, pedimos ao sistema do computador para ficar acordado o tempo todo, em vez de se suspender ou hibernar no meio da sua conversa importante.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Essa versão contém pequenos retoques e correções no Signal para ele continuar a funcionar confortavelmente. Melhoramos especialmente as chamadas de voz e de vídeo.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "В Signal Desktop произошла ошибка расшифровки.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "В Signal Desktop произошла ошибка расшифровки сообщения от $name$, устройство $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1331,29 +1331,49 @@
"message": "Приватное общение возможно. Signal помогает его упростить.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Привяжите свой телефон к Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Настройки Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Привязанные устройства",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Кнопка «+»",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Привязать новое устройство",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Просканируйте этот код в приложении Signal на своем телефоне",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Откройте Signal на своем телефоне",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Нажмите на $settings$, затем на $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Настройки",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Нажмите на $plusButton$ (Android) или $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Не удалось загрузить QR-код. Проверьте своё подключение к интернету и попробуйте ещё раз. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Узнать больше",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Вы увидите это имя в разделе «Привязанные устройства» на своём телефоне",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Мой компьютер",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Имя устройства",
@ -1371,6 +1391,10 @@
"message": "Синхронизация контактов и групп",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Обратите внимание: ваша история сообщений не будет синхронизирована на это устройство",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Не удалось подключиться к серверу.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Что-то пошло не так!",
"description": ""
},
"installUnknownError": {
"message": "Произошла неожиданная ошибка. Пожалуйста, попробуйте ещё раз.",
"description": ""
},
"installTryAgain": {
"message": "Попробовать еще раз",
"description": ""
@ -5322,11 +5350,11 @@
"description": "Generic next label"
},
"BadgeDialog__become-a-sustainer-button": {
"message": "Стать поддерживающим",
"message": "Стать Поддерживающим",
"description": "In the badge dialog. This button is shown under sustainer badges, taking users to some instructions"
},
"BadgeSustainerInstructions__header": {
"message": "Стать поддерживающим",
"message": "Стать Поддерживающим",
"description": "In the instructions for becoming a sustainer. The heading."
},
"BadgeSustainerInstructions__subheader": {
@ -5342,7 +5370,7 @@
"description": "In the instructions for becoming a sustainer. Second instruction."
},
"BadgeSustainerInstructions__instructions__3": {
"message": "Нажмите на «Стать поддерживающим» и подпишитесь",
"message": "Нажмите на «Стать Поддерживающим» и подпишитесь",
"description": "In the instructions for becoming a sustainer. Third instruction."
},
"CompositionArea--expand": {
@ -6685,18 +6713,6 @@
"message": "Что нового",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Теперь вы можете искать в архивированных разговорах. Представьте себя (быстро) просматривающим древние тома в поисках следующей подсказки.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Если вы когда либо прокрутили вверх и отправили сообщение, то вы могли задуматься — где же ваше сообщение? Теперь после отправки сообщения разговор будет прокручен, чтобы сообщение было видно и вы смогли полюбоваться своей тяжелой работой.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Реагируете на сообщение? Теперь это действие должно выполняться более надежно — при необходимости оно будет повторяться в течении 24 часов.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Эта версия содержит несколько небольших изменений и исправлений ошибок.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Теперь вы можете изменять размер левой панели.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop теперь оптимизирован для процессора Apple M1, который используется в новых компьютерах Apple. Если вы используете одно из таких новоиспечённых устройств, приложение должно работать намного оперативнее. Если нет, тепло поприветствуйте тех пользователей, которые используют такой компьютер. Огромное спасибо $dennis$ за его усердную работу в этой области!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Находитесь в долгом звонке? Ваша система теперь должна бодрствовать всё время, вместо того чтобы засыпать, когда вы в середине важного обсуждения.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Также эта версия содержит несколько небольших изменений и исправлений, чтобы Signal продолжал работать плавно, включая несколько улучшений, связанных со звонками.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Новый год, новый экран начальной настройки. Мы обновили экраны начальной настройки как раз вовремя для 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "V programe Signal Desktop sa vyskytla chyba pri dešifrovaní.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Signal Desktop narazil na chybu dešifrovania z $name$, zariadenie $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ zmenil ich počet na nové číslo",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Súkromie je možné. Signal ho uľahčuje.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Pripojte svoj mobilný telefón k Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Nastavenia Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Pripojené zariadenia",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Tlačidlo \"+\"",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Pripojiť Nové Zariadenie",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Naskenujte tento kód v aplikácii Signal vo svojom telefóne",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Otvorte Signal na svojom telefóne",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Nastavenia",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Dozvedieť sa viac",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Názov zariadenia",
@ -1371,6 +1391,10 @@
"message": "Synchronizácia kontaktov a skupín",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Pripojenie k serveru zlyhalo.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Niekde sa stala chyba!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Skúsiť znova",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Čo je nové",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Teraz môžete vyhľadávať v archivovaných konverzáciách. Predstavte si, že hľadáte (rýchlo) staroveké zväzky a hľadáte ďalšiu stopu.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Ak ste sa niekedy posunuli nahor a odoslali správu, možno by vás zaujímalo, kde bola vaša správa! Teraz, kedykoľvek odošlete správu, bude rolovaná do zobrazenia, aby ste mohli obdivovať vašu tvrdú prácu.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagujete na správu? Teraz by mala byť spoľahlivejšia a mala by sa opakovať až 24 hodín",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Mali ste niekedy pocit, že vo svojom živote potrebujete viac pixelov na správnom paneli? Ste fanúšikom avatarov, ale iba avatarov a ničoho iného? Máte na svojom aute nálepku na nárazníku „Šetriť úžitkovou plochou“? Ak ste na niektorú z týchto otázok odpovedali áno alebo nie, táto aktualizácia má pre vás skladací ľavý panel.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop teraz natívne podporuje čip Apple M1, ktorý sa používa v ich novších počítačoch. Ak používate jedno z týchto nových zariadení, aplikácia by mala byť oveľa svižnejšia. Ak nie ste jeho majiteľom, srdečne privítajte používateľov ktorí sú. Veľká vďaka $dennis$ za jeho tvrdú prácu tu!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Pri dlhom hovore? Váš systém by mal zostať celý čas bdelý, namiesto toho, aby ste zaspávali, keď ste uprostred dôležitej diskusie.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Existuje tiež množstvo malých vylepšení a opráv chýb, aby Signal fungoval hladko, vrátane niekoľkých vylepšení súvisiacich s volaním.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Prišlo je do težav z dešifriranjem.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Prišlo je do napake pri dekripciji z uporabnikom/co $name$, naprava $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "Uporabnik/ca $sender$ ima novo številko",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Zasebnost obstaja. Signal jo naredi preprosto.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Povežite svoj telefon z aplikacijo Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Nastavitve Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Povezane naprave",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Gumb '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Poveži novo napravo",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skenirajte to kodo v aplikaciji Signal na vašem telefonu",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Odprite Signal na vašem telefonu",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Nastavitve",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Izvedite več",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Ime naprave",
@ -1371,6 +1391,10 @@
"message": "Usklajujem stike in skupine",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Ne morem se povezati s strežnikom.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Nekaj je šlo narobe!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Poskusi znova",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Kaj je novega",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktopi hasi një gabim shfshehtëzimi.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktopi ndeshi nëj gabim shfshehtëzimi prej $name$, pajisja $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ ndryshoi numrin e vet me një numër të ri",
"message": "$sender$ ndryshoi numrin e vet të telefonit",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Privatësia është e mundur. Signal-i e bën të lehtë.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Lidheni telefonin tuaj me Signal-in për Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Rregullime Signal-i",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Pajisje të Lidhura",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Butoni '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Lidhini Pajisje të Re",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"message": "Skanojeni këtë kod me aplikacionin Signal në telefonin tuaj",
"description": "Alt text for the QR code on the device link screen"
"Install__scan-this-code": {
"message": "Skanojeni këtë kod te aplikacioni Signal në telefonin tuaj",
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Hapni Signal-in në telefonin tuaj",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Prekni mbi $settings$, mandej prekni $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Rregullime",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Prekni $plusButton$ (Android) ose $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "Kodi QR su ngarkua dot. Kontrolloni lidhjen tuaj në internet dhe riprovoni. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Mësoni më tepër",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Këtë emër do ta shihni nën “Pajisje të Lidhura”, te telefoni juaj",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Kompjuteri Im",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Emër pajisjeje",
@ -1371,6 +1391,10 @@
"message": "Po njëkohësohen kontakte dhe grupe",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Shënim: Historiku i fjalosjes tuaj sdo të njëkohësohet në këtë pajisje",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Dështoi lidhja me shërbyesin.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Diç shkoi ters!",
"description": ""
},
"installUnknownError": {
"message": "Ndodhi një gabim i papritur. Ju lutemi, riprovoni.",
"description": ""
},
"installTryAgain": {
"message": "Riprovo",
"description": ""
@ -6685,18 +6713,6 @@
"message": ka të Re",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Tanimë mund të kërkoni në biseda të arkivuara. Përfytyroni veten duke kërkuar (shpejt e shpejt) përmes vëllimesh të vjetra, për idenë pasuese.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Nëse rrëshqitët sipër dhe dërguat një mesazh, mund të vrisni mendjen se ku qe mesazhi juaj! Tanimë, kurdo që dërgoni një mesazh, do të rrëshqitet për tu nxjerrë para syve, që të admironi punën tuaj.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Po reagoni te një mesazh? Kjo tani duhet të jetë më e qëndrueshme, se lejon riprovim për deri 24 orë",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Keni ndjerë ndonjëherë se ju duhen më tepër piksela në kuadratin e djathtë, gjatë jetës tuaj? Jeni tifoz avatarësh, por vetëm avatarësh dhe asgjëje tjetër? Keni një makinën tuaj një ngjitës “Save the screen real estate”? Nëse u përgjigjët po ose jo për cilëndo nga këto pyetje, atëherë ky përditësim sjell për ju një kuadrat majtas që mund të paloset.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal-i për Desktop tani është i optimizuar për procesorin M1 të Apple-it që përdoret në kompjuterat e tyre më të rinj. Nëse keni një nga këto pajisje të reja, aplikacioni do të jetë shumë më i zhdërvjellët. Nëse jo, urojuni mirëseardhjen atyre që i kanë. Falënderime pa masë për $dennis$ për punën e tij të palodhur për këtë aspekt!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Telefonatë e gjatë? Sistemi duhet të jetë zgjuar për gjithë kohën, në vend se të dremitë teksa jeni në mes të një diskutimi të rëndësishëm.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Ka gjithashtu një numër përimtimesh të vogla dhe ndreqje të metash, për ta mbajtur Signal-in të xhirojë rrjedhshëm, përfshi disa përmirësime të lidhura me thirrjet.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Vit i ri, skenë e re ujdisjeje fillestare. I kemi rihartuar skenat e ujdisjes fillestare tamam në kohë për 2022-shin.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": есктоп је налетео на грешку у дешифрирању.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": огодила се грешка дешифровања на Desktop од $name$, уређај $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ променио свој број на нови број",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Приватност је достижна. Signal вам то олакшава.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Повежите телефон са Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Поставке Signal-а",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Повезани уређаји",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Дугме",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Повежи нови уређај",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Скенирајте овај кôд у Signal на Вашем телефону",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Отворите Signal на вашем телефону",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Подешавања",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Сазнај више",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Име уређаја",
@ -1371,6 +1391,10 @@
"message": "Усаглашавам контакте и групе",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Неуспешно повезивање са сервером.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Дошло је до грешке!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Покушај поново",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Шта ново",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop stötte på ett dekrypteringsfel.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop stötte på ett dekrypteringsfel från $name$, enhet $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ bytte nummer till ett nytt nummer",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Integritet är möjligt. Signal gör det lätt.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Länka din telefon till Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal-inställningar",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Länkade enheter",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "\"+\"-knappen",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Länka ny enhet",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Skanna den här koden i Signal-appen på din telefon",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Öppna Signal på din telefon",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Inställningar",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Läs mer",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Enhetsnamn",
@ -1371,6 +1391,10 @@
"message": "Synkroniserar kontakter och grupper",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Det gick inte att ansluta till servern.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Något gick fel!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Försök igen",
"description": ""
@ -5342,7 +5370,7 @@
"description": "In the instructions for becoming a sustainer. Second instruction."
},
"BadgeSustainerInstructions__instructions__3": {
"message": "Tryck på \"Bli en underhållare\" och prenumerera",
"message": "Tryck på \"Bli en underhållare\" och abonnera",
"description": "In the instructions for becoming a sustainer. Third instruction."
},
"CompositionArea--expand": {
@ -6638,7 +6666,7 @@
"description": "Describes what attribute the color picker will change on the text"
},
"MediaEditor__draw--pen": {
"message": "Pen",
"message": "Penna",
"description": "Type of brush to free draw"
},
"MediaEditor__draw--highlighter": {
@ -6685,18 +6713,6 @@
"message": "Vad är nytt",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Du kan nu söka i arkiverade konversationer. Föreställ dig att du letar (snabbt) genom uråldriga böcker och letar efter nästa ledtråd.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Om du någonsin har bläddrat upp och skickat ett meddelande kanske du undrar var ditt meddelande var! Nu när du skickar ett meddelande kommer det att bläddras fram så att du kan beundra ditt hårda arbete.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reagerar du på ett meddelande? Det borde nu vara mer tillförlitligt och försöker igen i upp till 24 timmar",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop stöder nu Apples M1-chip som används i deras nyare datorer. Om du använder en av dessa nymodiga enheter borde appen vara mycket snabbare. Om inte, hälsa användarna som gör det varmt välkomna. Stort tack till $dennis$ för hans hårda arbete här!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "I ett långt samtal? Ditt system bör vara vaken hela tiden, istället för att somna medan du är mitt i en viktig diskussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Det finns också ett antal små justeringar och felrättningar för att hålla Signal igång smidigt, inklusive flera samtalsrelaterade förbättringar.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ amebadilisha nambari yake na kuanza kutumia nambari mpya",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Faragha inawezekana. Signal inairahisisha.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Unganisha simu yako na Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Mipangilio ya Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Vifaa Vilivyounganishwa",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "Kitufe cha Nyongeza",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Unganisha Kifaa Kipya",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Mipangilio",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Jifunze zaidi",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Jina la kifaa",
@ -1371,6 +1391,10 @@
"message": "Unganisha wawasiliani na vikundi",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Imeshindwa kuunganisha na seva.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Kuna kitu kimeenda kombo!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Jaribu tena",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ அவர்களின் எண்ணை புதிய எண்ணாக மாற்றினார்",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "தனியுரிமை சாத்தியம். Signal அதை எளிதாக்குகிறது.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "உங்கள் தொலைபேசியை Signal Desktop ப்பில் இணைக்கவும்",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal அமைப்புகள்",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "இணைக்கப்பட்ட சாதனங்கள்",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' பொத்தான்",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "புதிய சாதனத்தை இணைக்கவும்",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "அமைப்புகள்",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "மேலும் அறிக",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "சாதனத்தின் பெயர்",
@ -1371,6 +1391,10 @@
"message": "தொடர்புகள் மற்றும் குழுக்களை ஒத்திசைத்தல்",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "சேவகையத்திடம் தொடர்பு கொள்ள முடியவில்லை.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "ஏதோ தவறு நடைபெற்றிருக்கிறது!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "மீண்டும் முயற்சிக்கவும்",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "గోప్యత సాధ్యమే. Signal సులభం చేస్తుంది.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "మీ ఫోన్‌ను Signal Desktop లింక్ చేయండి",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal అమరికలు",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "పరికరాలు అనుసంధానించు ",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' బటన్",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "కొత్త పరికరాన్ని అనుసంధానించు",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "అమరికలు",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "ఇంకా నేర్చుకో",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "పరికరం యొక్క పేరు ",
@ -1371,6 +1391,10 @@
"message": "పరిచయాలు మరియు సమూహాలను సమకాలీకరిస్తోంది",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "సర్వర్ తో అనుసంధాన ప్రయత్నం విఫలమైనది.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "ఏదో తప్పు జరిగినది.",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "మళ్ళీ ప్రయత్నించండి",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ เปลี่ยนหมายเลขของตนเองเป็นหมายเลขใหม่",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "ความเป็นส่วนตัวเป็นไปได้ Signal ทำให้มันง่าย",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "เชื่อมโยงโทรศัพท์ของคุณกับ Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "การตั้งค่า Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "อุปกรณ์ที่เชื่อมโยง",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "ปุ่ม '+'",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "เชื่อมโยงอุปกรณ์ใหม่",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "การตั้งค่า",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "เรียนรู้เพิ่มเติม",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ชื่ออุปกรณ์",
@ -1371,6 +1391,10 @@
"message": "กำลังปรับประสานรายชื่อผู้ติดต่อและกลุ่ม",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "เชื่อมต่อกับเซิร์ฟเวอร์ล้มเหลว",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "เกิดข้อผิดพลาดบางอย่าง",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "ลองอีกครั้ง",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop deşifreleme hatası ile karşılaştı.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ telefon numrasını yeni bir numarayla değiştirdi",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Gizlilik mümkün. Signal ise bunu kolaylaştırır.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Signal Desktop'a telefonunuzu bağlayın",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal Ayarları",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Bağlı cihazlar",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Düğmesi",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Yeni Cihaz Bağla",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Bu kodu telefonunuzdaki Signal uygulamasıyla tarayın",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Signal'ı telefonunda aç",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Ayarlar",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Dahasını öğrenin",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Cihaz adı",
@ -1371,6 +1391,10 @@
"message": "Kişiler ve gruplar senkronize ediliyor",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Sunucuya bağlanılamadı.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Bir şeyler ters gitti!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "Tekrar dene",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Neler Yeni",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Artık arşivlenmiş konuşmalarda arama yapabilirsiniz. Bir sonraki ipucunu bulmak için eski ciltleri (hızlıca) aradığınızı hayal edin.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Yukarı kaydırıp bir mesaj gönderdiyseniz, mesajınızın nerede olduğunu merak etmişsinizdir! Şimdi, ne zaman bir mesaj gönderirseniz, sıkı çalışmanıza hayran kalmanız için ekrana kaydırılır.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Mesaja tepki mi veriyorsunuz? Artık daha stabil olmalı, 24 saate kadar otomatik tekrar denenecek",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"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 v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Hayatında hiç sağ bölmede daha fazla piksele ihtiyacın var gibi hissettin mi? Avatarları, ama sadece avatarları sever misin? Arabanda \"Ekran alanından tasarruf et\" yazılı tampon etiketi mi var? Bu sorulardan herhangi birine evet veya hayır dediysen, bu güncelleme sana açılır kapanır sol bölme sunuyor.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Signal شەخسىيەت قوغداشنى تېخىمۇ ئاسانلاشتۇردى.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "تېلېفونىڭىزنى Signal Desktop قا باغلاڭ",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal تەڭشەكلەر",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "باغلانغان ئۈسكۈنىلەر",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "«+» توپچە",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "يېڭى ئۈسكۈنە باغلا",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "تەڭشەكلەر",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "كۆپرەك ئۆگىنىش",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ئۈسكۈنە ئىسمى",
@ -1371,6 +1391,10 @@
"message": "ئالاقەداش ۋە ئۇچۇرلارنى قەدەمداشلاۋاتىدۇ",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "مۇلازىمېتىرغا باغلىنالمىدى.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "خاتالىق كۆرۈلدى!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "قايتا سىنا",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "На робочому столі сталася помилка дешифрування.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "У застосунку виникла помилка шифрування з $name$, пристрій $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ змінив номер телефону на новий",
"message": "У $sender$ змінився номер телефону",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Приватність - це можливо. Signal робить її досягнення простим.",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "Прив'язати ваш телефон до Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Параметри Signal",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "Під’єднані пристрої",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' Кнопка",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "Під’єднати новий пристрій",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Проскануйте цей код в застосунку Signal на своєму телефоні",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Відкрийте Signal на своєму телефоні",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Клацніть на $settings$, потім на $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "Налаштування",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Клацніть на $plusButton$ (Android) чи $linkNewDevice$(iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "QR-код не вдалось завантажити. Перевірте з'єднання з інтернет та спробуйте пізніше. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "Дізнатись більше",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "Ви побачите це ім'я у розділі «Прив'язані пристрої» на своєму телефоні",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "Мій комп'ютер",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "Назва пристрою",
@ -1371,6 +1391,10 @@
"message": "Синхронізування контактів та груп",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Примітка: Історія чату не синхронізується з цим пристроєм",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "Не вдалося підключитись до сервера.",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "Щось пішло не так!",
"description": ""
},
"installUnknownError": {
"message": "Сталася непередбачувана помилка. Спробуйте пізніше, будь ласка.",
"description": ""
},
"installTryAgain": {
"message": "Спробувати знову",
"description": ""
@ -6685,18 +6713,6 @@
"message": "Що нового",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "Тепер ви можете шукати в заархівованих бесідах. Уявіть, що ви проглядаєте (швидко) стародавні фоліанти, шукаючи наступну підказку.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "Якщо ви коли-небудь прокручували вгору й надсилали повідомлення, ви знаєте, що можете не знайти його! Тепер, коли ви надсилаєте повідомлення, воно прокручуватиметься, щоб ви могли захоплюватися своєю працею.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Реагуєте на повідомлення? Тепер це має бути більш надійним, можна повторювати спробу протягом 24 годин",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "Ця версія містить ряд невеликих налаштувань і виправлень помилок, щоб забезпечити безперебійну роботу Signal.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ви коли-небудь відчували, що вам потрібно більше пікселів на правій панелі у вашому житті? Ви любите аватари, але тільки аватари і нічого іншого? У вас є наклейка на бампер \"Зберегти нерухомість екрана\" на вашому автомобілі? Якщо ви відповіли так чи ні на будь-яке з цих запитань, це оновлення має для вас ліву панель, що згортається.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop відтепер оптимізовано для чипів Apple M1, що використовуються у їхніх нових комп'ютерах. Якщо ви один з володільців цих новітніх пристроїв, застосунок працюватиме ще хутчіше. Якщо ні — тепло зустрічаймо тих, хто вже так. Величезна подяка $dennis$ за його важку працю над цим!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "Знаходитесь у тривалому виклику? Система залишатиметься пробудженою увесь час, та не засне посередині важливого обговорення.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "Також є певна кількість маленьких доопрацювань та виправлень помилок, зокрема декілька покращень, пов'язаних з викликами, що дозволить Signal працювати плавніше.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "Новий Рік — нове вікно початкового налаштування. Ми вчасно оновили вигляд вікна початкового налаштування до 2022 року.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "نجی معلومات کی حفاظت ممکن ہے۔ Signal اسے آسان بنا دیتا ہے۔",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "اپنے فون کو Signal Desktop کے ساتھ منسلک کریں",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal ترتیبات",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "ڈیوائس منسلک ہو چکی",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "'+' بٹن",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "نئی ڈیوائس منسلک کریں",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "ترتیبات",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "مزید پڑھیں",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "ڈیوائس کا نام",
@ -1371,6 +1391,10 @@
"message": "گروپس اور رابطے ہم آہنگ ہو رہے ہیں ",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "سرور کے ساتھ منسلک ہونے میں ناکام۔",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "کچھ غلط ہو گیا!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "دوبارہ کوشش کریں",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "Desktop ran into a decryption error.",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "Desktop ran into a decryption error from $name$, device $deviceId$",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ changed their number to a new number",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "Signal 让隐私保护触手可及。",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "关联您的手机到 Signal Desktop",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal 设置",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "已关联的设备",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "“+” 按键",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "关联新设备",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "Scan this code in the Signal app on your phone",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "Open Signal on your phone",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "设置",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "了解更多",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "设备名称",
@ -1371,6 +1391,10 @@
"message": "正在同步联系人和群组",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "连接服务器失败",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "出错了!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "重试",
"description": ""
@ -6685,18 +6713,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "You can now search in archived conversations. Imagine yourself searching (quickly) through ancient tomes, looking for the next clue.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "If you've ever scrolled up and sent a message, you might wonder where your message was! Now, whenever you send a message, it'll be scrolled into view for you to admire your hard work.",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "Reacting to a message? It should now be more reliable, retrying for up to 24 hours",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "Ever feel like you need more pixels on the right pane in your life? Are you a fan of avatars, but only avatars and nothing else? Do you have a \"Save the screen real estate\" bumper sticker on your car? If you answered yes or no to any of those questions, then this update has got some collapsible left pane for you.",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal Desktop is now optimized for Apple's M1 chip which is used in their newer computers. If you're on one of those new-fangled devices, the app should be much snappier. If you're not, give a warm welcome to the users that are. Huge thanks to $dennis$ for his hard work here!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "On a long call? Your system should stay awake the whole time, instead of falling asleep while you're in the middle of an important discussion.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "There are also a number of small tweaks and bug fixes to keep Signal running smoothly, including several calling-related improvements.",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -648,8 +648,8 @@
}
},
"decryptionErrorToast": {
"message": "電腦遇到解密錯誤",
"description": "An error popup when we haven't added an error for decryption error.",
"message": "電腦遇到來自$name$,裝置 $deviceId$的解密錯誤",
"description": "An error popup when we haven't added an in-timeline error for decryption error, only for beta/internal users.",
"placeholders": {
"name": {
"content": "$1",
@ -1282,7 +1282,7 @@
}
},
"ChangeNumber--notification": {
"message": "$sender$ 將他們的號碼變更為新號碼",
"message": "$sender$ changed their phone number",
"description": "Shown in timeline when a member of a conversation changes their phone number",
"placeholders": {
"sender": {
@ -1331,29 +1331,49 @@
"message": "隱私是有可能的。Signal 讓隱私更簡單。",
"description": "Tagline displayed under 'installWelcome' string on the install page"
},
"linkYourPhone": {
"message": "將您的手機連結至 Signal 桌面版",
"description": "Shown on the front page when the application first starts, above the QR code"
},
"signalSettings": {
"message": "Signal 設定",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"linkedDevices": {
"message": "已連結的裝置",
"description": "Used in the guidance to help people find the 'link new device' area of their Signal mobile app"
},
"plusButton": {
"message": "「+」按鈕",
"description": "The button used in Signal Android to add a new linked device"
},
"linkNewDevice": {
"message": "連結新裝置",
"description": "The menu option shown in Signal iOS to add a new linked device"
},
"LinkScreen__scan-this-code": {
"Install__scan-this-code": {
"message": "在手機上的 Signal 應用程式中掃描此代碼",
"description": "Alt text for the QR code on the device link screen"
"description": "Title of the device link screen. Also used as alt text for the QR code on the device link screen"
},
"Install__instructions__1": {
"message": "在手機上開啟 Signal",
"description": "Instructions on the device link screen"
},
"Install__instructions__2": {
"message": "Tap into $settings$, then tap $linkedDevices$",
"description": "Instructions on the device link screen"
},
"Install__instructions__2__settings": {
"message": "設定",
"description": "Part of the 2nd instruction on the device link screen"
},
"Install__instructions__3": {
"message": "Tap $plusButton$ (Android) or $linkNewDevice$ (iPhone)",
"description": "Instructions on the device link screen"
},
"Install__qr-failed": {
"message": "The QR code couldn't load. Check your internet and try again. $learnMore$",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__qr-failed__learn-more": {
"message": "了解更多",
"description": "Shown on the install screen if the QR code fails to load"
},
"Install__choose-device-name__description": {
"message": "You'll see this name under \"Linked Devices\" on your phone",
"description": "The subheader shown on the 'choose device name' screen in the device linking process"
},
"Install__choose-device-name__placeholder": {
"message": "My Computer",
"description": "The placeholder for the 'choose device name' input"
},
"Preferences--device-name": {
"message": "裝置名稱",
@ -1371,6 +1391,10 @@
"message": "正在同步聯絡人與群組",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"initialSync__subtitle": {
"message": "Note: Your chat history will not be synced to this device",
"description": "Shown during initial link while contacts and groups are being pulled from mobile device"
},
"installConnectionFailed": {
"message": "無法連線到伺服器。",
"description": "Displayed when we can't connect to the server."
@ -1387,6 +1411,10 @@
"message": "發生錯誤!",
"description": ""
},
"installUnknownError": {
"message": "An unexpected error occurred. Please try again.",
"description": ""
},
"installTryAgain": {
"message": "再試一次",
"description": ""
@ -6685,18 +6713,6 @@
"message": "有甚麼新的",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.24--1": {
"message": "你現在可以在存檔的對話中搜尋。想像一下自己(快速地)搜尋古代書籍,尋找下一條線索。",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--2": {
"message": "如果你曾經向上捲動並傳送過訊息,你可能想知道你的訊息在哪裡! 現在,每當你傳送訊息時,它都會捲動到你的眼前,讓你欣賞自己辛勤工作的成果。",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.24--3": {
"message": "要對訊息作出回應嗎? 現在應該更可靠了,最多可以重試 24 小時",
"description": "Release notes for v5.24"
},
"WhatsNew__v5.25--1": {
"message": "此版本包含許多小調整和錯誤修復,以維持 Signal 穩定運作。",
"description": "Release notes for v5.25"
@ -6712,5 +6728,27 @@
"WhatsNew__v5.26--2": {
"message": "是否曾經覺得你的生活中需要在右側窗格中新增更多像素? 你是頭像的粉絲,但只有頭像而沒有別的嗎? 你的汽車上是否貼有“節省螢幕使用面積”的保險槓貼紙? 如果你對這些問題中的任何一個回答是或否,那麼此更新為你提供了一些可收放的左邊窗格。",
"description": "Release notes for v5.26"
},
"WhatsNew__macos-m1": {
"message": "Signal 電腦版現在原生支持 Apple 的 M1 晶片該晶片用於其較新的Mac電腦。 如果你使用的是這些新裝置之一,那麼該應用程式應該會更加快速。 如果你不是熱烈歡迎那些使用M1晶片 Mac電腦的使用者。 非常感謝 $dennis$ 在這裡的辛苦工作!",
"description": "Release note for the macOS M1 release",
"placeholders": {
"dennis": {
"content": "$1",
"example": "<a>Dennis Ameling</a>"
}
}
},
"WhatsNew__v5.27--1": {
"message": "長時間通話? 你的系統應該始終保持開啟,而不是在你進行重要討論時進入睡眠。",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.27--2": {
"message": "還有一些小的調整和錯誤修復,以維持 Signal 穩定執行,包括一些與通話相關的改進。",
"description": "Release notes for v5.27"
},
"WhatsNew__v5.28--1": {
"message": "New year, new initial setup screen. We've redesigned the initial setup screens just in time for 2022.",
"description": "Release notes for v5.28"
}
}

View File

@ -12,9 +12,9 @@ import normalizePath from 'normalize-path';
import fastGlob from 'fast-glob';
import PQueue from 'p-queue';
import { get, pick, isNumber, isBoolean, some, debounce, noop } from 'lodash';
import type { BrowserWindow } from 'electron';
import {
app,
BrowserWindow,
clipboard,
dialog,
ipcMain as ipc,
@ -72,6 +72,7 @@ import type { MenuOptionsType } from './menu';
import { createTemplate } from './menu';
import { installFileHandler, installWebHandler } from './protocol_filter';
import * as OS from '../ts/OS';
import { createBrowserWindow } from '../ts/util/createBrowserWindow';
import { isProduction } from '../ts/util/version';
import {
isSgnlHref,
@ -324,7 +325,6 @@ function prepareUrl(
appStartInitialSpellcheckSetting,
userDataPath: app.getPath('userData'),
downloadsPath: app.getPath('downloads'),
isLegacyOS: OS.isLegacy(),
homePath: app.getPath('home'),
...moreKeys,
}).href;
@ -530,7 +530,7 @@ async function createWindow() {
);
// Create the browser window.
mainWindow = new BrowserWindow(windowOptions);
mainWindow = createBrowserWindow(windowOptions);
if (settingsChannel) {
settingsChannel.setMainWindow(mainWindow);
}
@ -968,7 +968,7 @@ function showScreenShareWindow(sourceName: string) {
y: 24,
};
screenShareWindow = new BrowserWindow(options);
screenShareWindow = createBrowserWindow(options);
handleCommonWindowEvents(screenShareWindow);
@ -1014,7 +1014,7 @@ function showAbout() {
},
};
aboutWindow = new BrowserWindow(options);
aboutWindow = createBrowserWindow(options);
handleCommonWindowEvents(aboutWindow);
@ -1057,7 +1057,7 @@ function showSettingsWindow() {
},
};
settingsWindow = new BrowserWindow(options);
settingsWindow = createBrowserWindow(options);
handleCommonWindowEvents(settingsWindow);
@ -1128,7 +1128,7 @@ async function showStickerCreator() {
},
};
stickerCreatorWindow = new BrowserWindow(options);
stickerCreatorWindow = createBrowserWindow(options);
setupSpellChecker(stickerCreatorWindow, getLocale().messages);
handleCommonWindowEvents(stickerCreatorWindow);
@ -1188,7 +1188,7 @@ async function showDebugLogWindow() {
parent: mainWindow,
};
debugLogWindow = new BrowserWindow(options);
debugLogWindow = createBrowserWindow(options);
handleCommonWindowEvents(debugLogWindow);
@ -1245,7 +1245,7 @@ function showPermissionsPopupWindow(forCalling: boolean, forCamera: boolean) {
parent: mainWindow,
};
permissionsPopupWindow = new BrowserWindow(options);
permissionsPopupWindow = createBrowserWindow(options);
handleCommonWindowEvents(permissionsPopupWindow);
@ -1482,7 +1482,7 @@ app.on('ready', async () => {
'sql.initialize is taking more than three seconds; showing loading dialog'
);
loadingWindow = new BrowserWindow({
loadingWindow = createBrowserWindow({
show: false,
width: 300,
height: 265,

View File

@ -60,7 +60,9 @@ exports.createConversation = async ({
await sleep(index * 100);
window.SignalContext.log.info(`Create message ${index + 1}`);
const message = await createRandomMessage({ conversationId });
return Signal.Data.saveMessage(message);
return Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
})
);
};

View File

@ -65,7 +65,13 @@ exports.processNext = async ({
const upgradeDuration = Date.now() - upgradeStartTime;
const saveStartTime = Date.now();
await Promise.all(upgradedMessages.map(message => saveMessage(message)));
await Promise.all(
upgradedMessages.map(message =>
saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
})
)
);
const saveDuration = Date.now() - saveStartTime;
const totalDuration = Date.now() - startTime;

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.27.0-beta.1",
"version": "5.27.1",
"license": "AGPL-3.0-only",
"author": {
"name": "Open Whisper Systems",
@ -163,7 +163,7 @@
"redux-ts-utils": "3.2.2",
"reselect": "4.1.2",
"rimraf": "2.6.2",
"ringrtc": "https://github.com/signalapp/signal-ringrtc-node.git#7564aff3d10f7c9b70134a0dc8acdfe8512f75e1",
"ringrtc": "https://github.com/signalapp/signal-ringrtc-node.git#4cfc6e77aff04e2d721c38d76c111d09df1e14d5",
"rotating-file-stream": "2.1.5",
"sanitize.css": "11.0.0",
"semver": "5.4.1",
@ -184,7 +184,7 @@
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.16.0",
"@chanzuckerberg/axe-storybook-testing": "3.0.2",
"@chanzuckerberg/axe-storybook-testing": "5.0.0",
"@electron/fuses": "1.5.0",
"@storybook/addon-actions": "5.1.11",
"@storybook/addon-knobs": "5.1.11",
@ -256,7 +256,7 @@
"core-js": "2.6.9",
"cross-env": "5.2.0",
"css-loader": "3.2.0",
"electron": "16.0.4",
"electron": "16.0.6",
"electron-builder": "22.14.5",
"electron-mocha": "11.0.2",
"electron-notarize": "0.1.1",
@ -333,7 +333,8 @@
"target": "dmg",
"arch": [
"x64",
"arm64"
"arm64",
"universal"
]
}
],
@ -398,6 +399,7 @@
]
},
"beforeBuild": "scripts/install-cross-deps.js",
"afterPack": "ts/scripts/merge-macos-asars.js",
"asarUnpack": [
"ts/workers/heicConverter.bundle.js",
"ts/sql/mainWorker.bundle.js",
@ -455,10 +457,12 @@
"node_modules/socks/build/client/*.js",
"node_modules/smart-buffer/build/*.js",
"node_modules/sharp/build/**/*${arch}*.node",
"node_modules/sharp/build/**/*.dll",
"!node_modules/sharp/{install,src,vendor}",
"!node_modules/sharp/vendor",
"node_modules/sharp/vendor/*/*${arch}*/**",
"!node_modules/sharp/vendor/*/*${arch}*/**/include/**",
"!node_modules/sharp/vendor/*/*win32*/**/*.{dll,lib}",
"!node_modules/better-sqlite3/deps/*",
"!node_modules/better-sqlite3/src/*",
"node_modules/better-sqlite3/build/Release/better_sqlite3.node",

44
patches/got+11.8.2.patch Normal file
View File

@ -0,0 +1,44 @@
diff --git a/node_modules/got/dist/source/as-promise/index.js b/node_modules/got/dist/source/as-promise/index.js
index 9575c09..a00a014 100644
--- a/node_modules/got/dist/source/as-promise/index.js
+++ b/node_modules/got/dist/source/as-promise/index.js
@@ -33,6 +33,7 @@ function asPromise(normalizedOptions) {
const promise = new PCancelable((resolve, reject, onCancel) => {
const makeRequest = (retryCount) => {
const request = new core_1.default(undefined, normalizedOptions);
+ let isResolved = false;
request.retryCount = retryCount;
request._noPipe = true;
onCancel(() => request.destroy());
@@ -118,6 +119,7 @@ function asPromise(normalizedOptions) {
return;
}
globalResponse = response;
+ isResolved = true;
resolve(request.options.resolveBodyOnly ? response.body : response);
});
const onError = (error) => {
@@ -127,9 +129,11 @@ function asPromise(normalizedOptions) {
const { options } = request;
if (error instanceof types_1.HTTPError && !options.throwHttpErrors) {
const { response } = error;
+ isResolved = true;
resolve(request.options.resolveBodyOnly ? response.body : response);
return;
}
+ isResolved = true;
reject(error);
};
request.once('error', onError);
@@ -140,7 +144,10 @@ function asPromise(normalizedOptions) {
onError(error);
return;
}
- makeRequest(newRetryCount);
+
+ if (!isResolved) {
+ makeRequest(newRetryCount);
+ }
});
proxy_events_1.default(request, emitter, proxiedRequestEvents);
};

View File

@ -70,7 +70,6 @@ try {
window.getServerPublicParams = () => config.serverPublicParams;
window.getSfuUrl = () => config.sfuUrl;
window.isBehindProxy = () => Boolean(config.proxyUrl);
window.isLegacyOS = () => config.isLegacyOS === 'true';
window.getAutoLaunch = () => {
return ipc.invoke('get-auto-launch');
};

View File

@ -1,6 +0,0 @@
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
const { zipMacOSRelease } = require('../ts/scripts/zip-macos-release');
zipMacOSRelease();

View File

@ -6101,7 +6101,7 @@ button.module-image__border-overlay:focus {
display: flex;
justify-content: center;
align-items: center;
z-index: $z-index-popup;
z-index: $z-index-popup-overlay;
}
&__container {

View File

@ -16,16 +16,3 @@ export const isWindows = (minVersion?: string): boolean => {
return is.undefined(minVersion) ? true : semver.gte(osRelease, minVersion);
};
export const isLegacy = (): boolean => {
if (process.platform === 'darwin') {
// 17.0.0 - is macOS 10.13
return semver.lt(os.release(), '17.0.0');
}
if (process.platform === 'win32') {
return semver.lt(os.release(), '9.0.0');
}
return false;
};

View File

@ -8,7 +8,6 @@ import * as log from './logging/log';
export type ConfigKeyType =
| 'desktop.announcementGroup'
| 'desktop.calling.useWindowsAdm2'
| 'desktop.canResizeLeftPane.beta'
| 'desktop.canResizeLeftPane.production'
| 'desktop.clientExpiration'

View File

@ -135,6 +135,7 @@ import { ToastConversationUnarchived } from './components/ToastConversationUnarc
import { showToast } from './util/showToast';
import { startInteractionMode } from './windows/startInteractionMode';
import { deliveryReceiptsJobQueue } from './jobs/deliveryReceiptsJobQueue';
import { updateOurUsername } from './util/updateOurUsername';
const MAX_ATTACHMENT_DOWNLOAD_AGE = 3600 * 72 * 1000;
@ -1700,7 +1701,9 @@ export async function startApp(): Promise<void> {
};
});
await window.Signal.Data.saveMessages(newMessageAttributes);
await window.Signal.Data.saveMessages(newMessageAttributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
log.info('Expiration start timestamp cleanup: complete');
@ -2137,13 +2140,16 @@ export async function startApp(): Promise<void> {
try {
// Note: we always have to register our capabilities all at once, so we do this
// after connect on every startup
await server.registerCapabilities({
announcementGroup: true,
'gv2-3': true,
'gv1-migration': true,
senderKey: true,
changeNumber: true,
});
await Promise.all([
server.registerCapabilities({
announcementGroup: true,
'gv2-3': true,
'gv1-migration': true,
senderKey: true,
changeNumber: true,
}),
updateOurUsername(),
]);
} catch (error) {
log.error(
'Error: Unable to register our capabilities.',
@ -2365,7 +2371,9 @@ export async function startApp(): Promise<void> {
messagesToSave.push(message.attributes);
}
});
await window.Signal.Data.saveMessages(messagesToSave);
await window.Signal.Data.saveMessages(messagesToSave, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
function onReconnect() {
// We disable notifications on first connect, but the same applies to reconnect. In
@ -3458,7 +3466,7 @@ export async function startApp(): Promise<void> {
case FETCH_LATEST_ENUM.LOCAL_PROFILE: {
const ourUuid = window.textsecure.storage.user.getUuid()?.toString();
const ourE164 = window.textsecure.storage.user.getNumber();
await getProfile(ourUuid, ourE164);
await Promise.all([getProfile(ourUuid, ourE164), updateOurUsername()]);
break;
}
case FETCH_LATEST_ENUM.STORAGE_MANIFEST:

View File

@ -2,8 +2,6 @@
// SPDX-License-Identifier: AGPL-3.0-only
import { makeEnumParser } from '../util/enum';
import { isEnabled } from '../RemoteConfig';
import { isAlpha, isBeta } from '../util/version';
import * as OS from '../OS';
export enum AudioDeviceModule {
@ -16,19 +14,5 @@ export const parseAudioDeviceModule = makeEnumParser(
AudioDeviceModule.Default
);
export function getAudioDeviceModule(): AudioDeviceModule {
if (!OS.isWindows()) {
return AudioDeviceModule.Default;
}
const appVersion = window.getVersion();
if (
isEnabled('desktop.calling.useWindowsAdm2') ||
isBeta(appVersion) ||
isAlpha(appVersion)
) {
return AudioDeviceModule.WindowsAdm2;
}
return AudioDeviceModule.Default;
}
export const getAudioDeviceModule = (): AudioDeviceModule =>
OS.isWindows() ? AudioDeviceModule.WindowsAdm2 : AudioDeviceModule.Default;

View File

@ -58,7 +58,6 @@ import {
import { MediaEditor } from './MediaEditor';
import { IMAGE_PNG } from '../types/MIME';
import { isImageTypeSupported } from '../util/GoogleChrome';
import { canEditImages } from '../util/canEditImages';
export type CompositionAPIType =
| {
@ -293,13 +292,8 @@ export const CompositionArea = ({
}
}, []);
const hasImageEditingEnabled = canEditImages();
function maybeEditAttachment(attachment: AttachmentDraftType) {
if (
!hasImageEditingEnabled ||
!isImageTypeSupported(attachment.contentType)
) {
if (!isImageTypeSupported(attachment.contentType)) {
return;
}
@ -647,7 +641,6 @@ export const CompositionArea = ({
<div className="CompositionArea__attachment-list">
<AttachmentList
attachments={draftAttachments}
canEditImages={hasImageEditingEnabled}
i18n={i18n}
onAddAttachment={launchAttachmentPicker}
onClickAttachment={maybeEditAttachment}

View File

@ -18,15 +18,16 @@ import { refMerger } from '../util/refMerger';
import { byteLength } from '../Bytes';
export type PropsType = {
countLength?: (value: string) => number;
countBytes?: (value: string) => number;
countLength?: (value: string) => number;
disabled?: boolean;
disableSpellcheck?: boolean;
expandable?: boolean;
hasClearButton?: boolean;
i18n: LocalizerType;
icon?: ReactNode;
maxLengthCount?: number;
maxByteCount?: number;
maxLengthCount?: number;
moduleClassName?: string;
onChange: (value: string) => unknown;
onEnter?: () => unknown;
@ -58,15 +59,16 @@ export const Input = forwardRef<
>(
(
{
countLength = grapheme.count,
countBytes = byteLength,
countLength = grapheme.count,
disabled,
disableSpellcheck,
expandable,
hasClearButton,
i18n,
icon,
maxLengthCount = 0,
maxByteCount = 0,
maxLengthCount = 0,
moduleClassName,
onChange,
onEnter,
@ -201,6 +203,7 @@ export const Input = forwardRef<
isLarge && getClassName('__input--large')
),
disabled: Boolean(disabled),
spellcheck: disableSpellcheck ? 'false' : 'true',
onChange: handleChange,
onKeyDown: handleKeyDown,
onPaste: handlePaste,

View File

@ -18,10 +18,8 @@ import { IMAGE_PNG, isImage, isVideo } from '../types/MIME';
import type { LocalizerType } from '../types/Util';
import type { MediaItemType, MessageAttributesType } from '../types/MediaItem';
import { formatDuration } from '../util/formatDuration';
import { showToast } from '../util/showToast';
import { useRestoreFocus } from '../hooks/useRestoreFocus';
import * as log from '../logging/log';
import { ToastUnableToLoadAttachment } from './ToastUnableToLoadAttachment';
export type PropsType = {
children?: ReactNode;
@ -455,25 +453,6 @@ export function Lightbox({
/>
);
}
} else if (isVideoTypeSupported && window.isLegacyOS()) {
const onLegacyClick = (event: React.MouseEvent<HTMLVideoElement>) => {
event.preventDefault();
event.stopPropagation();
showToast(ToastUnableToLoadAttachment);
};
content = (
<video
className="Lightbox__object"
controls={false}
key={objectURL}
loop={false}
onClick={onLegacyClick}
>
<source src={objectURL} />
</video>
);
} else if (isVideoTypeSupported) {
const shouldLoop = loop || isAttachmentGIF || isViewOnce;

View File

@ -617,6 +617,7 @@ export const ProfileEditor = ({
<Input
i18n={i18n}
disabled={isCurrentlySaving}
disableSpellcheck
onChange={changedUsername => {
setUsernameError(undefined);
setNewUsername(changedUsername);

View File

@ -29,10 +29,18 @@ const renderText: RenderTextCallbackType = ({ key, text }) => (
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [1, 2].map(n => ({
key: `WhatsNew__v5.27--${n}`,
components: undefined,
})),
features: [
{
key: 'WhatsNew__macos-m1',
components: [
<a href="https://github.com/dennisameling/">Dennis Ameling</a>,
],
},
...[1, 2].map(n => ({
key: `WhatsNew__v5.27--${n}`,
components: undefined,
})),
],
};
export const WhatsNewModal = ({

View File

@ -46,7 +46,7 @@ story.add('One File', () => {
}),
],
});
return <AttachmentList {...props} canEditImages />;
return <AttachmentList {...props} />;
});
story.add('Multiple Visual Attachments', () => {

View File

@ -20,7 +20,6 @@ import {
export type Props<T extends AttachmentType | AttachmentDraftType> = Readonly<{
attachments: ReadonlyArray<T>;
canEditImages?: boolean;
i18n: LocalizerType;
onAddAttachment?: () => void;
onClickAttachment?: (attachment: T) => void;
@ -51,7 +50,6 @@ function getUrl(
export const AttachmentList = <T extends AttachmentType | AttachmentDraftType>({
attachments,
canEditImages,
i18n,
onAddAttachment,
onClickAttachment,
@ -121,7 +119,7 @@ export const AttachmentList = <T extends AttachmentType | AttachmentDraftType>({
/>
);
if (isImage && canEditImages) {
if (isImage) {
return (
<div className="module-attachments--editable">
{imgElement}

View File

@ -178,7 +178,7 @@ export const GIF: React.FC<Props> = props => {
}
let gif: JSX.Element | undefined;
if (isNotDownloaded || isPending || window.isLegacyOS()) {
if (isNotDownloaded || isPending) {
gif = (
<Blurhash
hash={attachment.blurHash || defaultBlurHash(theme)}

View File

@ -12,6 +12,7 @@ import type { GroupV2ChangeType } from '../../groups';
import { SignalService as Proto } from '../../protobuf';
import type { SmartContactRendererType } from '../../groupChange';
import { GroupV2Change } from './GroupV2Change';
import type { FullJSXType } from '../Intl';
const i18n = setupI18n('en', enMessages);
@ -25,7 +26,9 @@ const INVITEE_A = UUID.generate().toString();
const AccessControlEnum = Proto.AccessControl.AccessRequired;
const RoleEnum = Proto.Member.Role;
const renderContact: SmartContactRendererType = (conversationId: string) => (
const renderContact: SmartContactRendererType<FullJSXType> = (
conversationId: string
) => (
<React.Fragment key={conversationId}>
{`Conversation(${conversationId})`}
</React.Fragment>

View File

@ -28,7 +28,7 @@ export type PropsDataType = {
export type PropsHousekeepingType = {
i18n: LocalizerType;
renderContact: SmartContactRendererType;
renderContact: SmartContactRendererType<FullJSXType>;
};
export type PropsType = PropsDataType & PropsHousekeepingType;
@ -141,7 +141,7 @@ export function GroupV2Change(props: PropsType): ReactElement {
return (
<>
{renderChange(change, {
{renderChange<FullJSXType>(change, {
i18n,
ourUuid,
renderContact,

View File

@ -6,7 +6,6 @@ import classNames from 'classnames';
import { noop } from 'lodash';
import { assert } from '../../util/assert';
import { showToast } from '../../util/showToast';
import type { LocalizerType } from '../../types/Util';
import type { AttachmentType } from '../../types/Attachment';
import { hasNotDownloaded } from '../../types/Attachment';
@ -14,7 +13,6 @@ import type { DirectionType, MessageStatusType } from './Message';
import type { ComputePeaksResult } from '../GlobalAudioContext';
import { MessageMetadata } from './MessageMetadata';
import { ToastUnableToLoadAttachment } from '../ToastUnableToLoadAttachment';
import * as log from '../../logging/log';
export type Props = {
@ -352,11 +350,6 @@ export const MessageAudio: React.FC<Props> = (props: Props) => {
}, [id, audio, isActive, isPlaying, currentTime]);
const toggleIsPlaying = () => {
if (window.isLegacyOS()) {
showToast(ToastUnableToLoadAttachment);
return;
}
setIsPlaying(!isPlaying);
if (!isActive && !isPlaying) {

View File

@ -53,6 +53,7 @@ import { ResetSessionNotification } from './ResetSessionNotification';
import type { PropsType as ProfileChangeNotificationPropsType } from './ProfileChangeNotification';
import { ProfileChangeNotification } from './ProfileChangeNotification';
import * as log from '../../logging/log';
import type { FullJSXType } from '../Intl';
type CallHistoryType = {
type: 'callHistory';
@ -144,7 +145,7 @@ type PropsLocalType = {
id: string;
isSelected: boolean;
selectMessage: (messageId: string, conversationId: string) => unknown;
renderContact: SmartContactRendererType;
renderContact: SmartContactRendererType<FullJSXType>;
renderUniversalTimerNotification: () => JSX.Element;
i18n: LocalizerType;
interactionMode: InteractionModeType;

View File

@ -1,7 +1,6 @@
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { FullJSXType } from './components/Intl';
import type { LocalizerType } from './types/Util';
import type { ReplacementValuesType } from './types/I18N';
import type { UUIDStringType } from './types/UUID';
@ -11,42 +10,42 @@ import type { GroupV2ChangeDetailType, GroupV2ChangeType } from './groups';
import { SignalService as Proto } from './protobuf';
import * as log from './logging/log';
export type SmartContactRendererType = (uuid: UUIDStringType) => FullJSXType;
export type StringRendererType = (
export type SmartContactRendererType<T> = (uuid: UUIDStringType) => T | string;
export type StringRendererType<T> = (
id: string,
i18n: LocalizerType,
components?: Array<FullJSXType> | ReplacementValuesType<FullJSXType>
) => FullJSXType;
components?: Array<T | string> | ReplacementValuesType<T | string>
) => T | string;
export type RenderOptionsType = {
export type RenderOptionsType<T> = {
from?: UUIDStringType;
i18n: LocalizerType;
ourUuid: UUIDStringType;
renderContact: SmartContactRendererType;
renderString: StringRendererType;
renderContact: SmartContactRendererType<T>;
renderString: StringRendererType<T>;
};
const AccessControlEnum = Proto.AccessControl.AccessRequired;
const RoleEnum = Proto.Member.Role;
export function renderChange(
export function renderChange<T>(
change: GroupV2ChangeType,
options: RenderOptionsType
): Array<FullJSXType> {
options: RenderOptionsType<T>
): Array<T | string> {
const { details, from } = change;
return details.map((detail: GroupV2ChangeDetailType) =>
renderChangeDetail(detail, {
renderChangeDetail<T>(detail, {
...options,
from,
})
);
}
export function renderChangeDetail(
export function renderChangeDetail<T>(
detail: GroupV2ChangeDetailType,
options: RenderOptionsType
): FullJSXType {
options: RenderOptionsType<T>
): T | string {
const { from, i18n, ourUuid, renderContact, renderString } = options;
const fromYou = Boolean(from && from === ourUuid);

View File

@ -1716,6 +1716,7 @@ export async function createGroupV2({
};
await window.Signal.Data.saveMessages([createdTheGroupMessage], {
forceSave: true,
ourUuid,
});
const model = new window.Whisper.Message(createdTheGroupMessage);
window.MessageController.register(model.id, model);
@ -2861,6 +2862,7 @@ async function updateGroup(
if (changeMessagesToSave.length > 0) {
await window.Signal.Data.saveMessages(changeMessagesToSave, {
forceSave: true,
ourUuid: ourUuid.toString(),
});
changeMessagesToSave.forEach(changeMessage => {
const model = new window.Whisper.Message(changeMessage);

View File

@ -481,7 +481,9 @@ async function markMessageFailed(
): Promise<void> {
message.markFailed();
message.saveErrors(errors, { skipSave: true });
await window.Signal.Data.saveMessage(message.attributes);
await window.Signal.Data.saveMessage(message.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
function didSendToEveryone(message: Readonly<MessageModel>): boolean {

View File

@ -58,6 +58,7 @@ export class ReactionJobQueue extends JobQueue<ReactionJobData> {
{ attempt, log }: Readonly<{ attempt: number; log: LoggerType }>
): Promise<void> {
const { messageId } = data;
const ourUuid = window.textsecure.storage.user.getCheckedUuid().toString();
const timeRemaining = timestamp + MAX_RETRY_TIME - Date.now();
const isFinalAttempt = attempt >= MAX_ATTEMPTS;
@ -100,7 +101,7 @@ export class ReactionJobQueue extends JobQueue<ReactionJobData> {
`could not react to ${messageId}. Removing this pending reaction`
);
markReactionFailed(message, pendingReaction);
await window.Signal.Data.saveMessage(message.attributes);
await window.Signal.Data.saveMessage(message.attributes, { ourUuid });
return;
}
@ -109,7 +110,7 @@ export class ReactionJobQueue extends JobQueue<ReactionJobData> {
`reacting to message ${messageId} ran out of time. Giving up on sending it`
);
markReactionFailed(message, pendingReaction);
await window.Signal.Data.saveMessage(message.attributes);
await window.Signal.Data.saveMessage(message.attributes, { ourUuid });
return;
}
@ -257,7 +258,7 @@ export class ReactionJobQueue extends JobQueue<ReactionJobData> {
}
await handleCommonJobRequestError({ err, log, timeRemaining });
} finally {
await window.Signal.Data.saveMessage(message.attributes);
await window.Signal.Data.saveMessage(message.attributes, { ourUuid });
}
}
}

View File

@ -283,14 +283,12 @@ const parseHtmlBytes = (
const getHtmlDocument = async (
body: AsyncIterable<string | Uint8Array>,
contentLength: number,
httpCharset: string | null,
abortSignal: AbortSignal
): Promise<HTMLDocument> => {
let result: HTMLDocument = emptyHtmlDocument();
const maxHtmlBytesToLoad = Math.min(contentLength, MAX_HTML_BYTES_TO_LOAD);
const buffer = new Uint8Array(maxHtmlBytesToLoad);
const buffer = new Uint8Array(MAX_HTML_BYTES_TO_LOAD);
let bytesLoadedSoFar = 0;
try {
@ -307,16 +305,13 @@ const getHtmlDocument = async (
chunk = Buffer.from(chunk, httpCharset || 'utf8');
}
const truncatedChunk = chunk.slice(
0,
maxHtmlBytesToLoad - bytesLoadedSoFar
);
const truncatedChunk = chunk.slice(0, buffer.length - bytesLoadedSoFar);
buffer.set(truncatedChunk, bytesLoadedSoFar);
bytesLoadedSoFar += truncatedChunk.byteLength;
result = parseHtmlBytes(buffer.slice(0, bytesLoadedSoFar), httpCharset);
const hasLoadedMaxBytes = bytesLoadedSoFar >= maxHtmlBytesToLoad;
const hasLoadedMaxBytes = bytesLoadedSoFar >= buffer.length;
if (hasLoadedMaxBytes) {
break;
}
@ -495,7 +490,6 @@ export async function fetchLinkPreviewMetadata(
const document = await getHtmlDocument(
response.body,
contentLength,
contentType.charset,
abortSignal
);

View File

@ -278,7 +278,9 @@ async function _finishJob(
): Promise<void> {
if (message) {
logger.info(`attachment_downloads/_finishJob for job id: ${id}`);
await saveMessage(message.attributes);
await saveMessage(message.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
await removeAttachmentDownloadJob(id);

View File

@ -1627,6 +1627,7 @@ export class ConversationModel extends window.Backbone
if (eliminated > 0) {
log.warn(`cleanModels: Eliminated ${eliminated} messages without an id`);
}
const ourUuid = window.textsecure.storage.user.getCheckedUuid().toString();
let upgraded = 0;
for (let max = result.length, i = 0; i < max; i += 1) {
@ -1640,7 +1641,7 @@ export class ConversationModel extends window.Backbone
const upgradedMessage = await upgradeMessageSchema(attributes);
message.set(upgradedMessage);
// eslint-disable-next-line no-await-in-loop
await window.Signal.Data.saveMessage(upgradedMessage);
await window.Signal.Data.saveMessage(upgradedMessage, { ourUuid });
upgraded += 1;
}
}
@ -1955,6 +1956,7 @@ export class ConversationModel extends window.Backbone
options: { isLocalAction?: boolean } = {}
): Promise<void> {
const { isLocalAction } = options;
const ourUuid = window.textsecure.storage.user.getCheckedUuid().toString();
let messages: Array<MessageAttributesType> | undefined;
do {
@ -1996,7 +1998,9 @@ export class ConversationModel extends window.Backbone
const registered = window.MessageController.register(m.id, m);
const shouldSave = await registered.queueAttachmentDownloads();
if (shouldSave) {
await window.Signal.Data.saveMessage(registered.attributes);
await window.Signal.Data.saveMessage(registered.attributes, {
ourUuid,
});
}
})
);
@ -2843,7 +2847,9 @@ export class ConversationModel extends window.Backbone
// this type does not fully implement the interface it is expected to
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -2883,7 +2889,9 @@ export class ConversationModel extends window.Backbone
// this type does not fully implement the interface it is expected to
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -2919,7 +2927,9 @@ export class ConversationModel extends window.Backbone
// this type does not fully implement the interface it is expected to
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -2975,7 +2985,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -3035,7 +3047,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -3095,7 +3109,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType;
const id = await window.Signal.Data.saveMessage(message);
const id = await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
@ -3136,7 +3152,10 @@ export class ConversationModel extends window.Backbone
const id = await window.Signal.Data.saveMessage(
// TODO: DESKTOP-722
message as MessageAttributesType
message as MessageAttributesType,
{
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
}
);
const model = window.MessageController.register(
id,
@ -3957,6 +3976,7 @@ export class ConversationModel extends window.Backbone
await window.Signal.Data.saveMessage(message.attributes, {
jobToInsert,
forceSave: true,
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
);
@ -4397,7 +4417,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType);
const id = await window.Signal.Data.saveMessage(model.attributes);
const id = await window.Signal.Data.saveMessage(model.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
model.set({ id });
@ -4493,7 +4515,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType);
const id = await window.Signal.Data.saveMessage(model.attributes);
const id = await window.Signal.Data.saveMessage(model.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
model.set({ id });
@ -4528,7 +4552,9 @@ export class ConversationModel extends window.Backbone
// TODO: DESKTOP-722
} as unknown as MessageAttributesType);
const id = await window.Signal.Data.saveMessage(model.attributes);
const id = await window.Signal.Data.saveMessage(model.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
model.set({ id });
const message = window.MessageController.register(model.id, model);

View File

@ -142,6 +142,7 @@ import {
isCustomError,
isQuoteAMatch,
} from '../messages/helpers';
import type { ReplacementValuesType } from '../types/I18N';
/* eslint-disable camelcase */
/* eslint-disable more/no-then */
@ -447,11 +448,14 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
if (isGroupV2Change(attributes)) {
const change = this.get('groupV2Change');
strictAssert(
change,
'getNotificationData: isGroupV2Change true, but no groupV2Change!'
);
const lines = window.Signal.GroupChange.renderChange(change, {
AccessControlEnum: Proto.AccessControl.AccessRequired,
const lines = window.Signal.GroupChange.renderChange<string>(change, {
i18n: window.i18n,
ourConversationId: window.ConversationController.getOurConversationId(),
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
renderContact: (conversationId: string) => {
const conversation =
window.ConversationController.get(conversationId);
@ -462,9 +466,8 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
renderString: (
key: string,
_i18n: unknown,
placeholders: Array<string>
) => window.i18n(key, placeholders),
RoleEnum: Proto.Member.Role,
components: Array<string> | ReplacementValuesType<string> | undefined
) => window.i18n(key, components),
});
return { text: lines.join(' ') };
@ -962,7 +965,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
this.getConversation()?.debouncedUpdateLastMessage?.();
if (shouldPersist) {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
await window.Signal.Data.deleteSentProtoByMessageId(this.id);
@ -1096,7 +1101,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
}
if (!skipSave && !this.doNotSave) {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
}
@ -1158,7 +1165,10 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
await normalMessageSendJobQueue.add(
{ messageId: this.id, conversationId: conversation.id },
async jobToInsert => {
await window.Signal.Data.saveMessage(this.attributes, { jobToInsert });
await window.Signal.Data.saveMessage(this.attributes, {
jobToInsert,
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
);
}
@ -1253,7 +1263,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
}
if (!this.doNotSave) {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
const sendStateByConversationId = {
@ -1400,7 +1412,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
}
if (!this.doNotSave) {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
updateLeftPane();
@ -1457,7 +1471,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
this.saveErrors(errors, { skipSave: true });
}
} finally {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
if (updateLeftPane) {
updateLeftPane();
@ -1568,7 +1584,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
return result;
}
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
return result;
});
};
@ -2094,7 +2112,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
originalMessage.attributes
);
originalMessage.set(upgradedMessage);
await window.Signal.Data.saveMessage(upgradedMessage);
await window.Signal.Data.saveMessage(upgradedMessage, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
} catch (error) {
log.error(
@ -2261,7 +2281,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
sendStateByConversationId,
unidentifiedDeliveries: [...unidentifiedDeliveriesSet],
});
await window.Signal.Data.saveMessage(toUpdate.attributes);
await window.Signal.Data.saveMessage(toUpdate.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
confirm();
return;
@ -3013,7 +3035,9 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
log.info(
`modifyTargetMessage/${this.idForLogging()}: Changes in second run; saving.`
);
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
}
@ -3163,13 +3187,16 @@ export class MessageModel extends window.Backbone.Model<MessageAttributesType> {
);
await window.Signal.Data.saveMessage(this.attributes, {
jobToInsert,
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
});
} else {
await reactionJobQueue.add(jobData);
}
} else if (shouldPersist) {
await window.Signal.Data.saveMessage(this.attributes);
await window.Signal.Data.saveMessage(this.attributes, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
});
}
}

Some files were not shown because too many files have changed in this diff Show More