From ad6d55cebe4c4b9178d11bf88d7e23eb7b75e323 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Thu, 28 Apr 2016 00:40:37 +0200 Subject: [PATCH] Translations update - TTL hours/days now has correct plurals/paucals - TTL description updates better when changing language (was "X days") - language sources updated --- src/bitmessageqt/__init__.py | 7 +- src/bitmessageqt/bitmessageui.py | 21 +- src/translations/bitmessage_ar.qm | Bin 39485 -> 38953 bytes src/translations/bitmessage_ar.ts | 390 ++++++++++++----------- src/translations/bitmessage_cs.qm | Bin 56609 -> 55938 bytes src/translations/bitmessage_cs.ts | 378 +++++++++++----------- src/translations/bitmessage_da.qm | Bin 52498 -> 51677 bytes src/translations/bitmessage_da.ts | 372 ++++++++++----------- src/translations/bitmessage_de.qm | Bin 80211 -> 79358 bytes src/translations/bitmessage_de.ts | 372 ++++++++++----------- src/translations/bitmessage_en.qm | Bin 334 -> 23 bytes src/translations/bitmessage_en.ts | 382 +++++++++++----------- src/translations/bitmessage_en_pirate.qm | Bin 17497 -> 16990 bytes src/translations/bitmessage_en_pirate.ts | 382 +++++++++++----------- src/translations/bitmessage_eo.qm | Bin 73595 -> 72746 bytes src/translations/bitmessage_eo.ts | 370 ++++++++++----------- src/translations/bitmessage_fr.qm | Bin 72095 -> 71252 bytes src/translations/bitmessage_fr.ts | 372 ++++++++++----------- src/translations/bitmessage_it.qm | Bin 18790 -> 18043 bytes src/translations/bitmessage_it.ts | 373 +++++++++++----------- src/translations/bitmessage_ja.qm | Bin 34535 -> 34003 bytes src/translations/bitmessage_ja.ts | 380 +++++++++++----------- src/translations/bitmessage_nl.qm | Bin 12672 -> 11976 bytes src/translations/bitmessage_nl.ts | 373 +++++++++++----------- src/translations/bitmessage_no.qm | Bin 59437 -> 58598 bytes src/translations/bitmessage_no.ts | 372 ++++++++++----------- src/translations/bitmessage_ru.qm | Bin 50781 -> 50249 bytes src/translations/bitmessage_ru.ts | 384 +++++++++++----------- src/translations/bitmessage_sk.qm | Bin 59578 -> 58948 bytes src/translations/bitmessage_sk.ts | 374 +++++++++++----------- src/translations/bitmessage_zh_cn.qm | Bin 35123 -> 34591 bytes src/translations/bitmessage_zh_cn.ts | 380 +++++++++++----------- 32 files changed, 2899 insertions(+), 2783 deletions(-) diff --git a/src/bitmessageqt/__init__.py b/src/bitmessageqt/__init__.py index a9b1c201..2feafb31 100644 --- a/src/bitmessageqt/__init__.py +++ b/src/bitmessageqt/__init__.py @@ -795,13 +795,10 @@ class MyForm(settingsmixin.SMainWindow): def updateHumanFriendlyTTLDescription(self, TTL): numberOfHours = int(round(TTL / (60*60))) if numberOfHours < 48: - if numberOfHours == 1: - self.ui.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "1 hour")) - else: - self.ui.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "%1 hours").arg(numberOfHours)) + self.ui.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "%n hour(s)", None, QtCore.QCoreApplication.CodecForTr, numberOfHours)) else: numberOfDays = int(round(TTL / (24*60*60))) - self.ui.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "%1 days").arg(numberOfDays)) + self.ui.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "%n day(s)", None, QtCore.QCoreApplication.CodecForTr, numberOfDays)) # Show or hide the application window after clicking an item within the # tray icon or, on Windows, the try icon itself. diff --git a/src/bitmessageqt/bitmessageui.py b/src/bitmessageqt/bitmessageui.py index b1b7f7f4..1a0e87ec 100644 --- a/src/bitmessageqt/bitmessageui.py +++ b/src/bitmessageqt/bitmessageui.py @@ -23,11 +23,17 @@ except AttributeError: try: _encoding = QtGui.QApplication.UnicodeUTF8 - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig, _encoding) + def _translate(context, text, disambig, encoding = QtCore.QCoreApplication.CodecForTr, n = None): + if n is None: + return QtGui.QApplication.translate(context, text, disambig, _encoding) + else: + return QtGui.QApplication.translate(context, text, disambig, _encoding, n) except AttributeError: - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig) + def _translate(context, text, disambig, encoding = QtCore.QCoreApplication.CodecForTr, n = None): + if n is None: + return QtGui.QApplication.translate(context, text, disambig) + else: + return QtGui.QApplication.translate(context, text, disambig, QtCore.QCoreApplication.CodecForTr, n) class Ui_MainWindow(object): def setupUi(self, MainWindow): @@ -668,7 +674,12 @@ class Ui_MainWindow(object): #self.textEditMessageBroadcast.setHtml("") self.tabWidgetSend.setTabText(self.tabWidgetSend.indexOf(self.sendBroadcast), _translate("MainWindow", "Send Message to your Subscribers", None)) self.pushButtonTTL.setText(_translate("MainWindow", "TTL:", None)) - self.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "X days", None)) + hours = 48 + try: + hours = int(shared.config.getint('bitmessagesettings', 'ttl')/60/60) + except: + pass + self.labelHumanFriendlyTTLDescription.setText(_translate("MainWindow", "%n hour(s)", None, QtCore.QCoreApplication.CodecForTr, hours)) self.pushButtonSend.setText(_translate("MainWindow", "Send", None)) self.tabWidget.setTabText(self.tabWidget.indexOf(self.send), _translate("MainWindow", "Send", None)) self.treeWidgetSubscriptions.headerItem().setText(0, _translate("MainWindow", "Subscriptions", None)) diff --git a/src/translations/bitmessage_ar.qm b/src/translations/bitmessage_ar.qm index 36186ea560daeaa8abfd9c07bf65a88521a97905..af9830410f2e0926a8ef229ea8698caa8672bdf4 100644 GIT binary patch delta 1754 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 EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,122 +245,107 @@ Please type the desired email address (including @mailchuck.com) below: واحد من العناوين، %1، حاصل على رقم إصدار 1، العناوين ذات رقم الإصدار 1 غير مدعومه حالياً، هل باستطاعتنا حذفه الآن؟ - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. - + Encryption key request queued. تم إدراح طلب مفتاح التشفير بقائمة الإنتظار. - + Queued. تم الإدراج بقائمة الانتظار - + Message sent. Waiting for acknowledgement. Sent at %1 - + Message sent. Sent at %1 تم إرسال الرسالة في %1 - + Need to do work to send message. Work is queued. تحتاج لبعض العمل لإرسال الرسالة، تم إدراج العمل بقائمة الانتظار - + Acknowledgement of the message received %1 تم استلام إشعار الاستلام للرسالة %1 - + Broadcast queued. تم إدراج البث في قائمة الانتظار - + Broadcast on %1 البث في %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 مشكلة: العمل المطلوب من قبل المستلم أصعب من ما كنت مستعد للقيام به %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 مشكلة: مفتاح تشفير المرسل إليه غير جيد، لا يمكن تشفير الرسالة. %1 - + Forced difficulty override. Send should start soon. تم تجازو الصعوبة قصراً، ستبدأ الإرسال قريباً - + Unknown status: %1 %2 حالة غير معروفه: %1 %2 - + Not Connected غير متصل - + Show Bitmessage إظهار Bitmessage - + Send إرسال - + Subscribe إشتراك - + Channel - + Quit الخروج - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. يمكنك إدارة مفاتيحك بتعديل ملف keys.dat المحفوظ بنفس المجلد الخاص بالبرنامج، مهم جداً أن تحتفظ بنسخة إضافية للملف المذكور سلفاً. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -369,17 +354,17 @@ It is important that you back up this file. مهم جداً أن تحتفظ بنسخة إضافية من هذا الملف. - + Open keys.dat? فتح ملف keys.dat؟ - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) يمكنك إدارة مفاتيحك بتعديل ملف keys.dat المحفوظ بنفس المجلد الخاص بالبرنامج، مهم جداً أن تحتفظ بنسخة إضافية للملف المذكور سلفاً. هل ترغب بفتح الملف الآن؟ تأكد من إغلاق البرنامج Bitmessage قبل تعديل الملف. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -388,122 +373,122 @@ It is important that you back up this file. Would you like to open the file now? مهم جداً أن تحتفظ بنسخة إضافية من هذا الملف. هل ترغب بفتح الملف الآن؟ تأكد من إغلاق البرنامج Bitmessage قبل تعديل الملف. - + Delete trash? حذف سلة المهملات؟ - + Are you sure you want to delete all trashed messages? هل أنت متأكد من رغبتك في حذف كل الرسائل من سلة المهملات؟ - + bad passphrase عبارة المرور غير جيدة - + You must type your passphrase. If you don't have one then this is not the form for you. يجب إدخال عبارة المرور، إن لم تكن لديك عبارة مرور، إذاً هذه ليست الطريقة المناسبة لك - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed مطلوب إسم زمرة - + You didn't enter a chan name. لم تدخل إسم الزمرة - + Address already present العنوان موجود سلفاً - + Could not add chan because it appears to already be one of your identities. لا يمكن إضافة هذه الزمرة لأنها تعتبر أحد هوياتك. - + Success نجاح - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. تم تكوين زمرة بنجاح، لإتاحة الفرصة للأخرين بالإنضمام لمجموعتك أعطهم إسم الزمرة و هذا العنوان %1، هذا العنوان سيظهر ضمن هوياتك. - + Address too new العنوان جديد جداً - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. بالرغم أن العنوان صحيح و لكن رقم إصداره جديد جدًا بحيث لا يمكن التعامل معه، ربما عليك تحديث البرنامج. - + Address invalid العنوان غير صحيح - + That Bitmessage address is not valid. عنوان Bitmessage غير صحيح. - + Address does not match chan name العنوان لا يتوافق مع إسم الزمرة - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. بالرغم أن العنوان صحيح، و لكن لا يتوافق مع إسم الزمرة. - + Successfully joined chan. تم الإنضمام للزمرة بنجاح. - + Connection lost تم فقد الاتصال - + Connected متصل - + Message trashed تم حذف الرسالة - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -511,122 +496,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 خطأ: عناوين ال Bitmessage تبدأ ب BM-، يرجى فحص %1 - + Error: The address %1 is not typed or copied correctly. Please check it. خطأ: لم يتم إدخال أو نسخ العنوان %1 بطريقة صحيحة، يرجى فحصه. - + Error: The address %1 contains invalid characters. Please check it. خطأ: العنوان %1 يحتوي على حروف غير صالحة، يرجى فحصه. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. خطأ: رقم إصدار العنوان %1 عالي جداً، إما أن تقوم بتحديث برنامج Bitmessage أو أن شريكك ذكي جدأ. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. بعض البيانات المشفرة ضمن العنوان %1 قصيرة جداً. يمكن أن يكون هناك خطأ في برنامج شريكك. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. بعض البيانات المشفرة ضمن العنوان %1 طويلة جداً. يمكن أن يكون هناك خطأ في برنامج شريكك. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. خطأ: هناك خطأ في هذا العنوان %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. خطأ: يجب اختيار عنوان للإرسال منه، إن لم يكن لديك واحد إذهب إلى تبويب "هوياتك". - + Address version number رقم إصدار العنوان - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. بالنظر إلى العنوان %1, Bitmessage لم يستطع فهم رقم إصدار العنوان %2، ربما يجب عليك تحديث برنامج Bitmessage لإصداره الأخير. - + Stream number رقم المجرى - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. بالنظر إلى العنوان %1, Bitmessage لم يستطع فهم رقم إصدار العنوان %2، ربما يجب عليك تحديث برنامج Bitmessage لإصداره الأخير. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. تحذير: أنت غير متصل حالياً، Bitmessage سيقوم بالعمل اللازم لإرسال الرسالة و لكن لن يقوم بالإرسال حتى تصبح متصلاً. - + Message queued. - + Your 'To' field is empty. حقل "إلى" فارغ. - + Right click one or more entries in your address book and select 'Send message to this address'. أنقر يميناً على واحد أو أكثر من جهات الاتصال في دفتر العناوين و اختر "إرسال رسالة لهذا العنوان". - + Fetched address from namecoin identity. تم تحصيل العنوان من هوية namecoin. - + New Message رسالة جديدة - + From من - + Sending email gateway registration request @@ -641,431 +626,426 @@ It is important that you back up this file. Would you like to open the file now? العنوان الذي أدخلته غير صالح، سيتم تجاهله. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. خطأ: لا يمكنك إضافة نفس العنوان إلى دفتر العناوين مرتين، يمكنك إعادة تسمية العنوان. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart إعادة تشغيل - + You must restart Bitmessage for the port number change to take effect. لتفعيل تغيير رقم نقطة العبور (port) يجب عليك إعادة تشغيل برنامج Bitmessage. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). سيقوم Bitmessage باستخدام البروكسي الخاص بك من الآن فصاعداً و لكن يمكنك إعادة تشغيل Bitmessage يدوياً لإغلاق الروابط الحالية -إن وجدت. - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch عبارة المرور غير متطابقه - + The passphrase you entered twice doesn't match. Try again. عبارة المرور التي أدخلتها مرتين غير متطابقه، أعد المحاولة. - + Choose a passphrase اختر عبارة المرور - + You really do need a passphrase. أنت بحاجة لعبارة مرور. - + Address is gone تم إنتاج العنوان - + Bitmessage cannot find your address %1. Perhaps you removed it? لم يستطع Bitmessage العثور على عنوانك %1, ربما قمت بحذف العنوان؟ - + Address disabled تم تعطيل العنوان - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. خطأ: العنوان المستخدم للإرسال منه معطل، يجب عليك تفعيله في تبويب "هوياتك" قبل استخدامه. - + Entry added to the Address Book. Edit the label to your liking. تم إضافة جهة الاتصال لدفتر العناوين، يمكنك تعديل الإسم المستعار إذا أحببت. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. تم نقل المادة لسلة المهملات. - + Undeleted item. - + Save As... حفظ بإسم - + Write error. خطأ كتابة. - + No addresses selected. لم يتم اختيار عناوين - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... اختبار... - + This is a chan address. You cannot use it as a pseudo-mailing list. هذا عنوان الزمرة، لا يمكنك إستخدامه كقائمة بريدية مستعاره. - + The address should start with ''BM-'' العنوان يجب أن يبدأ ب "BM-". - + The address is not typed or copied correctly (the checksum failed). لم يتم إدخال أو نسخ العنوان بالطريقة الصحيحة - اختبار checksum فشل. - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. رقم إصدار هذا العنوان أعلى من إمكانية هذا البرنامج، قم بتحديث البرنامج. - + The address contains invalid characters. العنوان يحتوي على حروف غير صحيحة - + Some data encoded in the address is too short. بعض البيانات المشفرة ضمن العنوان قصيرة جداً - + Some data encoded in the address is too long. بعض البيانات المشفرة ضمن العنوان طويلة جداً. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). أنت تستخدم نقطة عبور TCP %1 - يمكنك تغييره في قائمة الضبط. - + Bitmessage Bitmessage - + Identities - + New Identity - + Search بحث - + All الكل - + To إلى - + From من - + Subject الموضوع - + Message الرسالة - + Received تاريخ الإستلام - + Messages - + Address book - + Address العنوان - + Add Contact - + Fetch Namecoin ID إحضار هوية namecoin - + Subject: الموضوع: - + From: من: - + To: إلى: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions الإشتراكات - + Add new Subscription إدخال إشتراك جديدة - + Chans - + Add Chan - + File ملف - + Settings الضبط - + Help مساعدة - + Import keys إدراج المفاتيح - + Manage keys إدارة المفاتيح - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About عن - + Regenerate deterministic addresses إعادة إنتاج عناوين حتمية - غير عشوائية - + Delete all trashed messages حذف سلة المهملات - + Join / Create chan إنضمام / تكوين زمرة @@ -1090,55 +1070,79 @@ Are you sure you want to delete the channel? إضافة مدخل جديد - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + + + + + %n day(s) + + + + + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1514,7 +1518,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status حالة الشبكة diff --git a/src/translations/bitmessage_cs.qm b/src/translations/bitmessage_cs.qm index 2056eafebb8239268313c2f0c6bc4ed71398ef6d..f6a71368c1f328676521ea30d4abd42443f9476f 100644 GIT binary patch delta 2318 zcmX9^BB+F&R^H(`*y!v*L~mLW3}v#8aCV9@ErhW zpzs;M^WJ7V@AufT3#}%;r1?Hg~|HN=F+fVAK5; zu-yq;1+5p{!eq;Kz)uU8oMK?{cDVJV0f~L^%fA9J<|f>kjexx0DF6=y51KG38$p?oK!Y8E*KdUZ4TrF-h8#(m2oW-YmZRAC7a1^aL*j8q;DaYf zDl-78Pq8i92%PJ};e>HO=3%s6S_zE(6?aFI!J-c_`0oK?EuB%8ya3GI7%NL+z@dk+ zlWc&vK*lBXF|d0qAi1n8g!b*+Wo0oHz{oMOwopR%e%Y<$%Rqgv>;V@GB(=$&=34+l8Y}JNf$O%c zy6Y^h@37kRZeZIo*1AYXevhzDhVDvol*~?xNdYQ7SuedcJ?LO(uIdFsEZBlK6o8Kh zTf8!zitrv=E0N~)g>37Ww6-6^w#&l-alHvMCb7K(hX6K%eH=`I>H^q-1hTu_i~ZyL zVqn^GPP>XEt~GL_VjBRho_ z1hYsobh%In-Bb+hX%p7HB}xm8!iKfcG!LE%F+aFacf1ugXHzjYRtrV*egQge38g=E z08>v0<<>-Xp<1XqFdRs*6wVDvw)47hvwRp8dBauVZV*LOKSLN0$lxb7@?qK36|VMj zPd}1I>nsoGZKn)$@}TTw>icE#aOd^F`EYrXm4=w>m8Tu`CTfSvGZu^jn*HT_?~McU z?#pv(>0BNn|90PhsSTE!kX>rRt&jgk1JeJLH&3O^t{#*>)DKbJB!4xYB3_-Rm@Yh{ zjQkW!bb-_r@ruuAR)Bq^h@ayKIL=Tch3f&Ol_K-2B5lxwTWh!nL(8hRI#nact)K)bnOq!q= z-0@E!{+i;=T|!G%Y5rgd)yNa&=&y&`^e3h54GPd+uXGFff+k**asl1}f#a01dU9m< zT50@YDlqe^vSbGBr^l#l(Vo)!46RUID0)uC*{ZsnT19wJ_4LaW;Os?_38ZXz1A-!5k{;cmCq*vW^!6sF$cu+&dldRUvrM1-t z_2_@x2R2lzZ41c3Yi3d z8m&L8?`N$c1})ToM)&|3ks36T-J<;(8(%%Jrdl&;=nt7}5HI15rp$@YhUl*N#Cds6-3wRTydv=?uW|GT=N5V zxr1ZgtIAPDOsSggF)cLr4|gYxIyyWqK4w!?Y~1R&&9POH#_c}hZc0XAn0K6v`#<_( Bs^tIx delta 2871 zcma)8d016t9)8a~=iGe}#BsqChk;N*0Tsao5mYSTx>RClD#(pRyq5$;K)EDJM3&Gs zm1PKx%%w2pVcY^qnHj~AFiZ!l877%(9Ho3zY_xD*z2;+$f6RHF`@G-xJKy(P-rsWW zx_WW@5wXP0-UJ{3sC*8PN&%lI0eK%VD-@XN3#cl9XaCG2alnERlqUhn(}1&4klMU} z;en7kUI0eqK)T{jyy?VOZ$REC0U_CtD|voWJ>>UmfaV2I?iP7J1FCt`0sGlbxJ0+ICyEUg0OK8f+?3xJ$LL~dyYgj^?X2tv$T z-_wEZh}ohgp2n=y9H8DEb60=FAm4Q2njp+8P6Zk_A~q!lb~OHg`SmoUzlMd%V&IgB z^q;7pyc5|wMghN_i`<=dKzkT#tmVL=aoDzc2=H1cT8=FOhRnv7?o?P=h@L-o15b?< zG}Si%w<=-iATls&vf!il1TyakflDp}MJI%@dDL@!f-u3QmWn407p5*8PrCOB=JUMJ z_q?#=`5mO@Qy~FHAkZdQLm2twSmD(d=umuEV=R(STsueqJwZMP^#hE3<32!PctUWWl_ zsOLCyIzyan_Fy1m#HourfQ1cW*^hK2tW&I7w1LIAUOb{_?i=okEnB(wEf8B(7C_hL z#KJbQqkA(TUKKCL(&5nSV)tt5kGmxPaA*!N9+GJ>Q+=dYvJcE?1l*@flMhY<4(CY` zW>T2>qBQdibLbN-S@w-$wbn?>bc}REos{(xsk9!KR@bxw{rsh(AW}ItPujal0Dd!A zdf)e5VvMw}AQq@-k?JblfY~k5$5)0^{{^Wz+l$Q2md?8}(AnvBS@@g=`b5g(zuyLo z&X+@4Sj8nh@`PmOG`vv`zhMSkuE|lI=U5w+@}j(Y)S%DioF7Ps z_KuSa^2tQgC3#y24ZavFmtW_(?OWuEBI=*CUaoyrW@>+uk0jASjsG(Zft)#-IPN`f=*d1d(RZWa!YE0WyF&(YI#4gpmlC?l~ugVgT!gf5R z${lJ1{KHfQZ%+aG=co#!2eQ51SH1SPA;6ZIs?sBTuR5XHyYUj+A7&@^@2GPvWbc>XV?wy z8u$0uwoPFg@6&Y9w_Y=T;Zk6vk0u&-f#;ev8Rlk=>Ud50XX98?X`1Rulo$5XdKcIk zY0)69Z>&RtU2AnHnvU8KQry7Kl2R`WnzrDiNC+@m|0&l;HT zt2_A>4MzIwE|i&pcXsJIvb$NVsk)0Z-=ZP2?usivY_GKIu6VH64+QJ|=h5zz{d#+t z@4ZMb>F2Lq#(^gxkIKju#+g0Eq;RfrHb{ASrg77El$+-os}}^bk9QgWQW?Vj zf6~}Gnr+76eIFHncVcdU6APn_9p-gF))Xi1=xgjuTm%e0WBhK;?>OqaOo7&wKf%U$W2VDZ)AocOUi^RKfkaqwRejH4C4VZf0FT7@ zY{yIC{f70q|2`Quo=M@U_=l&I0UpV=l`9cX{tv%4wsE~tP1Z_w=N`Ti9&R9 zxD@-<4KFu`*+;W|y|MM4`u}nzj)*FaK|s@BM+;BkJlrT|6^$fNAF{wiI0^! zg)HEQ&vOq~EPp%uKN+InN16j$ymqUHb6uFRnXgzcR#OU*F%c zy{zvvXcE%mmo7_7$;fn_zC1o9EiyjSk` EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -247,120 +247,115 @@ Please type the desired email address (including @mailchuck.com) below: 1 hour - 1 hodina - - - - %1 hours - + 1 hodina %1 days - %1 dní + %1 dní - + Waiting for their encryption key. Will request it again soon. Čekám na šifrovací klíč. Požadavek bude brzy vyslán znovu. - + Encryption key request queued. Požadavek na šifrovací klíč zařazen do fronty. - + Queued. Zařazeno do fronty. - + Message sent. Waiting for acknowledgement. Sent at %1 Zpráva odeslána. Čekám na potvrzení. Odesláno v %1 - + Message sent. Sent at %1 Zpráva odeslána. Odesláno v %1 - + Need to do work to send message. Work is queued. Pro poslání zprávy musím provést práci. Práce byla zařazena do fronty. - + Acknowledgement of the message received %1 Potvrzení o přijetí zprávy %1 - + Broadcast queued. Rozeslání zařazeno do fronty. - + Broadcast on %1 Rozesláno v %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problém: Obtížnost práce požadovaná adresátem je vyšší než Vámi povolené maximum. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problém: Šifrovací klíč adresáta je nepoužitelný. Zprávu nelze zašifrovat. %1 - + Forced difficulty override. Send should start soon. Vyžádáno odeslání navzdory obtížnosti. Zpráva bude brzy odeslána. - + Unknown status: %1 %2 Neznámý stav: %1 %2 - + Not Connected Nepřipojeno - + Show Bitmessage Ukázat Bitmessage - + Send Poslat - + Subscribe Přihlásit se k odběru - + Channel - + Quit Ukončit - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Své klíče můžete spravovat editováním souboru keys.dat, který najdete ve stejném adresáři jako tento program. Je důležité si tento soubor zazálohovat. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -369,17 +364,17 @@ It is important that you back up this file. Je důležité si tento soubor zazálohovat. - + Open keys.dat? Otevřít soubor keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Své klíče můžete spravovat editováním souboru keys.dat, který najdete ve stejném adresáři jako tento program. Je důležité si tento soubor zazálohovat. Přejete si tento soubor nyní otevřít? (Nezapomeňte zavřít Bitmessage předtím, než provedete jakékoli změny.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -388,122 +383,122 @@ It is important that you back up this file. Would you like to open the file now? Je důležité si tento soubor zazálohovat. Přejete si tento soubor nyní otevřít? (Nezapomeňte zavřít Bitmessage předtím, než provedete jakékoli změny.) - + Delete trash? Smazat obsah koše? - + Are you sure you want to delete all trashed messages? Opravdu chcete smazat všechny zprávy v koši? - + bad passphrase špatné heslo - + You must type your passphrase. If you don't have one then this is not the form for you. Musíte napsat své heslo. Pokud žádné nemáte, pak tento formulář není pro Vás. - + Bad address version number Špatné číslo verze adresy - + Your address version number must be a number: either 3 or 4. Verze Vaší adresy musí být číslo: buď 3 nebo 4. - + Your address version number must be either 3 or 4. Verze Vaší adresy musí být buď 3 nebo 4. - + Chan name needed Je třeba zadat jméno kanálu - + You didn't enter a chan name. Nezadal(a) jste jméno kanálu. - + Address already present Adresa je již přítomna - + Could not add chan because it appears to already be one of your identities. Nelze přidat kanál. Zdá se, že ho již máte mezi svými identitami. - + Success Úspěch - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Kanál byl úspěšně vytvořen. Když chcete jiným lidem povolit připojit se k Vašemu kanálu, řekněte jim jméno kanálu a tuto adresu Bitmessage: %1. Tuto adresu také najdete v sekci "Vaše identity". - + Address too new Adresa je příliš nová - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Tato adresa Bitmessage může být platná, je to však adresa vyšší verze, se kterou neumíme pracovat. Možná byste měl(a) aktualizovat Bitmessage. - + Address invalid Adresa je neplatná - + That Bitmessage address is not valid. Toto není platná adresa Bitmessage. - + Address does not match chan name Adresa nepatří ke jménu kanálu - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Adresa Bitmessage, kterou jste zadal(a), je sice platná, nepatří však ke kanálu s tímto jménem. - + Successfully joined chan. Úspěšně jste se připojil(a) ke kanálu. - + Connection lost Připojení ztraceno - + Connected Připojeno - + Message trashed Zpráva byla vyhozena do koše - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -511,122 +506,122 @@ Je důležité si tento soubor zazálohovat. Přejete si tento soubor nyní otev - + Message too long Zpráva je příliš dlouhá - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. Zpráva, kterou se snažíte poslat, je o %1 bajtů delší, než je dovoleno. (Maximum je 261644 bajtů). Zkuste ji prosím před odesláním zkrátit. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 Chyba: Adresy Bitmessage začínají na BM- Zkontroluje prosím %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Chyba: Adresa %1 nebyla správně opsána nebo zkopírována. Zkontrolujte ji prosím. - + Error: The address %1 contains invalid characters. Please check it. Chyba: Adresa %1 obsahuje neplatné znaky. Zkontrolujte ji prosím. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Chyba: Verze adresy %1 je příliš vysoká. Buď používáte starou verzi Bitmessage a je čas na aktualizaci, nebo si Váš známý dělá legraci. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Chyba: Některá data zakódovaná v adrese %1 jsou příliš krátká. Možná je to chyba softwaru, který Váš známý používá. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Chyba: Některá data zakódovaná v adrese %1 jsou příliš dlouhá. Možná je to chyba softwaru, který Váš známý používá. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. Chyba: Některá data zakódovaná v adrese %1 mají neplatný formát. Možná je to chyba softwaru, který Váš známý používá. - + Error: Something is wrong with the address %1. Chyba: Nastal problém s adresou %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Chyba: V poli "Od" musíte uvést adresu. Pokud žádnou nemáte, klikněte na kartu "Vaše identity". - + Address version number Číslo verze adresy - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Co se týče adresy %1, Bitmessage nerozumí jejímu číslu verze "%2". Možná byste měl(a) aktualizovat Bitmessage na nejnovější verzi. - + Stream number Číslo proudu - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Co se týče adresy %1, Bitmessage neumí zpracovat její číslo proudu "%2". Možná byste měl(a) aktualizovat Bitmessage na nejnovější verzi. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Varování: Nyní nejste připojen(a). Bitmessage provede práci potřebnou k pro odeslání zprávy, ale neodešle ji, dokud se nepřipojíte. - + Message queued. - + Your 'To' field is empty. Pole "Komu" je prázdné. - + Right click one or more entries in your address book and select 'Send message to this address'. Klikněte pravým tlačítkem na jeden nebo více záznamů v adresáři, a vyberte "Poslat zprávu na tuto adresu". - + Fetched address from namecoin identity. Adresa načtena z namecoinové identity. - + New Message Nová zpráva - + From Od - + Sending email gateway registration request @@ -641,431 +636,426 @@ Je důležité si tento soubor zazálohovat. Přejete si tento soubor nyní otev Zadaná adresa je neplatná, ignoruji jí. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Chyba: Nemůžete do adresáře přidat adresu, která tam již je. Můžete ale tu existující přejmenovat. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Restart - + You must restart Bitmessage for the port number change to take effect. Je třeba restartovat Bitmessage, aby se změna portu projevila. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage bude od teď používat Váš proxy server. Bude ale jistější, když nyní Bitmessage restartujete, abyste zavřel(a) všechna aktivní připojení (pokud nějaká jsou). - + Number needed Je třeba zadat číslo - + Your maximum download and upload rate must be numbers. Ignoring what you typed. Limity pro rychlost stahování a odesílání musejí být čísla. Vámi zadané hodnoty nelze použít. - + Will not resend ever Nikdy nebude nic posláno znovu - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Všimněte si, že časový limit, který jste zadal(a), je menší, než čas po kterém Bitmessage poprvé zkusí opětovné odeslání, proto Vaše zprávy nebudou nikdy poslány znovu. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch Hesla nejsou stejná - + The passphrase you entered twice doesn't match. Try again. Zadaná hesla nejsou stejná. Zkuste to znovu. - + Choose a passphrase Zvolte heslo - + You really do need a passphrase. Opravdu je nutné zvolit heslo. - + Address is gone Adresa je pryč - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage nemůže najít Vaši adresu %1. Možná jste ji odstranil(a)? - + Address disabled Adresa je vypnutá - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Chyba: Adresa, ze které se snažíte poslat zprávu, je vypnutá. Před použitím ji musíte zapnout na kartě "Vaše identity". - + Entry added to the Address Book. Edit the label to your liking. Položka byla přidána do adresáře. Popisku můžete upravit dle svého přání. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. Položky byly přesunuty do koše. - + Undeleted item. - + Save As... Uložit jako... - + Write error. Chyba zápisu. - + No addresses selected. Není vybrána žádná adresa. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? Opravdu chcete odstranit tento avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? Pro tuto adresu již avatar máte. Opravdu ho chcete přepsat? - + Start-on-login not yet supported on your OS. Spuštění po přihlášení není zatím na Vašem operačním systému podporováno. - + Minimize-to-tray not yet supported on your OS. Minimalizace na lištu není zatím na Vašem operačním systému podporována. - + Tray notifications not yet supported on your OS. Upozornění v liště nejsou zatím na Vašem operačním systému podporována. - + Testing... Zkouším... - + This is a chan address. You cannot use it as a pseudo-mailing list. Toto je adresa kanálu. Není možné ji použít jako pseudo-mailing list. - + The address should start with ''BM-'' Adresa by měla začínat "BM-" - + The address is not typed or copied correctly (the checksum failed). Adresa nebyla správně opsána nebo zkopírována (kontrolní součet nesouhlasí). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Verze této adresy je vyšší než s jakou tento software umí pracovat. Prosím aktualizujte Bitmessage. - + The address contains invalid characters. Adresa obsahuje neplatné znaky. - + Some data encoded in the address is too short. Některá data zakódovaná v této adrese jsou příliš krátká. - + Some data encoded in the address is too long. Některá data zakódovaná v této adrese jsou příliš dlouhá. - + Some data encoded in the address is malformed. Některá data zakódovaná v této adrese mají neplatný formát. - + Enter an address above. Zadejte adresu výše. - + Address is an old type. We cannot display its past broadcasts. Toto je starý typ adresy. Neumíme zobrazit její rozesílané zprávy. - + There are no recent broadcasts from this address to display. Z této adresy nebyly v poslední době rozesílány žádné zprávy. - + You are using TCP port %1. (This can be changed in the settings). Používáte TCP port %1. (To lze změnit v nastavení). - + Bitmessage Bitmessage - + Identities - + New Identity - + Search Hledej - + All Vše - + To Komu - + From Od - + Subject Předmět - + Message Zpráva - + Received Doručeno - + Messages - + Address book - + Address Adresa - + Add Contact - + Fetch Namecoin ID Načíst Namecoin ID - + Subject: Předmět: - + From: Od: - + To: Komu: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions Odběry - + Add new Subscription Přidat nový odběr - + Chans - + Add Chan - + File Soubor - + Settings Nastavení - + Help Nápověda - + Import keys Importovat klíče - + Manage keys Správa klíčů - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About O aplikaci - + Regenerate deterministic addresses Obnovit deterministické adresy - + Delete all trashed messages Smazat všechny zprávy v koši - + Join / Create chan Připojit ke kanálu / Vytvořit kanál @@ -1090,55 +1080,73 @@ Are you sure you want to delete the channel? Přidat novou položku - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + + %n day(s) + + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1514,7 +1522,7 @@ Možnost "Náhodné číslo" je nastavena jako výchozí, deterministi - + Network Status Stav sítě diff --git a/src/translations/bitmessage_da.qm b/src/translations/bitmessage_da.qm index b2dae4c094e1e245913a7c7546fafd46663f46fe..b76f1f14ac32b1367ff5148ee2642e6956e1a127 100644 GIT binary patch delta 2530 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 NvmX1hi~-36;s3)zMZo|7 diff --git a/src/translations/bitmessage_da.ts b/src/translations/bitmessage_da.ts index 631366a5..429194f3 100644 --- a/src/translations/bitmessage_da.ts +++ b/src/translations/bitmessage_da.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: Registrering mislykkedes: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -247,120 +247,120 @@ Please type the desired email address (including @mailchuck.com) below: 1 hour - 1 time + 1 time %1 hours - %1 timer + %1 timer %1 days - %1 dage + %1 dage - + Waiting for their encryption key. Will request it again soon. Venter på krypteringsnøgle. Vil snart efterspørge den igen. - + Encryption key request queued. Efterspørgsel på krypteringsnøgle er sat i kø. - + Queued. Sat i kø. - + Message sent. Waiting for acknowledgement. Sent at %1 Besked afsendt. Afventer bekræftelse på modtagelse. Sendt %1 - + Message sent. Sent at %1 Besked sendt. Sendt %1 - + Need to do work to send message. Work is queued. Skal foretage beregning for at sende besked. Beregningen er sat i kø. - + Acknowledgement of the message received %1 Bekræftelse på modtagelse er modtaget %1 - + Broadcast queued. Afsendelse sat i kø. - + Broadcast on %1 Afsendt %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problem: Beregningen som kræves af modtageren er mere besværlig end du accepterer. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problem: Modtagerens krypteringsnøgle virker ikke. Beskeden kunne ikke krypteres. %1 - + Forced difficulty override. Send should start soon. Ændring af sværhedsgrad gennemtvunget. Afsendelse bør starte snart. - + Unknown status: %1 %2 Ukendt status: %1 %2 - + Not Connected Ikke forbundet - + Show Bitmessage Vis Bitmessage - + Send Send - + Subscribe Abonnér - + Channel Kanal - + Quit Afslut - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Du kan administrere dine nøgler ved at redigere keys.dat-filen i samme mappe som dette program. Det er vigtigt at tage backup af denne fil. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -369,17 +369,17 @@ It is important that you back up this file. Det er vigtigt at tage backup af denne fil. - + Open keys.dat? Åbn keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Du kan administrere dine nøgler ved at redigere keys.dat-filen i samme mappe som dette program. Det er vigtigt at tage backup af denne fil. Vil du åbne denne fil nu? (Sørg for at lukke Bitmessage før du foretager ændringer.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -388,122 +388,122 @@ It is important that you back up this file. Would you like to open the file now? Det er vigtigt at tage backup af denne fil. (Sørg for at lukke Bitmessage før du foretager ændringer.) - + Delete trash? Slet papirkurv? - + Are you sure you want to delete all trashed messages? Er du sikker på at du vil slette alle beskeder i papirkurven? - + bad passphrase ugyldigt kodeord - + You must type your passphrase. If you don't have one then this is not the form for you. Du skal indtaste dit kodeord. Hvis du ikke har et så er dette ikke den rette dialogboks. - + Bad address version number Ugyldig addresse-version - + Your address version number must be a number: either 3 or 4. Din addresse-version skal være enten 3 eller 4. - + Your address version number must be either 3 or 4. Din addresse-version skal være enten 3 eller 4. - + Chan name needed Kanalnavnet er påkrævet - + You didn't enter a chan name. Du indtastede ikke et kanalnavn. - + Address already present Adressen eksisterer allerede - + Could not add chan because it appears to already be one of your identities. Adressen kunne ikke tilføjes da det ser ud tilat den allerede er en af dine identiteter. - + Success Succes - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Ny kanal oprettet. For at andre kan blive medlem skal du oplyse dem kanalnavnet og denne Bitmessage-adresse: %1. Denne adresse vises også i 'Dine identiteter'. - + Address too new Adressen er for ny - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Selvom denne Bitmessage-adresse måske er gyldig, er dens versionsnummer for nyt. Måske bør du opgradere Bitmessage. - + Address invalid Adressen er ugyldig - + That Bitmessage address is not valid. Denne Bitmessage-adresse er ikke gyldig. - + Address does not match chan name Adressen stemmer ikke overens med kanalnavnet - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Selvom denne Bitmessage-adresse er gyldig stemmer den ikke overens med kanalnavnet. - + Successfully joined chan. Du er nu medlem af kanalen - + Connection lost Forbindelse afbrudt - + Connected Forbundet - + Message trashed Beskeden er flyttet til papirkurven - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -511,122 +511,122 @@ Det er vigtigt at tage backup af denne fil. (Sørg for at lukke Bitmessage før - + Message too long Beskeden er for lang - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. Beskeden som du prøver at sende er %1 byte for lang. (Den maksimale størrelse er 261644 byte). Prøv at gøre den kortere før afsendelsen. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 Fejl: Bitmessage-adresser starter med BM- Check %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Fejl: Adressen %1 er skrever eller kopieret forkert. Tjek den venligst. - + Error: The address %1 contains invalid characters. Please check it. Fejl: Adressen %1 indeholder ugyldige tegn. Tjek den venligst. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. Fejl: Der er noget galt med adressen %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Fejl: Du skal angive en afsenderadresse. Hvis du ikke har nogen skal du gå til fanen 'Dine Identiteter'. - + Address version number Adresseversion - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Vedrørende adressen %1, Bitmessage forstår ikke addreseversion %2. Måske bør du opgradere Bitmessage til den nyeste version. - + Stream number Flodversion - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Vedrørende adressen %1, Bitmessage kan ikke håndtere flod nummer %2. Måske bør du opgradere Bitmessage til den nyeste version. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Advarsel: Du har ingen forbindelse. Bitmessage vil foretage nødvendige beregninger for at afsende beskeder, men de vil først blive afsendt når du opretter forbindelse. - + Message queued. Besked sat i kø. - + Your 'To' field is empty. Du har ikke angivet en modtager. - + Right click one or more entries in your address book and select 'Send message to this address'. Højreklik på en eller flere adresser i din adressebog og vælg 'Send besked til denne adresse'. - + Fetched address from namecoin identity. Adresse blev hentet fra namecoin-identitet. - + New Message Ny Besked - + From Fra - + Sending email gateway registration request Sender tilmeldelses-forespørgsel til email gateway @@ -641,142 +641,142 @@ Det er vigtigt at tage backup af denne fil. (Sørg for at lukke Bitmessage før Adressen som du har indtastet er ugyldig og vil derfor blive ignoreret. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Fejl: Du kan ikke tilføje den samme adresse til din adressebog flere gange. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Genstart - + You must restart Bitmessage for the port number change to take effect. Bitmessage skal genstartes før ændringen af portnummeret træder i kraft. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage vil benytte en proxy fra nu af, men hvis du ønsker at afbryde eventuelle eksisterende forbindelser skal du genstarte Bitmessage manuelt. - + Number needed Et tal er nødvendigt - + Your maximum download and upload rate must be numbers. Ignoring what you typed. De maksimale download- og upload-hastigheder skal være tal. Det du har indtastet vil blive ignoreret. - + Will not resend ever Vil aldrig gensende - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Bemærk at den tidsgrænse du har indtastet er kortere end den tid som Bitmessage venter inden første genafsendelsesforsøg, og dine beskeder vil derfor aldrig blive genafsendt. - + Sending email gateway unregistration request Sender afmeldelses-forespørgsel til email gateway - + Sending email gateway status request Sender status-forespørgsel til email gateway - + Passphrase mismatch Kodeordene stemmer ikke overens - + The passphrase you entered twice doesn't match. Try again. De to kodeord er ikke ens. Prøv igen. - + Choose a passphrase Vælg et kodeord - + You really do need a passphrase. Du kan ikke undlade at indtaste et kodeord. - + Address is gone Adressen er forsvundet - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage kan ikke finde din adresse %1. Måske har du fjernet den? - + Address disabled Addresse slået fra - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Fejl: Adressen som du prøver at sende fra er deaktiveret. Du skal aktivere den fra fanen 'Dine Identiteter'. - + Entry added to the Address Book. Edit the label to your liking. Adresse tilføjet til adressebogen. Rediger navnet som du ønsker. - + Entry added to the blacklist. Edit the label to your liking. Adresse tilføjet til din blacklist. Rediger navnet som du ønsker. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. Fejl: Den samme adresse kan ikke tilføjes til din sortliste flere gange. Prøv eventuelt at omdøbe den eksisterende. - + Moved items to trash. Beskeder blev flyttet til papirkurven. - + Undeleted item. Besked gendannet. - + Save As... Gem Som... - + Write error. Skrivefejl. - + No addresses selected. Ingen adresser valgt. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? @@ -785,7 +785,7 @@ Are you sure you want to delete the subscription? Er du sikker på at du vil slette dette abonnement? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? @@ -794,282 +794,282 @@ Are you sure you want to delete the channel? Er du sikker på at du vil slette denne kanal? - + Do you really want to remove this avatar? Vil du virkelig fjerne dette ikon? - + You have already set an avatar for this address. Do you really want to overwrite it? Du har allerede valgt et ikon for denne adresse. Er du sikker på at du vil erstatte det? - + Start-on-login not yet supported on your OS. Automatisk start er endnu ikke understøttet på din platform. - + Minimize-to-tray not yet supported on your OS. Minimering til systembakken er endnu ikke understøttet på din platform. - + Tray notifications not yet supported on your OS. Systembakkenotifikationer er endnu ikke understøttet på din platform. - + Testing... Tester... - + This is a chan address. You cannot use it as a pseudo-mailing list. Dette er en kanaladresse. Den kan ikke benyttes som en pseudo-mailing-liste. - + The address should start with ''BM-'' Adressen bør starte med "BM-" - + The address is not typed or copied correctly (the checksum failed). DU har indtastet eller kopieret adressen forkert (checksummen passer ikke) - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Versionsnummeret for denne adresse er højere end hvad der understøttes af denne softwareversion. Opgrader venligst Bitmessage. - + The address contains invalid characters. Adressen indeholder ugyldige tegn. - + Some data encoded in the address is too short. Nogle af dataene som er indkodet i adressen, er for korte. - + Some data encoded in the address is too long. Nogle af dataene som er indkodet i adressen, er for lange. - + Some data encoded in the address is malformed. Nogle af dataene som er indkodet i adressen er ugyldige. - + Enter an address above. Vælg en adresse ovenfor. - + Address is an old type. We cannot display its past broadcasts. Adressen er af en gammel type. Dens broadcast-beskeder kan ikke vises. - + There are no recent broadcasts from this address to display. Der blev ikke fundet nogen broadcast-beskeder fra denne adresse - + You are using TCP port %1. (This can be changed in the settings). Du bruger TCP-port %1. (Dette kan ændres i indstillingerne). - + Bitmessage Bitmessage - + Identities Identiteter - + New Identity Ny identitet - + Search Søg - + All Alle - + To Til - + From Fra - + Subject Emne - + Message Besked - + Received Modtaget - + Messages Beskeder - + Address book Adressebog - + Address Adresse - + Add Contact Tilføj Kontakt - + Fetch Namecoin ID Hent Namecoin ID - + Subject: Emne: - + From: Fra: - + To: Til: - + Send ordinary Message Send almindelig besked - + Send Message to your Subscribers Send besked til dine abonnenter - + TTL: TTL: - + X days - X dage + X dage - + Subscriptions Abonnementer - + Add new Subscription Tilføj nyt abonnement - + Chans Kanaler - + Add Chan TIlføj kanal - + File Filer - + Settings Indstillinger - + Help Hjælp - + Import keys Importer nøgler - + Manage keys Administrér nøgler - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support Kontakt support - + About Om - + Regenerate deterministic addresses Regenerér deterministiske addresser - + Delete all trashed messages Tøm papirkurv - + Join / Create chan Opret/bliv medlem af en kanal @@ -1094,55 +1094,71 @@ Er du sikker på at du vil slette denne kanal? Tilføj ny addresse - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1518,7 +1534,7 @@ Som standard er tilfældige tal valgt, men der er både fordele og ulemper ved a - + Network Status Netværksstatus diff --git a/src/translations/bitmessage_de.qm b/src/translations/bitmessage_de.qm index a4bfeb2b5da12c344309a3a954633d2b54fecab6..40a5eba25af483b9034d3c144dead93ca32ce168 100644 GIT binary patch delta 2833 zcmX9=Yd{ob7k*}UW_EUFc2@9yL%cvrgoIaA@P;>pwNkm5A#oAJgp8D%uo#+(s2FH~ zgo@-9u_O^u&=iX(RuF^GBn&V=!$niU_`H0_Z+|^I^S=AO=RD^*&zbsv*q48^>3xi) z0Nw^3ZU)%hfbS82I|Y0Z0L*s;96ke<{0OYt0=(})?^A$q4=@hzgRQj#{EEOfeE|4B z0o&mWEL&&61_4|e3w-hwxU3!^WeK=k4`6*WxWWQ3gFC>LZUbW+?g;*vnhx9ojn5py zf1sUnjxIa}t2vK>i@~t^_6wk`2qWuXQZNea1$Q7l7;g?T0oz*PvO5phtHPuP3a-)_ zQ~R5NrSX`zw-OjpW5JqRSa5GKFs=sPdmd7tL*czwgb~XYU{ORo7^wvB#aYN> z*=2zA5?xm*qwT?r_P`UswS*Zqh^Sr3GsDN81EWc0M$03C@*|8(;CFWcE*zM_ zOtC5=$~~Bw%O?S;zcPjf`rqVDOrU>0P%Sb+Fe*UA119`A{judP6X{A+#>X<-KA;Sa zgfYAOny7Xa%)XPvfNd>vzCaDc>}1Nv9RpO27IdG*^t2FhpWR_zsb&MChN<{HlxgxI z)tl3sf#8R#w_1pqh(jvp7}C?1Kdat;M)-%LYO1kiBM|af6+YuBQG8gnW@{wia$l8r zj~JOhSGD6~Gq7)(YJXrGU{|I(yqwnkhNuol6#?$oR7cu>0wc7kY69u`(?nHc;uR{{ zT-8nGL*UPQs=I77@WU3>gT4KMG5=A^X&jglN7cHz(}&&3f8jYhzlOBn`wJU-%89zBlwB^yk8`c2c51fe zri7C=jOE;{Ck9}mKew>u28qp+3rIQxBye1aFO?!%%SGiC(|x~i$u1`9e{AGZl0(4^ z=*MNbjsXgknu#pdYNz^}d=GUx@r2hZn z1RwRQ3)N~Izb>6rK42lgbvunBMDYM2W{wjXP`Qv0 zN`W|b38{yc0cVE_yB$cJg@TZAi2^$sDV(;ZbJ`{0g5ON)_dUXe^X@bgmI~EJE2&-Q z2|pW+He?tH!p+YkNhJQl&1`!1zAm)g4glVZ5gzp90n>vlc=e#r_1RjYexLCCHsQ=O z+CFy|lX2x}2OlB-=)YEL|MMgAlUS`wRvZnoT~ z0r=h08Z&yaKx~XQ=hq3O-i_Ma65812r9Ci>Hk!WCetU2ciSCZ}-je53v;Cs9mP87( z*gMn&sK<#Tm^NT!ooJsz%-wJleYO>n%5%h!9AaQ(ni$&QMOs)bhKCT-Lneq3Ep*St zAr^dk-Y9OE><(lb#Ul3}GLYNiIq3-n(oZ~>`7cM)0jW=R`IqMVj5iRwCF?GR}|4lz60PqKefK@ON9jV>o< zr(c(x`6S@DQIV$i9thOUk_?`yK!t+^pOi@NzB)#cLkdoy+O^)1w#TOs?w8Up-lPCM zrJVZN)TWY@s~t}@y)IQHuL5!(NmYMRAlv3jjoAj^S%cIRXD0FfE!~{IhXQbuS`Je8 zH2)=aSieE%)ZdXhY^jemX4(0*2sf0;GaO%2)F}HUt|rf)EQdT@LG9TthwjY-PVSOd zpPWUWpDTa7;43h_7s=bNrjrH+%9+y#k+=U>&J6M-ht$c(Vu`_($?|D8g`BQlKK)v2 zJ8#LQQKX5>SLO3eH1&Uc<^O*$12X0EJ`{1MlUy4?_+zzPr#I8onkF|r9SX)eOTLv* zPxHQA?p{KHEO3##>uKGqk50IIhDvctr_812d0*)Ue?*!n@zRY7zC!I;sI$+GCPV6_ zdn@BO@RL#J;lF^y*-y9PXtt3unW$Ucl>{8N(?uD{fR6Efy+N^8a z6$B(z>7F&x0ji<8f5T@0^`e4Hbm5~n6k&jYrrkG z4Si{K=ogky!r`ob(c%Jk;A=~uM+?R02@A`H(>VjBF-?L*AS$7lJ=bLsJx;jJg3@K$qMrYHI49>Y% oafZ{*xy2FdUOE+L7xbN~P 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 EmailGatewayRegistrationDialog - + Registration failed: Registrierung fehlgeschlagen: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: Die gewünschte E-Mailaddresse ist nicht verfügbar, bitte probieren Sie eine neue. Die gewünschte E-Mailaddresse (inkl. @mailchuck.com) unten ausfüllen: @@ -293,120 +293,120 @@ Bitte füllen Sie die gewünschte E-Mail-Address (inkl. @mailchuck.com) unten: 1 hour - 1 Stunde + 1 Stunde %1 hours - %1 Stunden + %1 Stunden %1 days - %1 Tage + %1 Tage - + Waiting for their encryption key. Will request it again soon. Warte auf den Verschlüsselungscode. Wird bald erneut angefordert. - + Encryption key request queued. Verschlüsselungscode-Anforderung steht aus. - + Queued. In Warteschlange. - + Message sent. Waiting for acknowledgement. Sent at %1 Nachricht gesendet. Warte auf Bestätigung. Gesendet %1 - + Message sent. Sent at %1 Nachricht gesendet. gesendet am %1 - + Need to do work to send message. Work is queued. Es muss Arbeit verrichtet werden um die Nachricht zu versenden. Arbeit ist in Warteschlange. - + Acknowledgement of the message received %1 Bestätigung der Nachricht erhalten %1 - + Broadcast queued. Rundruf in Warteschlange. - + Broadcast on %1 Rundruf um %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problem: Die vom Empfänger geforderte Arbeit ist schwerer als Sie bereit sind, zu berechnen. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problem: Der Verschlüsselungscode des Empfängers ist nicht in Ordnung. Nachricht konnte nicht verschlüsselt werden. %1 - + Forced difficulty override. Send should start soon. Schwierigkeitslimit überschrieben. Senden sollte bald beginnen. - + Unknown status: %1 %2 Unbekannter Status: %1 %2 - + Not Connected Nicht verbunden - + Show Bitmessage Bitmessage anzeigen - + Send Senden - + Subscribe Abonnieren - + Channel Chan - + Quit Schließen - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Sie können Ihre Schlüssel verwalten, indem Sie die keys.dat Datei bearbeiten, die im gleichen Ordner wie das Programm liegt. Es ist wichtig, dass Sie diese Datei sichern. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -415,17 +415,17 @@ It is important that you back up this file. Es ist wichtig, dass Sie diese Datei sichern. - + Open keys.dat? Datei keys.dat öffnen? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Sie können Ihre Schlüssel verwalten, indem Sie die keys.dat Datei bearbeiten, die im gleichen Ordner wie das Programm liegt. Es ist wichtig, dass Sie diese Datei sichern. Möchten Sie die Datei jetzt öffnen? (Stellen Sie sicher, dass Bitmessage geschlossen ist, bevor Sie etwas ändern.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -435,122 +435,122 @@ Es ist wichtig, dass Sie diese Datei sichern. Möchten Sie die Datei jetzt öffn (Stellen Sie sicher, dass Bitmessage geschlossen ist, bevor Sie etwas ändern.) - + Delete trash? Papierkorb leeren? - + Are you sure you want to delete all trashed messages? Sind Sie sicher, dass Sie alle Nachrichten im Papierkorb löschen möchten? - + bad passphrase Falscher Passwort-Satz - + You must type your passphrase. If you don't have one then this is not the form for you. Sie müssen Ihren Passwort-Satz eingeben. Wenn Sie keinen haben, ist dies das falsche Formular für Sie. - + Bad address version number Falsche Addressenversionnummer - + Your address version number must be a number: either 3 or 4. Die Addressenversionnummer muss eine Zahl sein, entweder 3 oder 4. - + Your address version number must be either 3 or 4. Die Addressenversionnnummer muss entweder 3 oder 4 sein. - + Chan name needed Chan name benötigt - + You didn't enter a chan name. Sie haben keinen Chan-Namen eingegeben. - + Address already present Adresse bereits vorhanden - + Could not add chan because it appears to already be one of your identities. Chan konnte nicht erstellt werden, da es sich bereits um eine Ihrer Identitäten handelt. - + Success Erfolgreich - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Chan erfolgreich erstellt. Um andere diesem Chan beitreten zu lassen, geben Sie ihnen den Chan-Namen und die Bitmessage-Adresse: %1. Diese Adresse befindet sich auch unter "Ihre Identitäten". - + Address too new Adresse zu neu - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Obwohl diese Bitmessage-Adresse gültig ist, ist ihre Versionsnummer zu hoch um verarbeitet zu werden. Vermutlich müssen Sie eine neuere Version von Bitmessage installieren. - + Address invalid Adresse ungültig - + That Bitmessage address is not valid. Diese Bitmessage-Adresse ist nicht gültig. - + Address does not match chan name Adresse stimmt nicht mit dem Chan-Namen überein - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Obwohl die Bitmessage-Adresse die Sie eingegeben haben gültig ist, stimmt diese nicht mit dem Chan-Namen überein. - + Successfully joined chan. Chan erfolgreich beigetreten. - + Connection lost Verbindung verloren - + Connected Verbunden - + Message trashed Nachricht in den Papierkorb verschoben - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -558,122 +558,122 @@ Es ist wichtig, dass Sie diese Datei sichern. Möchten Sie die Datei jetzt öffn Der Ablauf, oder Time-To-Live, ist die Dauer, für die das Netzwerk die Nachricht speichern wird. Der Empfänger muss es während dieser Zeit empfangen. Wenn Ihr Bitmessage-Client keine Empfangsbestätigung erhält, wird die Nachricht automatisch erneut verschickt. Je länger die Time-To-Live, desto mehr Arbeit muss Ihr Rechner verrichten, um die Nachricht zu senden. Ein Time-To-Live von vier oder fünf Tage ist meist ausreichend. - + Message too long Narchricht zu lang - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. Die Nachricht, die Sie versuchen zu senden ist %1 Byte zu lange. (Maximum 261.644 Bytes). Bitte kürzen Sie sie vor dem Senden ab. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. Fehler: Ihr Konto war an keiner E-Mailschnittstelle registriert. Registrierung als %1 wird versandt, bitte vor einem erneutem Sendeversuch auf die Registrierungsverarbeitung warten. - + Error: Bitmessage addresses start with BM- Please check %1 Fehler: Bitmessage Adressen starten mit BM- Bitte überprüfen Sie %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Fehler: Die Adresse %1 wurde nicht korrekt getippt oder kopiert. Bitte überprüfen. - + Error: The address %1 contains invalid characters. Please check it. Fehler: Die Adresse %1 beinhaltet ungültig Zeichen. Bitte überprüfen. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Fehler: Die Adressversion von %1 ist zu hoch. Entweder Sie müssen Ihre Bitmessage Software aktualisieren oder Ihr Bekannter ist sehr clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Fehler: Einige Daten die in der Adresse %1 codiert sind, sind zu kurz. Es könnte sein, dass etwas mit der Software Ihres Bekannten nicht stimmt. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Fehler: Einige Daten die in der Adresse %1 codiert sind, sind zu lang. Es könnte sein, dass etwas mit der Software Ihres Bekannten nicht stimmt. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. Fehler: Einige codierte Daten in der Adresse %1 sind ungültig. Es könnte etwas mit der Software Ihres Bekannten sein. - + Error: Something is wrong with the address %1. Fehler: Mit der Adresse %1 stimmt etwas nicht. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Fehler: Sie müssen eine Absenderadresse auswählen. Sollten Sie keine haben, wechseln Sie zum Reiter "Ihre Identitäten". - + Address version number Adressversion - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Bezüglich der Adresse %1, Bitmessage kann Adressen mit der Version %2 nicht verarbeiten. Möglicherweise müssen Sie Bitmessage auf die aktuelle Version aktualisieren. - + Stream number Datenstrom Nummer - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Bezüglich der Adresse %1, Bitmessage kann den Datenstrom mit der Version %2 nicht verarbeiten. Möglicherweise müssen Sie Bitmessage auf die aktuelle Version aktualisieren. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Warnung: Sie sind aktuell nicht verbunden. Bitmessage wird die nötige Arbeit zum versenden verrichten, aber erst senden, wenn Sie verbunden sind. - + Message queued. Nachricht befindet sich in der Warteschleife. - + Your 'To' field is empty. Ihr "Empfänger"-Feld ist leer. - + Right click one or more entries in your address book and select 'Send message to this address'. Klicken Sie mit rechts auf eine oder mehrere Einträge aus Ihrem Adressbuch und wählen Sie "Nachricht an diese Adresse senden". - + Fetched address from namecoin identity. Adresse aus Namecoin Identität geholt. - + New Message Neue Nachricht - + From Von - + Sending email gateway registration request E-Mailschnittstelle-Registrierungsantrag wird versandt. @@ -688,142 +688,142 @@ Es ist wichtig, dass Sie diese Datei sichern. Möchten Sie die Datei jetzt öffn Die von Ihnen eingegebene Adresse ist ungültig, sie wird ignoriert. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Fehler: Sie können eine Adresse nicht doppelt im Adressbuch speichern. Wenn Sie möchten, benennen Sie den existierenden Eintrag um. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. Fehler: Dieselbe Addresse kann nicht doppelt in die Abonnements eingetragen werden. Alternativ können Sie die bestehende umbenennen. - + Restart Neustart - + You must restart Bitmessage for the port number change to take effect. Sie müssen Bitmessage neu starten, um den geänderten Port zu verwenden. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage wird ab sofort den Proxy-Server verwenden, aber eventuell möchten Sie Bitmessage neu starten um bereits bestehende Verbindungen zu schließen. - + Number needed Zahl erforderlich - + Your maximum download and upload rate must be numbers. Ignoring what you typed. Ihre maximale Herungerlade- und Hochladegeschwindigkeit müssen Zahlen sein. Die eingetragenen Werte werden ignoriert. - + Will not resend ever Wird nie wiederversendet - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Bitte beachten Sie, dass der eingetratene Dauer kürzer als die, die Bitmessage auf das erste Wiederversenden wartet. Deswegen werden Ihre Nachrichten nie wiederversendet. - + Sending email gateway unregistration request E-Mailschnittestelle-Abmeldeantrag wird versandt - + Sending email gateway status request E-Mailschnittstelle Statusantrag wird versandt - + Passphrase mismatch Kennwortsatz nicht identisch - + The passphrase you entered twice doesn't match. Try again. Die von Ihnen eingegebenen Kennwortsätze sind nicht identisch. Bitte neu versuchen. - + Choose a passphrase Wählen Sie einen Kennwortsatz - + You really do need a passphrase. Sie benötigen wirklich einen Kennwortsatz. - + Address is gone Adresse ist verloren - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage kann Ihre Adresse %1 nicht finden. Haben Sie sie gelöscht? - + Address disabled Adresse deaktiviert - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Fehler: Die Adresse von der Sie versuchen zu senden ist deaktiviert. Sie müssen sie unter dem Reiter "Ihre Identitäten" aktivieren bevor Sie fortfahren. - + Entry added to the Address Book. Edit the label to your liking. Eintrag dem Adressbuch hinzugefügt. Editieren Sie den Eintrag nach Belieben. - + Entry added to the blacklist. Edit the label to your liking. Eintrag in die Blacklist hinzugefügt. Die Beschriftung können Sie ändern. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. Fehler: Dieselbe Addresse kann nicht doppelt in die Blacklist eingetragen werden. Alternativ können Sie die bestehende umbenennen. - + Moved items to trash. Objekt in den Papierkorb verschoben. - + Undeleted item. Nachricht wiederhergestellt. - + Save As... Speichern unter... - + Write error. Fehler beim speichern. - + No addresses selected. Keine Adresse ausgewählt. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? @@ -832,7 +832,7 @@ Are you sure you want to delete the subscription? Sind Sie sicher, dass Sie das Abonnement löschen möchten? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? @@ -841,282 +841,282 @@ Are you sure you want to delete the channel? Sind Sie sicher, dass Sie das Chan löschen möchten? - + Do you really want to remove this avatar? Wollen Sie diesen Avatar wirklich entfernen? - + You have already set an avatar for this address. Do you really want to overwrite it? Sie haben bereits einen Avatar für diese Adresse gewählt. Wollen Sie ihn wirklich überschreiben? - + Start-on-login not yet supported on your OS. Mit Betriebssystem starten, noch nicht von Ihrem Betriebssystem unterstützt - + Minimize-to-tray not yet supported on your OS. Ins System Tray minimieren von Ihrem Betriebssytem noch nicht unterstützt. - + Tray notifications not yet supported on your OS. Trach-Benachrichtigungen von Ihrem Betriebssystem noch nicht unterstützt. - + Testing... teste... - + This is a chan address. You cannot use it as a pseudo-mailing list. Dies ist eine Chan-Adresse. Sie können sie nicht als Pseudo-Mailingliste verwenden. - + The address should start with ''BM-'' Die Adresse sollte mit "BM-" beginnen - + The address is not typed or copied correctly (the checksum failed). Die Adresse wurde nicht korrekt getippt oder kopiert (Prüfsumme falsch). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Die Versionsnummer dieser Adresse ist höher als diese Software unterstützt. Bitte installieren Sie die neuste Bitmessage Version. - + The address contains invalid characters. Diese Adresse beinhaltet ungültige Zeichen. - + Some data encoded in the address is too short. Die in der Adresse codierten Daten sind zu kurz. - + Some data encoded in the address is too long. Die in der Adresse codierten Daten sind zu lang. - + Some data encoded in the address is malformed. Einige in der Adresse kodierten Daten sind ungültig. - + Enter an address above. Eine Addresse oben ausfüllen. - + Address is an old type. We cannot display its past broadcasts. Alter Addressentyp. Wir können deren vorige Rundrufe nicht anzeigen. - + There are no recent broadcasts from this address to display. Es gibt keine neuen Rundrufe von dieser Adresse die angezeigt werden können. - + You are using TCP port %1. (This can be changed in the settings). Sie benutzen TCP-Port %1 (Dieser kann in den Einstellungen verändert werden). - + Bitmessage Bitmessage - + Identities Identitäten - + New Identity Neue Identität - + Search Suchen - + All Alle - + To An - + From Von - + Subject Betreff - + Message Nachricht - + Received Erhalten - + Messages Nachrichten - + Address book Addressbuch - + Address Adresse - + Add Contact Kontakt hinzufügen - + Fetch Namecoin ID Hole Namecoin ID - + Subject: Betreff: - + From: Von: - + To: An: - + Send ordinary Message Ordentliche Nachricht senden - + Send Message to your Subscribers Rundruf an Ihre Abonnenten senden - + TTL: Ablauf: - + X days - X Tage + X Tage - + Subscriptions Abonnements - + Add new Subscription Neues Abonnement anlegen - + Chans Chans - + Add Chan Chan hinzufügen - + File Datei - + Settings Einstellungen - + Help Hilfe - + Import keys Schlüssel importieren - + Manage keys Schlüssel verwalten - + Ctrl+Q Strg+Q - + F1 F1 - + Contact support Unterstütung anfordern - + About Über - + Regenerate deterministic addresses Deterministische Adressen neu generieren - + Delete all trashed messages Alle Nachrichten im Papierkorb löschen - + Join / Create chan Chan beitreten / erstellen @@ -1141,55 +1141,71 @@ Sind Sie sicher, dass Sie das Chan löschen möchten? Neuen Eintrag erstellen - + Display the %1 recent broadcast(s) from this address. Die letzten %1 Rundruf(e) von dieser Addresse anzeigen. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1565,7 +1581,7 @@ Die Zufallszahlen-Option ist standard, jedoch haben deterministische Adressen ei - + Network Status Netzwerkstatus diff --git a/src/translations/bitmessage_en.qm b/src/translations/bitmessage_en.qm index d925dd6023249a2d001c2c96bec2fb85bd813e0f..9dad8dffceb9623e88f8b96d9cd0caf25574c6fa 100644 GIT binary patch literal 23 fcmcE7ks@*G{hX<16=n7(EZlpygMop8iIEWihQJ9+ literal 334 qcmcE7ks@*G{hX<16=n7(EZlonpMinVh+#UzC?F{WI)JK~7#RUrb_zrQ diff --git a/src/translations/bitmessage_en.ts b/src/translations/bitmessage_en.ts index 9325cdb1..15bb979f 100644 --- a/src/translations/bitmessage_en.ts +++ b/src/translations/bitmessage_en.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,261 +245,246 @@ Please type the desired email address (including @mailchuck.com) below: - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. - + Encryption key request queued. - + Queued. - + Message sent. Waiting for acknowledgement. Sent at %1 - + Message sent. Sent at %1 - + Need to do work to send message. Work is queued. - + Acknowledgement of the message received %1 - + Broadcast queued. - + Broadcast on %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 - + Forced difficulty override. Send should start soon. - + Unknown status: %1 %2 - + Not Connected - + Show Bitmessage - + Send - + Subscribe - + Channel - + Quit - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. - + Open keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + Delete trash? - + Are you sure you want to delete all trashed messages? - + bad passphrase - + You must type your passphrase. If you don't have one then this is not the form for you. - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed - + You didn't enter a chan name. - + Address already present - + Could not add chan because it appears to already be one of your identities. - + Success - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. - + Address too new - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. - + Address invalid - + That Bitmessage address is not valid. - + Address does not match chan name - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. - + Successfully joined chan. - + Connection lost - + Connected - + Message trashed - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -507,122 +492,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 - + Error: The address %1 is not typed or copied correctly. Please check it. - + Error: The address %1 contains invalid characters. Please check it. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. - + Address version number - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Stream number - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. - + Message queued. - + Your 'To' field is empty. - + Right click one or more entries in your address book and select 'Send message to this address'. - + Fetched address from namecoin identity. - + New Message - + From - + Sending email gateway registration request @@ -637,431 +622,426 @@ It is important that you back up this file. Would you like to open the file now? - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart - + You must restart Bitmessage for the port number change to take effect. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch - + The passphrase you entered twice doesn't match. Try again. - + Choose a passphrase - + You really do need a passphrase. - + Address is gone - + Bitmessage cannot find your address %1. Perhaps you removed it? - + Address disabled - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. - + Entry added to the Address Book. Edit the label to your liking. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. - + Undeleted item. - + Save As... - + Write error. - + No addresses selected. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... - + This is a chan address. You cannot use it as a pseudo-mailing list. - + The address should start with ''BM-'' - + The address is not typed or copied correctly (the checksum failed). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. - + The address contains invalid characters. - + Some data encoded in the address is too short. - + Some data encoded in the address is too long. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). - + Bitmessage - + Identities - + New Identity - + Search - + All - + To - + From - + Subject - + Message - + Received - + Messages - + Address book - + Address - + Add Contact - + Fetch Namecoin ID - + Subject: - + From: - + To: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions - + Add new Subscription - + Chans - + Add Chan - + File - + Settings - + Help - + Import keys - + Manage keys - + Ctrl+Q - + F1 - + Contact support - + About - + Regenerate deterministic addresses - + Delete all trashed messages - + Join / Create chan @@ -1086,55 +1066,71 @@ Are you sure you want to delete the channel? - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1509,7 +1505,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status diff --git a/src/translations/bitmessage_en_pirate.qm b/src/translations/bitmessage_en_pirate.qm index 69e6bde80093b2b1fb33eac0eba92e595a373db1..753e7e1aa6f9eb30367c1489a9e77030178e29fc 100644 GIT binary patch delta 17 YcmccF!FaEQaYMKhdj|sp0}~@706Q)Oq5uE@ delta 445 zcmccD!g#ZTaYMLMy*>j2<2Q!s47dOzh6EQ}L;%hLF~q<;ITSI1oO%Xr9BNE(h=YWk zk>vc~>aQh=x^wHPKUATKwWS6bXqC^I=f&pju5^4fxQchxWc1~t- X372nTW?pz^UP^vBLkG}(OpJ^G^OP~O diff --git a/src/translations/bitmessage_en_pirate.ts b/src/translations/bitmessage_en_pirate.ts index 84d0406d..bee2ee89 100644 --- a/src/translations/bitmessage_en_pirate.ts +++ b/src/translations/bitmessage_en_pirate.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,261 +245,246 @@ Please type the desired email address (including @mailchuck.com) below: - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. - + Encryption key request queued. - + Queued. - + Message sent. Waiting for acknowledgement. Sent at %1 - + Message sent. Sent at %1 - + Need to do work to send message. Work is queued. - + Acknowledgement of the message received %1 - + Broadcast queued. - + Broadcast on %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 - + Forced difficulty override. Send should start soon. - + Unknown status: %1 %2 - + Not Connected - + Show Bitmessage - + Send - + Subscribe - + Channel - + Quit - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. - + Open keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + Delete trash? - + Are you sure you want to delete all trashed messages? - + bad passphrase - + You must type your passphrase. If you don't have one then this is not the form for you. - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed - + You didn't enter a chan name. - + Address already present - + Could not add chan because it appears to already be one of your identities. - + Success - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. - + Address too new - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. - + Address invalid - + That Bitmessage address is not valid. - + Address does not match chan name - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. - + Successfully joined chan. - + Connection lost - + Connected - + Message trashed - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -507,122 +492,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 - + Error: The address %1 is not typed or copied correctly. Please check it. - + Error: The address %1 contains invalid characters. Please check it. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. - + Address version number - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Stream number - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. - + Message queued. - + Your 'To' field is empty. - + Right click one or more entries in your address book and select 'Send message to this address'. - + Fetched address from namecoin identity. - + New Message - + From - + Sending email gateway registration request @@ -637,431 +622,426 @@ It is important that you back up this file. Would you like to open the file now? - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart - + You must restart Bitmessage for the port number change to take effect. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch - + The passphrase you entered twice doesn't match. Try again. - + Choose a passphrase - + You really do need a passphrase. - + Address is gone - + Bitmessage cannot find your address %1. Perhaps you removed it? - + Address disabled - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. - + Entry added to the Address Book. Edit the label to your liking. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. - + Undeleted item. - + Save As... - + Write error. - + No addresses selected. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... - + This is a chan address. You cannot use it as a pseudo-mailing list. - + The address should start with ''BM-'' - + The address is not typed or copied correctly (the checksum failed). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. - + The address contains invalid characters. - + Some data encoded in the address is too short. - + Some data encoded in the address is too long. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). - + Bitmessage - + Identities - + New Identity - + Search - + All - + To - + From - + Subject - + Message - + Received - + Messages - + Address book - + Address Address - + Add Contact - + Fetch Namecoin ID - + Subject: - + From: - + To: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions - + Add new Subscription - + Chans - + Add Chan - + File - + Settings Settings - + Help Help - + Import keys - + Manage keys - + Ctrl+Q - + F1 - + Contact support - + About - + Regenerate deterministic addresses - + Delete all trashed messages - + Join / Create chan @@ -1086,55 +1066,71 @@ Are you sure you want to delete the channel? Add yee new entry - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1510,7 +1506,7 @@ T' 'Random Number' option be selected by default but deterministi - + Network Status diff --git a/src/translations/bitmessage_eo.qm b/src/translations/bitmessage_eo.qm index 15c6a15a4e811b69e8106661a1c077f218f206d6..45ee1b626a904821f50a8848034742b0eaef1e87 100644 GIT binary patch delta 2837 zcmX9=d0bW18eQk!bMAERAZpLF1QaDvbHE8OKm~I^uI9ibA_*je0y%|{UKRBrQeX%I z5~-0XA}XW_DDjkx=YaUbAutO|%SVXxLj?`xExUiMyYJa&@3q%j-?z`-RbtU;F{7`g z7Qk5G_GLia1^6xpq+`IAQefstV90e~;Sa!)MZn_W{QnjZ=?$URCW!Sz0rMJ&jZ1*J z^$=Uf0P}pTc-|9Ing~RE2`T3}u+|MyzBdq+2&uRbg3=Ds=^YR(8Z}ghm0YkGYQO0a zZ2Cbvy__3bU^Be~IPwE*PJ9N`=b~Sk2XJya92#B%v)$mR;drxv5d-Rg#11&`Dgd_Y zFzIG8aO^ZD_iF=u)?h|<4KOgqiWLEv^9yPE#1x*%ksZ1z3Mz z6fku^k`7vcVRra9HV=4Oj+_Krpr#D_qk8kf2X|2X$wHv&GaPm2gX-hB_+1F#o`h?r zG~mozxbp@H+759W4OL&s(MZ&Jv>gZ*Ou=i*p1oa7_vQP;`4-w9eI}9j}T5)26@VuDP(B7%I z63X%Nm5N&%&eOUhiYDXxKwXdGcX2gvB3HR^t+dbg08*eF({O@BoRt&fHd5ljN_Vq81noNI)TNC;Mw>FXn*`$*DGNfj zF}yX(3VjVXUa7pehvR?@Wt}<#a0;+u)iq^f+io7W7{<^_r^Jt5(2BxdVnSgZGjm-`nMeylEji+mbO9JwBNjW6VREfl zJn}1!pNPkj{TVtRu`ItYu(eYBPpcEqwN$KGKa^5ei#L0pvXs}siOr4D-V|;S6=B|U|xb$v77|r?n-q# zStVUJr22j1fx+{nAN@IR&{gTFk|zzAB6WJ(un%OZY@$~~P+U=kt}0;tpRZ9Ze@W?Y zZ&t1RAeJ4jM-_L&nf3aMYHbFk>p8AUS;yz^daLqh--lpIP!;}k6<8LhDzc{)O^;P& zpY{Pt^r~-Pd0dgKs$F6PCJa|yFY3*HQL4J*M}pltRhx?IZ|JA)ox!pX{Z&0lSH~Y$ z9;qkKpqC?Ws(l;lSfBgVei<9s!QN3vjE$nluIeN^E*PAzPX5A^3pcB`&*=|An6KXX zvn_C=T%B>>47eOn@2cRuq3-Ium=a*d=jsFNw*r+d>LY0kGeWFrUv9xv9@hD1acfsq6hh08N0*l9IQ+hZA$a!pe%$KGw4dv`*3A>G$Jd|m)dinZeLKQvFb zd~e-e_sGx{zLo5*RT4=b*&oTFBod@6&+lLhwdktrNa*S+-T6&r z9M90zZ)YYJbm{H}-v@Fp=pOFb2>i8G7JN(Cs^etsdWLfRV_B!X286rFujf(O!G~nW z$5nuXr9mEcHiVMa$zxP}F{f1a?9(4OyID5RX5%TUwc;;R<@b8%<=-)KSQ5Rv+Ai-* zOeR*y8Q(RLV2YgA;KeeXFXwB=)6#mmb`!&!<}TO%N+OAV@~vDm@N0+MxW0|$=OQ=F z%wqjJ?2w!HvwSYSBe(W`3;6Dw+-lD{ZkP3AUWG8uQ9orQ6)GN~57-dHY*gsOpDbl7 z&D2L^7qCA()W;m1#`(we@v}Y$o>%L4exJb%gzI;E4q%I(sNcP8HgKp>e>i~(20hT1 zx*OTJl=@O;%>qlV{&XBeQIf8&6jn2IJs8e*Q(imX9~I15{Fkh>w#E1e!5FxBu=*R3Kzcw~4MIfcrZjHu>@KgAj~ubY|4WTV40Vvb-O{_5KH&oYiQ z?`64q8D~CCr4?To=fOhn8as^Xk2qoT1!L|v^jI((_bql|hr3|hZ%^hcCKxa0y8`D| z80$te8-NwG< kVL+LaQ@v-ITU6`tvcTO3y)&Ohj?MIL>QmP9V}I}e18nJV8~^|S delta 3545 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 moW+DC^unazIBi03Vy9C%?V EmailGatewayRegistrationDialog - + Registration failed: Registrado malsukcesis: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: La dezirata retpoŝtadreso ne estas disponebla, bonvolu provi kun alia. Entajpu novan deziratan adreson (kune kun @mailchuck.com) sube: @@ -284,120 +284,120 @@ Bonvolu entajpi deziratan retpoŝtadreson (kune kun @mailchuck.com) sube: 1 hour - 1 horo + 1 horo %1 hours - %1 horoj + %1 horoj %1 days - %1 tagoj + %1 tagoj - + Waiting for their encryption key. Will request it again soon. Atendante ilian ĉifroŝlosilon. Baldaŭ petos ĝin denove. - + Encryption key request queued. Peto por ĉifroŝlosilo envicigita. - + Queued. En atendovico. - + Message sent. Waiting for acknowledgement. Sent at %1 Mesaĝo sendita. Atendante konfirmon. Sendita je %1 - + Message sent. Sent at %1 Mesaĝo sendita. Sendita je %1 - + Need to do work to send message. Work is queued. Devas labori por sendi mesaĝon. Laboro en atendovico. - + Acknowledgement of the message received %1 Ricevis konfirmon de la mesaĝo je %1 - + Broadcast queued. Elsendo en atendovico. - + Broadcast on %1 Elsendo je %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problemo: la demandita laboro de la ricevonto estas pli malfacila ol vi pretas fari. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problemo: la ĉifroŝlosilo de la ricevonto estas rompita. Ne povis ĉifri la mesaĝon. %1 - + Forced difficulty override. Send should start soon. Devigita superado de limito de malfacilaĵo. Sendado devus baldaŭ komenci. - + Unknown status: %1 %2 Nekonata stato: %1 %2 - + Not Connected Ne konektita - + Show Bitmessage Montri Bitmesaĝon - + Send Sendi - + Subscribe Aboni - + Channel Kanalo - + Quit Eliri - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Vi povas administri viajn ŝlosilojn redaktante la dosieron keys.dat en la sama dosierujo kiel tiu programo. Estas grava ke vi faru savkopion de tiu dosiero. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -406,17 +406,17 @@ It is important that you back up this file. Estas grava ke vi faru savkopion de tiu dosiero. - + Open keys.dat? Ĉu malfermi keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Vi povas administri viajn ŝlosilojn redaktante la dosieron keys.dat en la sama dosierujo kiel tiu programo. Estas grava ke vi faru savkopion de tiu dosiero. Ĉu vi volas malfermi la dosieron nun? (Bonvolu certigi ke Bitmesaĝo estas fermita antaŭ fari ŝanĝojn.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -425,122 +425,122 @@ It is important that you back up this file. Would you like to open the file now? Estas grava ke vi faru savkopion de tiu dosiero. Ĉu vi volas malfermi la dosieron nun? (Bonvolu certigi ke Bitmesaĝo estas fermita antaŭ fari ŝanĝojn.) - + Delete trash? Malplenigi rubujon? - + Are you sure you want to delete all trashed messages? Ĉu vi certe volas forviŝi ĉiujn mesaĝojn el la rubujo? - + bad passphrase malprava pasvorto - + You must type your passphrase. If you don't have one then this is not the form for you. Vi devas tajpi vian pasvorton. Se vi ne havas pasvorton tiu ne estas la prava formularo por vi. - + Bad address version number Malkorekta numero de adresversio - + Your address version number must be a number: either 3 or 4. Via numero de adresversio devas esti: aŭ 3 aŭ 4. - + Your address version number must be either 3 or 4. Via numero de adresversio devas esti: aŭ 3 aŭ 4. - + Chan name needed Bezonas nomon de kanalo - + You didn't enter a chan name. Vi ne enmetis nomon de kanalo. - + Address already present Adreso jam ĉi tie - + Could not add chan because it appears to already be one of your identities. Ne povis aldoni kanalon ĉar ŝajne jam estas unu el viaj indentigoj. - + Success Sukceso - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Sukcese kreis kanalon. Por ebligi al aliaj aniĝi vian kanalon, sciigu al ili la nomon de la kanalo kaj ties Bitmesaĝa adreso: %1. Tiu adreso ankaŭ aperas en 'Viaj identigoj'. - + Address too new Adreso tro nova - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Kvankam tiu Bitmesaĝa adreso povus esti ĝusta, ĝia versionumero estas tro nova por pritrakti ĝin. Eble vi devas ĝisdatigi vian Bitmesaĝon. - + Address invalid Adreso estas malĝusta - + That Bitmessage address is not valid. Tiu Bitmesaĝa adreso ne estas ĝusta. - + Address does not match chan name Adreso ne kongruas kun kanalonomo - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Kvankam la Bitmesaĝa adreso kiun vi enigis estas ĝusta, ĝi ne kongruas kun la kanalonomo. - + Successfully joined chan. Sukcese aniĝis al kanalo. - + Connection lost Perdis konekton - + Connected Konektita - + Message trashed Movis mesaĝon al rubujo - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -548,122 +548,122 @@ Estas grava ke vi faru savkopion de tiu dosiero. Ĉu vi volas malfermi la dosier La vivdaŭro signifas ĝis kiam la reto tenos la mesaĝon. La ricevonto devos elŝuti ĝin dum tiu tempo. Se via Bitmesaĝa kliento ne ricevos konfirmon, ĝi resendos mesaĝon aŭtomate. Ju pli longa vivdaŭro, des pli laboron via komputilo bezonos fari por sendi mesaĝon. Vivdaŭro proksimume kvin aŭ kvar horoj estas ofte konvena. - + Message too long Mesaĝo tro longa - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. La mesaĝon kiun vi provis sendi estas tro longa pro %1 bitokoj. (La maksimumo estas 261644 bitokoj.) Bonvolu mallongigi ĝin antaŭ sendado. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. Eraro: Via konto ne estas registrita je retpoŝta kluzo. Registranta nun kiel %1, bonvolu atendi ĝis la registrado finos antaŭ vi reprovos sendi iun ajn. - + Error: Bitmessage addresses start with BM- Please check %1 Eraro: Bitmesaĝaj adresoj komencas kun BM- Bonvolu kontroli %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Eraro: La adreso %1 ne estis prave tajpita aŭ kopiita. Bonvolu kontroli ĝin. - + Error: The address %1 contains invalid characters. Please check it. Eraro: La adreso %1 enhavas malpermesitajn simbolojn. Bonvolu kontroli ĝin. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Eraro: La adresversio %1 estas tro alta. Eble vi devas ĝisdatigi vian Bitmesaĝan programon aŭ via sagaca konato uzas alian programon. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Eraro: Kelkaj datumoj koditaj en la adreso %1 estas tro mallongaj. Povus esti ke io en la programo de via konato malfunkcias. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Eraro: Kelkaj datumoj koditaj en la adreso %1 estas tro longaj. Povus esti ke io en la programo de via konato malfunkcias. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. Eraro: Kelkaj datumoj koditaj en la adreso %1 estas misformitaj. Povus esti ke io en la programo de via konato malfunkcias. - + Error: Something is wrong with the address %1. Eraro: Io malĝustas kun la adreso %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Eraro: Vi devas elekti sendontan adreson. Se vi ne havas iun, iru al langeto 'Viaj identigoj'. - + Address version number Numero de adresversio - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Priaboranta adreson %1, Bitmesaĝo ne povas kompreni numerojn %2 de adresversioj. Eble ĝisdatigu Bitmesaĝon al la plej nova versio. - + Stream number Fluo numero - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Priaboranta adreson %1, Bitmesaĝo ne povas priservi %2 fluojn numerojn. Eble ĝisdatigu Bitmesaĝon al la plej nova versio. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Atentu: Vi ne estas nun konektita. Bitmesaĝo faros necesan laboron por sendi mesaĝon, tamen ĝi ne sendos ĝin antaŭ vi konektos. - + Message queued. Mesaĝo envicigita. - + Your 'To' field is empty. Via "Ricevonto"-kampo malplenas. - + Right click one or more entries in your address book and select 'Send message to this address'. Dekstre alklaku kelka(j)n ero(j)n en via adresaro kaj elektu 'Sendi mesaĝon al tiu adreso'. - + Fetched address from namecoin identity. Venigis adreson de Namecoin-a identigo. - + New Message Nova mesaĝo - + From De - + Sending email gateway registration request Sendanta peton pri registrado je retpoŝta kluzo @@ -678,142 +678,142 @@ Estas grava ke vi faru savkopion de tiu dosiero. Ĉu vi volas malfermi la dosier La adreso kiun vi enmetis estas malĝusta. Ignoras ĝin. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Eraro: Vi ne povas duoble aldoni la saman adreson al via adresaro. Provu renomi la jaman se vi volas. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. Eraro: Vi ne povas aldoni duoble la saman adreson al viaj abonoj. Eble renomi la jaman se vi volas. - + Restart Restartigi - + You must restart Bitmessage for the port number change to take effect. Vi devas restartigi Bitmesaĝon por ke la ŝanĝo de la numero de pordo (Port Number) efektivigu. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmesaĝo uzos vian prokurilon (proxy) ekde nun sed eble vi volas permane restartigi Bitmesaĝon nun por ke ĝi fermu eblajn jamajn konektojn. - + Number needed Numero bezonata - + Your maximum download and upload rate must be numbers. Ignoring what you typed. Maksimumaj elŝutrapido kaj alŝutrapido devas esti numeroj. Ignoras kion vi enmetis. - + Will not resend ever Resendos neniam - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Rigardu, ke la templimon vi enmetis estas pli malgrandan ol tempo dum kiu Bitmesaĝo atendas por resendi unuafoje, do viaj mesaĝoj estos senditaj neniam. - + Sending email gateway unregistration request Sendanta peton pri malregistrado de retpoŝta kluzo - + Sending email gateway status request Sendanta peton pri stato de retpoŝta kluzo - + Passphrase mismatch Pasfrazoj malsamas - + The passphrase you entered twice doesn't match. Try again. La pasfrazo kiun vi duoble enmetis malsamas. Provu denove. - + Choose a passphrase Elektu pasfrazon - + You really do need a passphrase. Vi ja vere bezonas pasfrazon. - + Address is gone Adreso foriris - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmesaĝo ne povas trovi vian adreson %1. Ĉu eble vi forviŝis ĝin? - + Address disabled Adreso malŝaltita - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Eraro: La adreso kun kiu vi provas sendi estas malŝaltita. Vi devos ĝin ŝalti en la langeto 'Viaj identigoj' antaŭ uzi ĝin. - + Entry added to the Address Book. Edit the label to your liking. Aldonis elementon al adresaro. Redaktu la etikedon laŭvole. - + Entry added to the blacklist. Edit the label to your liking. Aldonis elementon al la nigra listo. Redaktu la etikedon laŭvole. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. Eraro: Vi ne povas duoble aldoni la saman adreson al via nigra listo. Provu renomi la jaman se vi volas. - + Moved items to trash. Movis elementojn al rubujo. - + Undeleted item. Malforviŝis elementon. - + Save As... Konservi kiel... - + Write error. Skriberaro. - + No addresses selected. Neniu adreso elektita. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? @@ -822,7 +822,7 @@ Are you sure you want to delete the subscription? Ĉu vi certe volas forviŝi la abonon? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? @@ -831,282 +831,282 @@ Are you sure you want to delete the channel? Ĉu vi certe volas forviŝi la kanalon? - + Do you really want to remove this avatar? Ĉu vi certe volas forviŝi tiun avataron? - + You have already set an avatar for this address. Do you really want to overwrite it? Vi jam agordis avataron por tiu adreso. Ĉu vi vere volas superskribi ĝin? - + Start-on-login not yet supported on your OS. Starto-dum-ensaluto ne estas ankoraŭ ebla en via operaciumo. - + Minimize-to-tray not yet supported on your OS. Plejetigo al taskopleto ne estas ankoraŭ ebla en via operaciumo. - + Tray notifications not yet supported on your OS. Taskopletaj sciigoj ne estas ankoraŭ eblaj en via operaciumo. - + Testing... Testante... - + This is a chan address. You cannot use it as a pseudo-mailing list. Tio estas kanaladreso. Vi ne povas ĝin uzi kiel kvazaŭ-dissendolisto. - + The address should start with ''BM-'' La adreso komencu kun "BM-" - + The address is not typed or copied correctly (the checksum failed). La adreso ne estis prave tajpita aŭ kopiita (kontrolsumo malsukcesis). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. La numero de adresversio estas pli alta ol tiun, kiun la programo poveblas subteni. Bonvolu ĝisdatigi Bitmesaĝon. - + The address contains invalid characters. La adreso enhavas malpermesitajn simbolojn. - + Some data encoded in the address is too short. Kelkaj datumoj kodita en la adreso estas tro mallongaj. - + Some data encoded in the address is too long. Kelkaj datumoj kodita en la adreso estas tro longaj. - + Some data encoded in the address is malformed. Kelkaj datumoj koditaj en la adreso estas misformitaj. - + Enter an address above. Enmetu adreson supre. - + Address is an old type. We cannot display its past broadcasts. Malnova speco de adreso. Ne povas montri ĝiajn antaŭajn elsendojn. - + There are no recent broadcasts from this address to display. Neniaj lastatempaj elsendoj de tiu adreso por montri. - + You are using TCP port %1. (This can be changed in the settings). Vi estas uzanta TCP pordo %1 (Tio estas ŝanĝebla en la agordoj). - + Bitmessage Bitmesaĝo - + Identities Identigoj - + New Identity Nova identigo - + Search Serĉi - + All Ĉio - + To Al - + From De - + Subject Temo - + Message Mesaĝo - + Received Ricevita je - + Messages Mesaĝoj - + Address book Adresaro - + Address Adreso - + Add Contact Aldoni kontakton - + Fetch Namecoin ID Venigu Namecoin ID - + Subject: Temo: - + From: De: - + To: Al: - + Send ordinary Message Sendi ordinaran mesaĝon - + Send Message to your Subscribers Sendi mesaĝon al viaj abonantoj - + TTL: Vivdaŭro: - + X days - X tagoj + X tagoj - + Subscriptions Abonoj - + Add new Subscription Aldoni novan abonon - + Chans Kanaloj - + Add Chan Aldoni kanalon - + File Dosiero - + Settings Agordoj - + Help Helpo - + Import keys Enporti ŝlosilojn - + Manage keys Administri ŝlosilojn - + Ctrl+Q Stir+Q - + F1 F1 - + Contact support Peti pri helpo - + About Pri - + Regenerate deterministic addresses Regeneri determinisman adreson - + Delete all trashed messages Forviŝi ĉiujn mesaĝojn el rubujo - + Join / Create chan Aniĝi / Krei kanalon @@ -1131,55 +1131,69 @@ Are you sure you want to delete the channel? Aldoni novan elementon - + Display the %1 recent broadcast(s) from this address. Montri la %1 lasta(j)n elsendo(j)n de tiu adreso. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + %n day(s) + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1555,7 +1569,7 @@ La 'hazardnombra' adreso estas elektita defaŭlte, sed determinismaj a - + Network Status Reta Stato diff --git a/src/translations/bitmessage_fr.qm b/src/translations/bitmessage_fr.qm index 6c236d0be1ccd59f72c8381f75227f0c28e144d8..42db29ffdd25604cb51a417284375369a05da20d 100644 GIT binary patch delta 2841 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 Ko EmailGatewayRegistrationDialog - + Registration failed: L'inscription a échouée : - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: L'adresse Email demandée n'est pas disponible, veuillez en essayer une nouvelle. Saisissez ci-dessous la nouvelle adresse Email désirée (incluant @mailchuck.com) : @@ -248,120 +248,120 @@ Veuillez taper l'adresse email désirée (incluant @mailchuck.com) : 1 hour - 1 heure + 1 heure %1 hours - %1 heures + %1 heures %1 days - %1 jours + %1 jours - + Waiting for their encryption key. Will request it again soon. En attente de la clé de chiffrement. Une nouvelle requête sera bientôt lancée. - + Encryption key request queued. Forespørsel for å finne krypteringsnøkkel er satt i kø. - + Queued. Satt i kø. - + Message sent. Waiting for acknowledgement. Sent at %1 Beskjed sendt. Venter på bekreftelse. Sendt %1 - + Message sent. Sent at %1 Beskjed sendt. Sendt %1 - + Need to do work to send message. Work is queued. Trenger å utføre arbeidsoppgave for sende beskjed. Denne er satt i kø. - + Acknowledgement of the message received %1 Bekreftelse på beskjeden mottatt %1 - + Broadcast queued. Kringkasting satt i kø. - + Broadcast on %1 Kringkasting på %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problème : Le travail demandé par le destinataire est plus difficile que ce que vous avez paramétré. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problem: Mottakerens nøkkel kunne ikke brukes til å kryptere beskjeden. %1 - + Forced difficulty override. Send should start soon. Tvunget vanskelighet overstyrt. Sender snart. - + Unknown status: %1 %2 Ukjent status: %1 %2 - + Not Connected Ikke tilkoblet - + Show Bitmessage Vis Bitmessage - + Send Envoyer - + Subscribe S'abonner - + Channel Chaîne - + Quit Avslutt - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Vous pouvez éditer vos clés en éditant le fichier keys.dat stocké dans le même répertoire que ce programme. Il est important de faire des sauvegardes de ce fichier. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -369,17 +369,17 @@ It is important that you back up this file. Il est important de faire des sauvegardes de ce fichier. - + Open keys.dat? Ouvrir keys.dat ? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Vous pouvez éditer vos clés en éditant le fichier keys.dat stocké dans le même répertoire que ce programme. Il est important de faire des sauvegardes de ce fichier. Souhaitez-vous l'ouvrir maintenant ? (Assurez-vous de fermer Bitmessage avant d'effectuer des changements.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -388,122 +388,122 @@ It is important that you back up this file. Would you like to open the file now? Det er viktig at du tar sikkerhetskopi av denne filen. Vil du åpne denne filen nå? (Vær sikker på å få avsluttet Bitmessage før du gjør endringer.) - + Delete trash? Vil du slette kastet innhold? - + Are you sure you want to delete all trashed messages? Er du sikker på at du vil slette alle kastede beskjeder? - + bad passphrase Dårlig passordfrase - + You must type your passphrase. If you don't have one then this is not the form for you. Du må skrive inn passordfrasen din. Hvis du ikke har en kan du ikke bruke dette skjemaet. - + Bad address version number Feil adresseversjonsnummer - + Your address version number must be a number: either 3 or 4. Ditt adressetypenummer må være et nummer: Enten 3 eller 4. - + Your address version number must be either 3 or 4. Ditt adressetypenummer må enten være 3 eller 4. - + Chan name needed Kanalnavn nødvendig - + You didn't enter a chan name. Du oppga ikke noe kanalnavn. - + Address already present Adressen eksisterer allerede - + Could not add chan because it appears to already be one of your identities. Kunne ikke legge til kanal siden den ser ut til å allerede være lagret som en av dine identiteter. - + Success Suksess - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Opprettet ny kanal. For å la andre delta i din nye kanal gir du dem dem kanalnavnet og denne Bitmessage-adressen: %1. Denne adressen vises også i 'Dine identiteter'. - + Address too new Adressen er for ny - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Selv om Bitmessage-adressen kanskje er gyldig så er tilhørende typenummer for nytt til å håndteres. Kanskje du trenger å oppgradere Bitmessage. - + Address invalid Ugyldig adresse - + That Bitmessage address is not valid. Bitmessage-adressen er ikke gyldig. - + Address does not match chan name Adresse stemmer ikke med kanalnavnet - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Selv om Bitmessage-adressen du oppga var gyldig stemmer den ikke med kanalnavnet. - + Successfully joined chan. Deltar nå i kanal. - + Connection lost Mistet tilkobling - + Connected Tilkoblet - + Message trashed Beskjed kastet - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -512,122 +512,122 @@ Det er viktig at du tar sikkerhetskopi av denne filen. Vil du åpne denne filen Le destinataire doit l'obtenir avant ce temps. Si votre client Bitmessage ne reçoit pas de confirmation de réception, il va le ré-envoyer automatiquement. Plus le Time-To-Live est long, plus grand est le travail que votre ordinateur doit effectuer pour envoyer le message. Un Time-To-Live de quatre ou cinq jours est souvent approprié. - + Message too long Message trop long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. Le message que vous essayez d'envoyer est trop long de %1 octets (le maximum est 261644 octets). Veuillez le réduire avant de l'envoyer. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. Erreur : votre compte n'a pas été inscrit à une passerelle de courrier électronique. Envoi de l'inscription maintenant en tant que %1, veuillez patienter tandis que l'inscription est en cours de traitement, avant de retenter l'envoi. - + Error: Bitmessage addresses start with BM- Please check %1 Feil: Bitmessage-adresser begynner med BM-. Vennligst sjekk %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Feil: Adressen %1 er skrevet eller kopiert inn feil. Vennligst sjekk den. - + Error: The address %1 contains invalid characters. Please check it. Feil: Adressen %1 innerholder ugyldige tegn. Vennligst sjekk den. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Feil: Typenummeret for adressen %1 er for høy. Enten trenger du å oppgradere Bitmessaage-programvaren eller så er det fordi kontakten din har funnet på noe smart. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Feil: Noen av de kodede dataene i adressen %1 er for korte. Det kan hende det er noe galt med programvaren til kontakten din. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Feil: Noen av de kodede dataene i adressen %1 er for lange. Det kan hende det er noe galt med programvaren til kontakten din. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. Erreur : quelques données codées dans l'adresse %1 sont mal formées. Il pourrait y avoir un soucis avec le logiciel de votre connaissance. - + Error: Something is wrong with the address %1. Feil: Noe er galt med adressen %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Feil: Du må oppgi en avsenderadresse. Hvis du ikke har en gå til 'Dine identiteter'-fanen. - + Address version number Adressetypenummer - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Angående adressen %1, Bitmessage forstår ikke adressetypenumre for %2. Oppdater Bitmessage til siste versjon. - + Stream number Strømnummer - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Angående adressen %1, Bitmessage kan ikke håndtere strømnumre for %2. Oppdater Bitmessage til siste utgivelse. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Advarsel: Du er ikke tilkoblet. Bitmessage vil utføre nødvendige arbeidsoppgaver for å sende beskjeder, men ingen vil bli sendt før du kobler til igjen. - + Message queued. Message mis en file d'attente. - + Your 'To' field is empty. Ditt 'Til'-felt er tomt. - + Right click one or more entries in your address book and select 'Send message to this address'. Høyreklikk på en eller flere oppføringer i adresseboka og velg 'Send beskjed til denne adressen'. - + Fetched address from namecoin identity. Hentet adresse fra Namecoin-identitet. - + New Message Ny beskjed - + From De - + Sending email gateway registration request Envoi de la demande d'inscription de la passerelle email @@ -642,142 +642,142 @@ Le destinataire doit l'obtenir avant ce temps. Si votre client Bitmessage n Adressen du oppga var ugyldig og vil derfor bli ignorert. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Feil: Du kan ikke legge til samme adresse i adresseboka flere ganger. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. Erreur : vous ne pouvez pas ajouter la même adresse deux fois à vos abonnements. Peut-être que vous pouvez renommer celle qui existe si vous le souhaitez. - + Restart Omstart - + You must restart Bitmessage for the port number change to take effect. Du må ta omstart av Bitmessage for at endringen av portnummer skal tre i kraft. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage vil bruke proxy fra nå av. Hvis du vil kan du omstart av programmet for å lukke eksisterende tilkoblinger (hvis det finnes noen). - + Number needed Nombre requis - + Your maximum download and upload rate must be numbers. Ignoring what you typed. Vos taux maximum de téléchargement et de téléversement doivent être des nombres. Ce que vous avez tapé est ignoré. - + Will not resend ever Vil ikke igjensende noensinne - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Legg merke til at utløpstiden du oppga er kortere enn det Bitmessage venter for første igjensendingsforsøk, dine beskjeder vil derfor aldri bli igjensendt. - + Sending email gateway unregistration request Envoi de la demande de désinscription de la passerelle email - + Sending email gateway status request Envoi à la passerelle email d'une demande de statut - + Passphrase mismatch Passordfrase stemmer ikke - + The passphrase you entered twice doesn't match. Try again. Passordfrasene er ikke like. Vennligst prøv igjen. - + Choose a passphrase Velg en passordfrase - + You really do need a passphrase. Du trenger sårt en passordfrase. - + Address is gone Adressen er borte - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage kan ikke finne adressen %1. Kanskje du fjernet den? - + Address disabled Adressen er deaktivert - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Feil: Adressen du prøver å sende med er deaktivert. Du må aktivere den fra 'Dine identiteter' før du kan bruke den. - + Entry added to the Address Book. Edit the label to your liking. Ny oppføring lagt til i adresseboka. Du kan forandre etiketten til det du måtte ønske. - + Entry added to the blacklist. Edit the label to your liking. Entrée ajoutée à la liste noire. Éditez l'étiquette à votre convenance. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. Erreur : vous ne pouvez pas ajouter la même adresse deux fois à votre liste noire. Essayez de renommer celle qui existe si vous le souhaitez. - + Moved items to trash. Kastet innholdet. - + Undeleted item. Articles restaurés. - + Save As... Lagre som ... - + Write error. Skrivefeil. - + No addresses selected. Ingen adresse valgt. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? @@ -786,7 +786,7 @@ Are you sure you want to delete the subscription? Êtes-vous sur de vouloir supprimer cet abonnement ? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? @@ -795,282 +795,282 @@ Are you sure you want to delete the channel? Êtes-vous sur(e) de vouloir supprimer ce Chan (canal) ? - + Do you really want to remove this avatar? Vil du virkelig fjerne dette avataret? - + You have already set an avatar for this address. Do you really want to overwrite it? Du har allerede satt ett avatar for denne adressen. Vil du virkelig overskrive det? - + Start-on-login not yet supported on your OS. Start ved innlogging er ikke støttet enda for ditt OS. - + Minimize-to-tray not yet supported on your OS. Minimering til systemstatusfeltet er ikke støttet enda for ditt OS. - + Tray notifications not yet supported on your OS. Varslinger via systemstatusfeltet er ikke støttet enda for ditt OS. - + Testing... Tester ... - + This is a chan address. You cannot use it as a pseudo-mailing list. Dette er en kanaladresse. Du kan ikke bruke den som en pseudo-epostliste. - + The address should start with ''BM-'' Adressen bør starte med ''BM-'' - + The address is not typed or copied correctly (the checksum failed). Adressen er ikke skrevet eller kopiert inn riktig (sjekksummen feilet). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Typenummeret for denne adressen er høyere enn det programvaren støtter. Vennligst oppgrader Bitmessage. - + The address contains invalid characters. Adressen inneholder ugyldige tegn. - + Some data encoded in the address is too short. Noen av de kodede dataene i adressen er for korte. - + Some data encoded in the address is too long. Noen av de kodede dataene i adressen er for lange. - + Some data encoded in the address is malformed. Quelques données codées dans l'adresse sont mal formées. - + Enter an address above. Oppgi inn en adresse over. - + Address is an old type. We cannot display its past broadcasts. Adressen er av gammel type. Vi kan ikke vise dens tidligere kringkastninger. - + There are no recent broadcasts from this address to display. Det er ingen nylige kringkastninger fra denne adressen å vise frem. - + You are using TCP port %1. (This can be changed in the settings). Du benytter TCP-port %1. (Dette kan endres på i innstillingene). - + Bitmessage Bitmessage - + Identities Identités - + New Identity Nouvelle identité - + Search Søk - + All Alle - + To Til - + From Fra - + Subject Emne - + Message Beskjed - + Received Mottatt - + Messages Messages - + Address book Carnet d'adresses - + Address Adresse - + Add Contact Ajouter un contact - + Fetch Namecoin ID Hent Namecoin-id - + Subject: Emne: - + From: Fra: - + To: Til: - + Send ordinary Message Envoyer un message ordinaire - + Send Message to your Subscribers Envoyer un message à vos abonnés - + TTL: TTL: - + X days - X jours + X jours - + Subscriptions Abonnement - + Add new Subscription Legg til nytt abonnement - + Chans Chans (canaux) - + Add Chan Ajouter un Chan (canal) - + File Fil - + Settings Innstillinger - + Help Hjelp - + Import keys Importer inn nøkler - + Manage keys Administrer nøkler - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support Contacter support - + About Om - + Regenerate deterministic addresses Regenerer deterministiske adresser - + Delete all trashed messages Slett alle kastede meldinger - + Join / Create chan Delta i / opprett kanal @@ -1095,55 +1095,71 @@ Are you sure you want to delete the channel? Ajouter nouvelle entrée - + Display the %1 recent broadcast(s) from this address. Montre les %1 plus récentes émission(s) issues de cette adresse. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1519,7 +1535,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status Nettverksstatus diff --git a/src/translations/bitmessage_it.qm b/src/translations/bitmessage_it.qm index 9d6dcc37e7bf9845b8cbbb8d489b8eef1a6ec91c..77a807974777f90d34e35420b3302f52178ca735 100644 GIT binary patch delta 1077 zcmX9+eN0t#7=F$@=iGD8IroC`;nGc{>%Etc|ina&<||9Z~vci#8;JO2Cy+?y4pAa{kk}^Q5h*OG-Q4r*Pr&98^T?{R%n9?{S*{}gg88=q>+_yfVp?hF(HO<6 zam3lfO35{%d#BRZa-FL^6v0F>f|>bBpRxKQ>y$DRCuwtvg=b)?UYehE?wiK?>5;>^01WlB(AD`QNop?ffN^j>BsB8{Yd~QM+>= zkY7>%+`r)&NaGgWt_qm^GW3Phv0TL` z`eI@=L+-JbHNMOYMOjbeuV<(Y!`fTB%+$_W&kJ0|7DogNnyjF{=Iq@Fg+DzdDu_EyQ4aW8EWBh z)O7kfI!6Q(h9l@%J0JPTDvC~bQjvM2iizCw!9b3GC?t(-82a7*v_lE8(Ig1}1E{(c AcK`qY delta 1680 zcma)64@{J082^2D-*?}A_Xh~Y|G){}A)X}VVO!+>Sl9`Z24!lYHU*ei8WH^n#t^UoH?>=z1z3vectDJ-sksw zp6C7k*ev|~rqDP%U;;1|n7$nlw*nR?AawxKb_0vf0LeFj=O`Gera8h+FOBwGHBY=jC%#joTI>`I266r4%yng+5oj2mgZjJzN!$2>sL+bA(NDGs&~tJ0aJqN(z;W?tW9cDQy!3cQf<9+ zl726#y`Eu|dFtlUSIE?*K4v&gzxnF3+o?}{S=}wWNZ@){+B{-p>>Fg1eO-)Pz6r=1 zBf2_LS*lOOx&bE6iV+*Ep~Pk4fh__V_KWSwykJ_d*gp9^z&u{;*jU2WImFJU;RIq6 zzvxS5CHIP_>&H5G&EXjbhaRV>T zzb5UvSFzt2e@Usj^s*;XX5ZKfr>0C=DFg{(nqb9J48JgDbzh>_jXpV%K zS(jRt_xXYZdIB-=J|A4X_;}KfcGf!wMF-sz!Dr#jSRHtieGEz zb)wGIH=pJH`IWe0!K9o63^|1-MJyBVHas#ogC*SueExy^Sm{#CtmZ2`|)^^Ko> zN5296u5SyO=1YB(!g@{lO5d}GlaW1B-)CCM`gR)@ud4#$_Zha$8pDQ?Kc=Z=7-YzMbrNw9y;jBuwlw zt|{C?V8zDYFYO0Zb0f5)>@56^h@FQy+QRyX?zGV?Ji;>G9+p}DK^X<>kCAC+BGMdj z6INgFUbek+mDm-V5Dhc`5++o@4KHfofm<88N5fAxPc@Z0f@LWq;tUVmLN2a{4q7@? zdTVQfj+B_Oy1{!w4vvQon!oIp;hmEco|+IyBlb-2mo&II`$JYJDsqS(-j4dmN%$ac zP*@&g?cBI7&tf+Q4tE$~TfApLeX`buwyXqYE4>IW( Z;VE%@%Dr_kI=vo`%lRO01Iefa;ZF`^bF2UW diff --git a/src/translations/bitmessage_it.ts b/src/translations/bitmessage_it.ts index 2752b054..10765419 100644 --- a/src/translations/bitmessage_it.ts +++ b/src/translations/bitmessage_it.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: Registrazione fallita: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: L'email richiesto non è disponibile, si prega di provarne uno nuovo. Inserisci il nuovo indirizzo email desiderato (incluso @mailchuck.com) qui sotto: @@ -285,259 +285,259 @@ Il gateway email non condurrà operazioni PGP a vostro nome. È possibile 1 hour - 1 ora + 1 ora %1 hours - %1 ore + %1 ore %1 days - %1 giorni + %1 giorni - + Waiting for their encryption key. Will request it again soon. - + Encryption key request queued. - + Queued. - + Message sent. Waiting for acknowledgement. Sent at %1 - + Message sent. Sent at %1 - + Need to do work to send message. Work is queued. - + Acknowledgement of the message received %1 - + Broadcast queued. - + Broadcast on %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 - + Forced difficulty override. Send should start soon. - + Unknown status: %1 %2 - + Not Connected Non connesso - + Show Bitmessage Mostra Bitmessage - + Send Invia - + Subscribe Sottoscrivi - + Channel Canale - + Quit Chiudi - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. - + Open keys.dat? Aprire keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + Delete trash? Svuotare il cestino? - + Are you sure you want to delete all trashed messages? Sei sicuro di voler eliminare tutti i messaggi cestinati? - + bad passphrase - + You must type your passphrase. If you don't have one then this is not the form for you. - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed - + You didn't enter a chan name. - + Address already present - + Could not add chan because it appears to already be one of your identities. - + Success - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. - + Address too new - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. - + Address invalid Indirizzo non valido - + That Bitmessage address is not valid. L'indirizzo Bitmessage non è valido. - + Address does not match chan name - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. - + Successfully joined chan. - + Connection lost Connessione persa - + Connected Connesso - + Message trashed Messaggio cestinato - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -545,122 +545,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long Messaggio troppo lungo - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 - + Error: The address %1 is not typed or copied correctly. Please check it. - + Error: The address %1 contains invalid characters. Please check it. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. - + Address version number - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Stream number - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. - + Message queued. - + Your 'To' field is empty. - + Right click one or more entries in your address book and select 'Send message to this address'. - + Fetched address from namecoin identity. - + New Message Nuovo Messaggio - + From Da - + Sending email gateway registration request @@ -675,431 +675,426 @@ It is important that you back up this file. Would you like to open the file now? - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Riavvia - + You must restart Bitmessage for the port number change to take effect. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). - + Number needed Numero richiesto - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch - + The passphrase you entered twice doesn't match. Try again. - + Choose a passphrase - + You really do need a passphrase. - + Address is gone - + Bitmessage cannot find your address %1. Perhaps you removed it? - + Address disabled Indirizzo disabilitato - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. - + Entry added to the Address Book. Edit the label to your liking. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. - + Undeleted item. - + Save As... Salva come... - + Write error. Errore di scrittura. - + No addresses selected. Nessun indirizzo selezionato. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... - + This is a chan address. You cannot use it as a pseudo-mailing list. - + The address should start with ''BM-'' - + The address is not typed or copied correctly (the checksum failed). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. - + The address contains invalid characters. - + Some data encoded in the address is too short. - + Some data encoded in the address is too long. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). - + Bitmessage Bitmessage - + Identities Identità - + New Identity Nuova identità - + Search Cerca - + All - + To A - + From Da - + Subject Soggetto - + Message Messaggio - + Received Ricevuto - + Messages Messaggi - + Address book - + Address Indirizzo - + Add Contact Aggiungere Contatto - + Fetch Namecoin ID - + Subject: Soggetto: - + From: Da: - + To: A: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: TTL: - - X days - - - - + Subscriptions - + Add new Subscription - + Chans - + Add Chan - + File File - + Settings Impostazioni - + Help - + Import keys Importa chiavi - + Manage keys Gestisci chiavi - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About - + Regenerate deterministic addresses - + Delete all trashed messages - + Join / Create chan @@ -1124,55 +1119,71 @@ Are you sure you want to delete the channel? Aggiungi una nuova voce - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1547,7 +1558,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status diff --git a/src/translations/bitmessage_ja.qm b/src/translations/bitmessage_ja.qm index 8e5c06ee10c114e90b1e5baf94faa3f7f10b1adf..f0c7b64c4af9c2b845d98fafbb54fd77ee8b17e2 100644 GIT binary patch delta 1671 zcmX9`mtec$<=^E4jW+dV(>j101F%N{jP+SMht6#P{0Gz`yiAp1#BWAT&e^z zA43}M2V{rC#BT^#b`3MS#)0=r;4rxzaOj3xaXH|65%atE0j7bKSa#wbfGQ*Ea*8i& zJxj1MtASo_H)7Cfgy$y#sc*3+aTkylgSA(D0GSGrl6)Xbh14+x5M@?8rZwM=Q(2b4 z%6n+N6-5*u;m!R4z;W2%#Ax-!jN8WFfEB+ob8||8jC97!qy~8ZIkPx&KCL>!=(zotu}E z10f$CXDNfC$U4xf@DyJav~Lgw-zgdx^y#z^my1jAX@O5efPm6=gn{rNln zvuM{r{@zZCk0z7vHf^Rj4GYW<&Vb@WVgBn=z|=y)v-LF)UL|-Xkc%^egeAi|Kui;Y z`W}({r9xEB6>|5j5VwX*m@!XCDX#<6HNw8!cp!a~aLSW-7BWKV5PhE>TOgc1Lt`usl}ssM?hBRxIfar_)khq^3oBYU*z3f@NfmyjdF3(@x>JAPq0d z1_A@5@v{?wEv?esR%)6i6Y0TVa|&6D^zc(lfL-5UQ1MnVvC@kL&w$VjX|sDdrMy}C zQb(#)O6i|AMDKN1<{=rR@*HIAnvT)72eRGqIzZwm%l~{md0rv`(zj5CHpUTbb4`=>Vzm{2Y^d$EdEnaeHCjgXk9hDP2>ZzZo-_>THG zrm)>d+$)k4@%_Qn_d!KM9M!aqS0weh(*W-=V$3te9uMMhJE^Gg8KqNZDXxpdWN?e( zdf5CA%JcO)*QS}eNtgb4l+OS>p&v36pad@hNTiY>Y1@tkq7xam0?u+}eaa?^K%4R=lR?4iFk*VIveAs_qJotjNrb@{l${!) zwH!BiOSJk)Dz!g7P0Uf*me8&#I+c^58VLDH6@9*hT$!Lsev<=uR;qUS9wk>~s_s^2 za#gN+el(WE9#Q?Bu!xdTp~h`GC)!(W|KF`MMNkL4$p<#wP_F=)vY}Re^mlsi!l)}E zJSezr>IY?>ah6I$s5c#LS)f6)Z2%GFdq90%g9H1$^H^j|omX`Vy{I;Cqy3-?pPmDG~# zPYjnToR9oXScci2zXJp1?Zp&b3*qJ87gxI-t&!S%0{0r6A B+!z1= delta 2142 zcma)7dr*{B6#sp%eSF`3yFwWGVo3yFpoEZuLgEWVSX2}hbzy-G7I7C@2uNW~(-cKv z)+ZvPMw*(WGQJ-aYBEfi4h{~Q$z+<-5Lud)lhUzu9397|`_H-eeD|L7JHOw#_iI_n z{#eGA_jcR{qWuBB1({b-g6{| z8_ojQ>9U4X75h9xH(+YvNpimDvXibNu`~70DFc|`l1jjCW5V2OsQ@1) za?Wr9*vuGOsW43wlQL@uU`SzB&K&}T?PV&uQvrhmnJxPWLO~;QqK2b$4a~!KLOQ6H z>0-wMOgO7pPuT|svjOcyh<*h-e}xrLXR*b12#v#oVaswlfnh=H&N=j<$0c^BtrpO2 zWt&sT_7mAF#b>D2L+owd4#eu%pEr1tLSs11YJqAEG-`mqCJF;ErpE@tgu@9P1gmgzGG%?IC}2 ze;%CzyqU=Bl8I7V3?F`E9AF*8k2UNDCYbr?=KBP989z@Vn1I|kCJrTp0y%8^k-j=Dh^ z*LHz4yQ54jF9u>hQkvhg0Q1i)7wWZio7|MkV|!4Ool~y*&I@3ZjyYvsZ`!WhyZR;& ze^A*FQcYc6ul&(KRm&RXAHI}+B&!;s_?6%dP|Z5Mj*fk;T4*)^3V&7U$4SKbZ>owx zq{&F9>YzLApD|N)@J7P)qPBAl`Fy%91R(l9t;1e!uY8Mxcpd3N1Vr|4j zisC08lkSspO7U3LJ?eK+JhQlt)|bVfH3hEOof|r@{)Q4sYrJ%N0#vBIWB3&1nA+ zaEPAlye@c7+^<>pPEWcfA86L4#sK3RH3uDDz>sLoQCk{GDr!zJcIrf(%jRCyobsS_ z#)+DXS!84HXfEj}tv=ituJCkBleH6Q^;(JSx0z1$Hpl_aJwV(&Ir-Dg#ELA>dr$&| z-jv@TyOvl{$*oO8h}CHMhqb8$u37#ob2O=PLyIpcPI8!b(34lEx1f!FPzt0S(M|@D zGWT=s+F!^&bhLKc>=ATpMeWyBp~ULcK<$O0)NyoG{p~i-?0H}5CLJb#ea`9PYa$3}ur6u;X?jfSb$gm01Loekqxx$4FKpK} zbSHoT2Xqh1KBNv;lO)9@&iPXV>y{|+wCp~BvYy_KhL!gGtJpKPyJfEIWNy* z&2a5wGMsm_dbxF@vo9QX9+>VGkM0yTAwSigmTSq$v)G>Ia<`<}tWnuEyWNyq^fanE fHQSUnFWX|z6XQ%4>kNxE-BtjZHd@VTPf`2>MDP EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,261 +245,246 @@ Please type the desired email address (including @mailchuck.com) below: %1は古いバージョン1のアドレスです。バージョン1のアドレスはサポートが終了しています。すぐに削除しますか? - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. - + Encryption key request queued. 暗号鍵のリクエストはキューに入りました。 - + Queued. キューに入りました。 - + Message sent. Waiting for acknowledgement. Sent at %1 - + Message sent. Sent at %1 メッセージは送信されました。送信先: %1 - + Need to do work to send message. Work is queued. 送信のために処理を行う必要があります。処理はキューに入りました。 - + Acknowledgement of the message received %1 メッセージの確認を受け取りました %1 - + Broadcast queued. Broadcastがキューに入りました。 - + Broadcast on %1 Broadcast: %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 問題: 受信者が要求している処理は現在あなたが設定しているよりも高い難易度です。 %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 問題: 受信者の暗号鍵は正当でない物です。メッセージを暗号化できません。 %1 - + Forced difficulty override. Send should start soon. 難易度を強制上書きしました。まもなく送信されます。 - + Unknown status: %1 %2 不明なステータス: %1 %2 - + Not Connected 未接続 - + Show Bitmessage Bitmessageを表示 - + Send 送る - + Subscribe 購読 - + Channel - + Quit 終了 - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. プログラムを同じディレクトリに保存されているkeys.datファイルを編集することで鍵を管理できます。ファイルをバックアップしておくことも重要です。 - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. %1に保存されているkeys.datファイルを編集することで鍵を管理できます。ファイルをバックアップしておくことも重要です。 - + Open keys.dat? keys.datを開きますか? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) プログラムを同じディレクトリに保存されているkeys.datファイルを編集することで鍵を管理できます。ファイルをバックアップしておくことも重要です。すぐにファイルを開きますか?(必ず編集する前にBitmessageを終了してください) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) %1に保存されているkeys.datファイルを編集することで鍵を管理できます。ファイルをバックアップしておくことも重要です。すぐにファイルを開きますか?(必ず編集する前にBitmessageを終了してください) - + Delete trash? ゴミ箱を空にしますか? - + Are you sure you want to delete all trashed messages? ゴミ箱内のメッセージを全て削除してもよろしいですか? - + bad passphrase 不正なパスフレーズ - + You must type your passphrase. If you don't have one then this is not the form for you. パスフレーズを入力してください。パスフレーズがない場合は入力する必要はありません。 - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed Chan名が必要です - + You didn't enter a chan name. chan名が入力されていません。 - + Address already present アドレスは既に表示されています - + Could not add chan because it appears to already be one of your identities. chanを追加できません。既にアドレス一覧に含まれています。 - + Success 成功 - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. chanの作成に成功しました。他の人がchanに参加できるようにするには、chanの名前とBitmessageアドレスを伝えてください: %1 アドレスは「アドレス一覧」に表示されます。 - + Address too new アドレスが新しすぎます - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. このBitmessageアドレスは正当ですが、バージョン番号が現在使用中の物より新しいです。Bitmessageをアップデートしてください。 - + Address invalid アドレスが不正です - + That Bitmessage address is not valid. このBitmessageアドレスは不正です。 - + Address does not match chan name アドレスがchan名と一致しません - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. このBitmessageアドレスは正当ですが、chan名と一致していません。 - + Successfully joined chan. chanに参加しました。 - + Connection lost 接続が切断されました - + Connected 接続済み - + Message trashed メッセージが削除されました - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -507,122 +492,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 エラー: Bitmessageアドレスは「BM-」で始まります。確認してください %1 - + Error: The address %1 is not typed or copied correctly. Please check it. エラー: アドレス %1 は正しく入力、またはコピーされていません。確認して下さい。 - + Error: The address %1 contains invalid characters. Please check it. エラー: アドレス %1 は不正な文字を含んでいます。確認して下さい。 - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. エラー: アドレスのバージョン %1 は現在使用中の物より新しいです。Bitmessageをアップデートする必要があるか、連絡先がより賢いです。 - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. エラー: アドレス %1 でエンコードされたデータが短すぎます。連絡先のソフトウェアが何かしら誤っている可能性があります。 - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. エラー: アドレス %1 でエンコードされたデータが長すぎます。連絡先のソフトウェアが何かしら誤っている可能性があります。 - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. エラー: アドレス %1 には何かしら誤りがあります。 - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. エラー: 送信元アドレスを指定してください。まだ作成していない場合には「アドレス一覧」のタブを開いてください。 - + Address version number アドレスのバージョン番号 - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. アドレス %1 に接続。%2 のバージョン番号は処理できません。Bitmessageを最新のバージョンへアップデートしてください。 - + Stream number ストリーム番号 - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. アドレス %1 に接続。%2 のストリーム番号は処理できません。Bitmessageを最新のバージョンへアップデートしてください。 - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. 警告: 接続されていません。Bitmessageはメッセージの処理を行いますが、ネットワークに接続するまで送信はされません。 - + Message queued. - + Your 'To' field is empty. 宛先が指定されていません。 - + Right click one or more entries in your address book and select 'Send message to this address'. アドレス帳から一つ、または複数のアドレスを右クリックして「このアドレスへ送信」を選んでください。 - + Fetched address from namecoin identity. namecoin IDからアドレスを取得。 - + New Message 新規メッセージ - + From 送信元 - + Sending email gateway registration request @@ -637,431 +622,426 @@ It is important that you back up this file. Would you like to open the file now? 入力されたアドレスは不正です。無視されました。 - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. エラー: 同じアドレスを複数アドレス帳に追加する事はできません。既存の項目をリネームしてください。 - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart 再開 - + You must restart Bitmessage for the port number change to take effect. ポート番号の変更を有効にするにはBitmessageを再起動してください。 - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). プロキシの設定を有効にするには手動でBitmessageを再起動してください。既に接続がある場合は切断されます。 - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch パスフレーズが一致しません - + The passphrase you entered twice doesn't match. Try again. 再度入力されたパスフレーズが一致しません。再入力してください。 - + Choose a passphrase パスフレーズを選択してください - + You really do need a passphrase. パスフレーズが必要です。 - + Address is gone アドレスが無効になりました - + Bitmessage cannot find your address %1. Perhaps you removed it? アドレス %1 が見つかりません。既に削除していませんか? - + Address disabled アドレスが無効になりました - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. エラー: 送信しようとしたアドレスは無効になっています。使用する前に「アドレス一覧」で有効にしてください。 - + Entry added to the Address Book. Edit the label to your liking. アドレス帳に項目が追加されました。ラベルは自由に編集できます。 - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. アイテムをゴミ箱へ移動。 - + Undeleted item. - + Save As... 形式を選択して保存 - + Write error. 書き込みエラー。 - + No addresses selected. アドレスが未選択です。 - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... テスト中 - + This is a chan address. You cannot use it as a pseudo-mailing list. chanアドレスは仮想メーリングリストのアドレスには使用できません。 - + The address should start with ''BM-'' アドレスは「BM-」から始まります - + The address is not typed or copied correctly (the checksum failed). このアドレスは正しく入力、またはコピーされていません。(チェックサムが一致しません)。 - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. このアドレスのバージョン番号はこのプログラムのサポート範囲外です。Bitmessageをアップデートしてください。 - + The address contains invalid characters. 入力されたアドレスは不正な文字を含んでいます。 - + Some data encoded in the address is too short. このアドレスでエンコードされたデータが短すぎます。 - + Some data encoded in the address is too long. このアドレスでエンコードされたデータが長過ぎます。 - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). 使用中のポート %1 (設定で変更できます)。 - + Bitmessage - + Identities - + New Identity - + Search 検索 - + All 全て - + To 宛先 - + From 送信元 - + Subject 題名 - + Message メッセージ - + Received 受信日時 - + Messages - + Address book - + Address アドレス - + Add Contact - + Fetch Namecoin ID namecoin IDを取得 - + Subject: 題名: - + From: 送信元: - + To: 宛先: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions 購読リスト - + Add new Subscription 購読先を追加 - + Chans - + Add Chan - + File ファイル - + Settings 設定 - + Help ヘルプ - + Import keys 鍵をインポート - + Manage keys 鍵を管理 - + Ctrl+Q Ctrrl+Q - + F1 - + Contact support - + About 概要 - + Regenerate deterministic addresses deterministicアドレスを再生成 - + Delete all trashed messages ゴミ箱のメッセージを全て削除する - + Join / Create chan chanに参加 / 作成 @@ -1086,55 +1066,69 @@ Are you sure you want to delete the channel? 新しい項目を追加 - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + %n day(s) + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1509,7 +1503,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status ネットワークの状態 diff --git a/src/translations/bitmessage_nl.qm b/src/translations/bitmessage_nl.qm index 1d18a28d176e89bfff393320ebc771433a454258..f8c7f9d2d2eaea9032789a50dec11e636035b165 100644 GIT binary patch delta 1047 zcmX9+Yiv_x7=BKBEc)&{q>GEV#mfdJZU~aa-E5=l#4U_M zhy=-$!DJY0aFR(jr(mcAo1#QF2Vxw|49tj$OE%{ZaKW%(ydXa0{Cdv$zV~~d%lq!w za=yOD6F(1NB~VZXi2DI&DIlEy77qfI%K&={s5u9CW`P%$@_Yhl3R9jkcs&tkh(>{djL{`_1UjN9-RPTMQLnk>I8~cqfXun+*^rlk;6dYL44TcCh@gv|czwbVsb?N&}!jZDRf| z@sZPEHuQ;=KhTM@PHZ@FA0vESYz;91%T00XZ3@f%Q5@bU02w~AMSgm-){S8NWTPnTr9+TKDl{d!e)PG1?H$6$hx228SPceypY1a-4DE?1+e-8_@ zACoTiKLBXkq+3=xcL$|E!!9P_m!p?U=x9c6@1c;;DtX}Ni;P~8Pv12VOv{rWa}>p| zC{rB+1QikJq4}yO4AiqZWt(roNfUQjagAd1SXVQ$yTVuO0ILZdC zs%P#wAb(yh`kwdhqiSj07VgNTTIMVVfy@|(%6gIq6QKRUafhW|9LA- zENIe>ulbva{-woJ_60h=uB8&(M*lx{p^7sMEVrv2bdYh;UbOHPosZdj&R*qxfjyxz z3Gaw~s$-sxztf-ZYT@i()>}S(oXZFO-ADbL^@RRKl*01n^t8~%{+mq%dc=_#b`pi?^31TGVtIIyUT6ndN5xUyCE3YgbyxOmFQg{_^xn45^L@V0_jx|g z=li@nw|Z+;Q?!2=z#PDM0but6+Ajd^D3JUjus9P?Edy434#b=RR%MXC8>lG+GP=QD zGy##tUy(Btp@BOkQLc5Z}j?USZ*f`WeRcP#ZBEXZFVQ z(}6`yPdhP9*v5R2-9d#v6H#-Rxg}W$D3(d?8*T?;+awEyw*k5nlGmOc0fg<6H{Fz2 zYmt1_Kx&z9O0G4>0m?3^s*$74HB$AZ>eVle%3x zLZh^;Vh2h7tF&)Fp^lgK%j|R&KZ$6pWFI+MNCmps#TTeE?Ko>cdOu03WStgLL~?`O z@D~wHJ;rwKVW{(C?Aw`#3BPB9tIQc4?nUS)IfR*Kkyb^jYT3W86>6ScgQ;ZjX#jY<+9EY3L_$>{UM?; zTlQmVh)7VL(~%Cy#^m$)-zdQ<`RN{#FfLo(cchmREm1^|E~f@IE6nF5zEo>Gd7+@xr^{2(=$FX-$61v+NDy5>HI?+@s&Ep@E0u{=pkA`Sps%%w|B5{Y5gY{!Hj1{V<8)|7* zZmDYDd7Q3zpX!xI6KMvXQ@!UVVurJ-9>zoYA6qLLvyxPoG;}aFTP+_Y$x|lONzM_v z!za{ke;G|}gL>n_JybX$qCYEv6oZJ04iVE1h?xGZCd)*HxOX*kT|O#2sOj-iUi}#d z4Tv}Jow+!e$sUmzv@p?Yp9&kSsD>Rbc_=AQUzur6s?Ay-SeG25S4~Fw;6vTN5ps&C zar^2*A&Ejb&D{Zfct2p!#smkH6RN<#%-q2GWNol7UeE;fmN$5R7L6&7{h^xEJ~X!f zdFZcT^3hHiVT=v`>hJR1xtM+DV#@Yo!Ib$wuyESgC&S(q_v}^Np+$zDbTG9_t<&N020r0+X%I@R4p*7OWpi(Uy2|Zx*{ddt?4r^VhWQ7j07{Jj diff --git a/src/translations/bitmessage_nl.ts b/src/translations/bitmessage_nl.ts index f0ac761a..ddd088d0 100644 --- a/src/translations/bitmessage_nl.ts +++ b/src/translations/bitmessage_nl.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: Registratie mislukt - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: Het opgegeven e-mail adres is niet beschikbaar, probeer een ander adres. Vul hieronder het nieuwe adres (inclusief @mailchuck.com) in: @@ -248,259 +248,259 @@ Voer het gewenste e-mail adres (inclusief @mailchuck.com) hieronder in: 1 hour - 1 uur + 1 uur %1 hours - %1 uur + %1 uur %1 days - %1 dagen + %1 dagen - + Waiting for their encryption key. Will request it again soon. Aan het wachten up hun encryptie sleutel. Zal binnenkort opnieuw proberen. - + Encryption key request queued. Encryptie sleutel aanvraag toegevoegd aan de wachtrij - + Queued. In wachtrij. - + Message sent. Waiting for acknowledgement. Sent at %1 Bericht verzonden. Wachten op bevestiging. Verzonden op %1 - + Message sent. Sent at %1 Bericht verzonden. Verzonden op %1 - + Need to do work to send message. Work is queued. - + Acknowledgement of the message received %1 Bevestiging van het bericht ontvangen op %1 - + Broadcast queued. - + Broadcast on %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 - + Forced difficulty override. Send should start soon. - + Unknown status: %1 %2 Status onbekend: %1 %2 - + Not Connected Niet Verbonden - + Show Bitmessage Toon Bitmessage - + Send Verzend - + Subscribe Abonneer - + Channel - + Quit Sluiten - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. - + Open keys.dat? keys.dat openen? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) - + Delete trash? Prullenbak legen? - + Are you sure you want to delete all trashed messages? - + bad passphrase verkeerd wachtwoord - + You must type your passphrase. If you don't have one then this is not the form for you. - + Bad address version number Slechte adres versienummer - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed - + You didn't enter a chan name. - + Address already present - + Could not add chan because it appears to already be one of your identities. - + Success Gelukt - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. - + Address too new Adres te nieuw - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. - + Address invalid Adres ongeldig - + That Bitmessage address is not valid. Dat Bitmessage adres is niet geldig. - + Address does not match chan name - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. - + Successfully joined chan. - + Connection lost Verbinding verloren - + Connected Verbonden - + Message trashed Bericht weggegooit - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -508,122 +508,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long Bericht te lang - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 - + Error: The address %1 is not typed or copied correctly. Please check it. - + Error: The address %1 contains invalid characters. Please check it. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. - + Address version number Adres versienummer - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Stream number - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. - + Message queued. - + Your 'To' field is empty. - + Right click one or more entries in your address book and select 'Send message to this address'. - + Fetched address from namecoin identity. - + New Message Nieuw Bericht - + From Van - + Sending email gateway registration request @@ -638,431 +638,426 @@ It is important that you back up this file. Would you like to open the file now? Het ingevoerd adres is ongeldig. Worden genegeerd. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Herstarten - + You must restart Bitmessage for the port number change to take effect. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch - + The passphrase you entered twice doesn't match. Try again. - + Choose a passphrase - + You really do need a passphrase. - + Address is gone - + Bitmessage cannot find your address %1. Perhaps you removed it? - + Address disabled - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. - + Entry added to the Address Book. Edit the label to your liking. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. - + Undeleted item. - + Save As... Opslaan als... - + Write error. Schrijffout. - + No addresses selected. Geen adressen geselecteerd. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... Testen... - + This is a chan address. You cannot use it as a pseudo-mailing list. - + The address should start with ''BM-'' - + The address is not typed or copied correctly (the checksum failed). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. - + The address contains invalid characters. - + Some data encoded in the address is too short. - + Some data encoded in the address is too long. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). - + Bitmessage Bitmessage - + Identities - + New Identity - + Search Zoeken - + All Alle - + To Naar - + From Van - + Subject Onderwerp - + Message Bericht - + Received Ontvangen - + Messages - + Address book - + Address Adres - + Add Contact - + Fetch Namecoin ID Ophalen Namecoin ID - + Subject: Onderwerp: - + From: Van: - + To: Naar: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions - + Add new Subscription - + Chans - + Add Chan - + File Bestand - + Settings Instellingen - + Help Help - + Import keys Importeer sleutels - + Manage keys - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About Over - + Regenerate deterministic addresses - + Delete all trashed messages - + Join / Create chan @@ -1087,55 +1082,71 @@ Are you sure you want to delete the channel? Nieuw adres toevoegen - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1510,7 +1521,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status netwerkstatus diff --git a/src/translations/bitmessage_no.qm b/src/translations/bitmessage_no.qm index c88d12609562e16f93f7d370a3d8791313d9ff96..3c22ad10c9a897dba6a04e396783bcf29ae71f1d 100644 GIT binary patch delta 2579 zcmX9-&i8%iJ9pPr@!9xniSH!!9I80HG7A~60u(C0lcxjVnt0MUU!y)UGzodDN&km{xaJ)IyuaVKWk zaov8%Yb0Qh6>{!dAlM0V0nhn6KrSr;E*qfT!MknsG0=rFc>OgPf(`?oE^r8X4lL>d zhdt|o{6;h@_W@RnLWkOqK=(7~tmk^vb@XUi4U9;KM@At@R-)gH&;3HUN5YkO2QG(gp8)PYW5~k*tm2ri`WzYlfv;Yb^w~)c5Kr_c-z1N z4L=}!(gaW+r5f!9W;V1`)5G@;;J#4f*1(?jg~om1G9Yx5ruS=N_OF@&4NEC6FHN-H z??B~OnmMat0jF)6C68EvjuSL%ZF3ueiAOY>rr!s2o|@t*+~69cDUK@x+HBQao=)`D zYi=$%%T~ymdh=I6-ZITYX+Dq~qKYmN$3W3kvzO~q(Xz6Z|0_kOy}vM_ zfnxgtA0SK>-D~%dz!qJMZD5Pnb0drxLTeq!OYl@w#7ctouL zemXB!<#6pDAXe)lfhJ4rn3^WmHD;0ceerP^i3iLP8{>KL)Q{rpLt}vcJ0we+bwI8~ zvV^Aq=ekRS4h8~ek4OPlR(N5fO&WHYy>@LOMegp&Dae;*E6jNH-=u{fSn6;5r1+w0 zYT=EvsxM3IHAvc-CIGFvNTuCKWb9R`)O9=86QteC!+`BoQh9+hFfL9y{iGXEAxjkr zomj~@>4xJOes_|ETa44xQSSF!F7SmdNA|AbSY#`5|7Z~yQY{aDVFmuQN*>X0jbbv$ z(~|Zxvkr1Z7)w5ApBz_M&Vb*`$sQ!OzqhF@WDg zxoow}@jE2%`;zzfJS`uIB7wkaxjL1iw^by_S2ymF=L6YaO@6!C>i+JfK*KwWQb z(Lb*M-tV;~?N4z3JZA~vg{Ch7mK@VX_Kx9vztbhQGt(LWtXsax7igWM`)*_l;9{sQ z^-f!0bAMgN5&l=_>b54V08%P-JJ(Q*m|{oWkDrkNZC3k-lnuHwp3Lw{tnO;)G(h~1 z?%&qWEx4173PuVt! z+S#bj=uVMEHR>}@kx1kX{a#1jvvGv}*ij$0(pg{igRO$jbWMNJ))vr0U!OV%&I6FKNPDd}Lz|e;+u-TN#WQu9>IHmF)1CEfDn|W4XSH4o0 z&`8yHRqBUr0F3*ThAmWYcCqrru?s7*LV41j<8#bMb^olDz&5I%D=V-lN1d=_Hd}dE zjrcvBQ*lI%%q|3CwyU#u4d(uOHOsdp4KGd2nh{I`vb9ln#IqzGsp{U(8n7-^55=)} zi|?vOh539e?%A=bse0U*#J0PrS7#BIE>LSMBy{Y5Ovz!VyQ|CP1Z|k+&5pnb0S*_e)eY#v)YV!x$tbhLO@veG9vSw zY7zx?OU``PB)B}#=ptnXXEiTxZCUJI{)_Jzm-46?AAB=&eFtQo+vZdru{9<@w~9Gw G1mO?-Gy0bR delta 3268 zcmaJ@2~<;88vb71d)ZzV5IAlX5rMk0DNwY62#BJju7DPW0Fi_xv4BOS7}RPNuwqeJ zWI!Fo4X{crZdlh=QK?K?EjV`QxJ(yIZEMjg==>Psr7UazKC|_|k_!co+Bzx)<~ie9d;?(p89evw-=UA0&~Xq;MN# zp@#uq0k)yP0y)93-A~SJK8D`)0l>->47NN5hR4B8O6zIIF}znnlT`{8$G z1u2Y2*rqcSgxD(cr(*KAGXVz|L~OiEjPnc_a}opL(qA)1Bm#6k!`sL z^!=R~*pE`^{V!&SVla@soAHkO9(aEjGkPf*xKP84v8|(&W->uBess^kXs*!tKHo5L zbG8BR-euyU0{pxfeHYy;UBDRqDO15Y%$j-R@B)EZ?_h2QrX(_(Ybnx}N6gXfRFet2 zn8s1N0nt9I9B`g_*aMUBD&~nO7!Zex#2YEHNgGAO1HUHtIEY5JQ%!xp6M1GW2clMs zydID&m59c+FQe~QMEdc+0p~qLX{(KZeUK>kTgre-r)aHtVFxhxil{2?CLpnhs$=ND zNQtQ0R0lYY7hQ@Y8Thm4YVK*^GmEHAr3K2TiEeWlz%s4q$4$Kf;Q^~Cl@|JbleIf=g9378ohkyzvENuv%YMM_C)U@r6gZZ~nteM@5%Rxe$7!5MK@}Sm z+X}=zW=%#r+OK5Gy2#UsL)pstD=9(^dqi=D9NEY=mC)Mr8@5@Z18nY~u zC93_122QunomipgQUuCC{$Vbwn^K<7ER{K)Q{oS~|>lmQ_S*~U%IWqGw zS2JP{z%n*{+mXC3mG41wPZ<#WUB)ki&<(-`!GR zv=8s!L^LURl^>&Lfv^UC!aWVp+l`;n{sn<+CqIAbL5fVlCq_{T0{+IED(it)T=_h2 za_ry}enlQR(xl@{{mEc5!Q$)xy_Ssa&M2^49> zNslSj)fdHS3yjpLZi-D`dIL6f;zdOS?xu2aMffeC^@(`P*)Xziw zw-uC$wYTJvYih_*XL({d1;RJVb$6x$pFWW56UotLu{^n*^e*YL%DuJncU}u1yOZVS zx`2mN>ty+1;T{=wmLIP8l{%YNexjKiD6f^D&a0>OAo({j1RniD`Hv+_fyTQ66H!N< z^Ho8XO_+J5TadFY!0VfYKIKLN?L5Kl-f?P7+k_#F^MQf01x+~deTkb@?r9dLKcUQj zy3#BpyRva=> z?Q$O}jxrham|U>RrW=Yzdva{YUB%^OlFN$}EoySmw@`5{$3m~=Va5GfWXH8laoJkwrs*A?(w<{l9rTff%>s5?N!r2rP(o2 zweBbSKD|m+_7T;NiB@fS^EK+}?y8Fw{=mA&s%8)3IT7rslrUDAC$q|e7*(rgIq;6! zDr?oM_Qd(b|3SX0pQgLeYjjBMZCnJL`bF(?j#7OhO+Dpfig2_+{l@kHAfa77_rv4B z2R`b!@^^{dSEdZ9@C?8MJ5_Vp808$64LY#m#?%F(92EnvE{ zqYBY4H7|~SZoPiEwmY!??X8Ajvj-tz7D{?tq(Lv>A4ZQo^&i&OX`dH6jxT0C6Usad z`m6gFgG&3q!wiDrOUI0t?pimsfB2UAV*d8iS&Hoz(fBjKu)MaLw z(o-@rwV8`DXq6SL*BV0%+Ei1LjYgLhl$e;V%gC^9K+wjU7G+u&a=k8f;j?|UDnpl< zX)q=|J6QbWV1F;i&@` EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -247,120 +247,120 @@ Please type the desired email address (including @mailchuck.com) below: 1 hour - 1 time + 1 time %1 hours - %1 timer + %1 timer %1 days - %1 dager + %1 dager - + Waiting for their encryption key. Will request it again soon. Venter på krypteringsnøkkel. Sender straks en ny forespørsel. - + Encryption key request queued. Forespørsel for å finne krypteringsnøkkel er satt i kø. - + Queued. Satt i kø. - + Message sent. Waiting for acknowledgement. Sent at %1 Beskjed sendt. Venter på bekreftelse. Sendt %1 - + Message sent. Sent at %1 Beskjed sendt. Sendt %1 - + Need to do work to send message. Work is queued. Trenger å utføre arbeidsoppgave for sende beskjed. Denne er satt i kø. - + Acknowledgement of the message received %1 Bekreftelse på beskjeden mottatt %1 - + Broadcast queued. Kringkasting satt i kø. - + Broadcast on %1 Kringkasting på %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problem: Det nødvendige arbeidet som kreves utført av mottaker er mer krevende enn det som er satt som akseptabelt. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problem: Mottakerens nøkkel kunne ikke brukes til å kryptere beskjeden. %1 - + Forced difficulty override. Send should start soon. Tvunget vanskelighet overstyrt. Sender snart. - + Unknown status: %1 %2 Ukjent status: %1 %2 - + Not Connected Ikke tilkoblet - + Show Bitmessage Vis Bitmessage - + Send Send - + Subscribe Abonner - + Channel Kanal - + Quit Avslutt - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Du kan administrere nøklene dine ved å endre filen keys.dat i samme katalog som dette programmet. Det er viktig at du tar en sikkerhetskopi av denne filen. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -369,17 +369,17 @@ It is important that you back up this file. Det er viktig at du tar en sikkerhetskopi av denne filen. - + Open keys.dat? Åpne keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Du kan administrere nøklene dine ved å endre filen keys.dat i samme katalog som dette programmet. Det er viktig at du tar en sikkerhetskopi av denne filen. Vil du åpne denne filen nå? (Pass på å lukke Bitmessage før du gjør endringer.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -388,122 +388,122 @@ It is important that you back up this file. Would you like to open the file now? Det er viktig at du tar sikkerhetskopi av denne filen. Vil du åpne denne filen nå? (Vær sikker på å få avsluttet Bitmessage før du gjør endringer.) - + Delete trash? Vil du slette kastet innhold? - + Are you sure you want to delete all trashed messages? Er du sikker på at du vil slette alle kastede beskjeder? - + bad passphrase Dårlig passordfrase - + You must type your passphrase. If you don't have one then this is not the form for you. Du må skrive inn passordfrasen din. Hvis du ikke har en kan du ikke bruke dette skjemaet. - + Bad address version number Feil adresseversjonsnummer - + Your address version number must be a number: either 3 or 4. Ditt adressetypenummer må være et nummer: Enten 3 eller 4. - + Your address version number must be either 3 or 4. Ditt adressetypenummer må enten være 3 eller 4. - + Chan name needed Kanalnavn nødvendig - + You didn't enter a chan name. Du oppga ikke noe kanalnavn. - + Address already present Adressen eksisterer allerede - + Could not add chan because it appears to already be one of your identities. Kunne ikke legge til kanal siden den ser ut til å allerede være lagret som en av dine identiteter. - + Success Suksess - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Opprettet ny kanal. For å la andre delta i din nye kanal gir du dem dem kanalnavnet og denne Bitmessage-adressen: %1. Denne adressen vises også i 'Dine identiteter'. - + Address too new Adressen er for ny - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Selv om Bitmessage-adressen kanskje er gyldig så er tilhørende typenummer for nytt til å håndteres. Kanskje du trenger å oppgradere Bitmessage. - + Address invalid Ugyldig adresse - + That Bitmessage address is not valid. Bitmessage-adressen er ikke gyldig. - + Address does not match chan name Adresse stemmer ikke med kanalnavnet - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Selv om Bitmessage-adressen du oppga var gyldig stemmer den ikke med kanalnavnet. - + Successfully joined chan. Deltar nå i kanal. - + Connection lost Mistet tilkobling - + Connected Tilkoblet - + Message trashed Beskjed kastet - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -511,122 +511,122 @@ Det er viktig at du tar sikkerhetskopi av denne filen. Vil du åpne denne filen - + Message too long Meldingen er for lang - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 Feil: Bitmessage-adresser begynner med BM-. Vennligst sjekk %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Feil: Adressen %1 er skrevet eller kopiert inn feil. Vennligst sjekk den. - + Error: The address %1 contains invalid characters. Please check it. Feil: Adressen %1 innerholder ugyldige tegn. Vennligst sjekk den. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Feil: Typenummeret for adressen %1 er for høy. Enten trenger du å oppgradere Bitmessaage-programvaren eller så er det fordi kontakten din har funnet på noe smart. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Feil: Noen av de kodede dataene i adressen %1 er for korte. Det kan hende det er noe galt med programvaren til kontakten din. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Feil: Noen av de kodede dataene i adressen %1 er for lange. Det kan hende det er noe galt med programvaren til kontakten din. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. Feil: Noe er galt med adressen %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Feil: Du må oppgi en avsenderadresse. Hvis du ikke har en gå til 'Dine identiteter'-fanen. - + Address version number Adressetypenummer - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Angående adressen %1, Bitmessage forstår ikke adressetypenumre for %2. Oppdater Bitmessage til siste versjon. - + Stream number Strømnummer - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Angående adressen %1, Bitmessage kan ikke håndtere strømnumre for %2. Oppdater Bitmessage til siste utgivelse. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Advarsel: Du er ikke tilkoblet. Bitmessage vil utføre nødvendige arbeidsoppgaver for å sende beskjeder, men ingen vil bli sendt før du kobler til igjen. - + Message queued. Meldingen er lagt i kø. - + Your 'To' field is empty. Ditt 'Til'-felt er tomt. - + Right click one or more entries in your address book and select 'Send message to this address'. Høyreklikk på en eller flere oppføringer i adresseboka og velg 'Send beskjed til denne adressen'. - + Fetched address from namecoin identity. Hentet adresse fra Namecoin-identitet. - + New Message Ny beskjed - + From Fra - + Sending email gateway registration request @@ -641,431 +641,431 @@ Det er viktig at du tar sikkerhetskopi av denne filen. Vil du åpne denne filen Adressen du oppga var ugyldig og vil derfor bli ignorert. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Feil: Du kan ikke legge til samme adresse i adresseboka flere ganger. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Omstart - + You must restart Bitmessage for the port number change to take effect. Du må ta omstart av Bitmessage for at endringen av portnummer skal tre i kraft. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage vil bruke proxy fra nå av. Hvis du vil kan du omstart av programmet for å lukke eksisterende tilkoblinger (hvis det finnes noen). - + Number needed Trenger nummer - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever Vil ikke igjensende noensinne - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Legg merke til at utløpstiden du oppga er kortere enn det Bitmessage venter for første igjensendingsforsøk, dine beskjeder vil derfor aldri bli igjensendt. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch Passordfrase stemmer ikke - + The passphrase you entered twice doesn't match. Try again. Passordfrasene er ikke like. Vennligst prøv igjen. - + Choose a passphrase Velg en passordfrase - + You really do need a passphrase. Du trenger sårt en passordfrase. - + Address is gone Adressen er borte - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage kan ikke finne adressen %1. Kanskje du fjernet den? - + Address disabled Adressen er deaktivert - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Feil: Adressen du prøver å sende med er deaktivert. Du må aktivere den fra 'Dine identiteter' før du kan bruke den. - + Entry added to the Address Book. Edit the label to your liking. Ny oppføring lagt til i adresseboka. Du kan forandre etiketten til det du måtte ønske. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. Kastet innholdet. - + Undeleted item. - + Save As... Lagre som ... - + Write error. Skrivefeil. - + No addresses selected. Ingen adresse valgt. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? Vil du virkelig fjerne dette avataret? - + You have already set an avatar for this address. Do you really want to overwrite it? Du har allerede satt ett avatar for denne adressen. Vil du virkelig overskrive det? - + Start-on-login not yet supported on your OS. Start ved innlogging er ikke støttet enda for ditt OS. - + Minimize-to-tray not yet supported on your OS. Minimering til systemstatusfeltet er ikke støttet enda for ditt OS. - + Tray notifications not yet supported on your OS. Varslinger via systemstatusfeltet er ikke støttet enda for ditt OS. - + Testing... Tester ... - + This is a chan address. You cannot use it as a pseudo-mailing list. Dette er en kanaladresse. Du kan ikke bruke den som en pseudo-epostliste. - + The address should start with ''BM-'' Adressen bør starte med ''BM-'' - + The address is not typed or copied correctly (the checksum failed). Adressen er ikke skrevet eller kopiert inn riktig (sjekksummen feilet). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Typenummeret for denne adressen er høyere enn det programvaren støtter. Vennligst oppgrader Bitmessage. - + The address contains invalid characters. Adressen inneholder ugyldige tegn. - + Some data encoded in the address is too short. Noen av de kodede dataene i adressen er for korte. - + Some data encoded in the address is too long. Noen av de kodede dataene i adressen er for lange. - + Some data encoded in the address is malformed. - + Enter an address above. Oppgi inn en adresse over. - + Address is an old type. We cannot display its past broadcasts. Adressen er av gammel type. Vi kan ikke vise dens tidligere kringkastninger. - + There are no recent broadcasts from this address to display. Det er ingen nylige kringkastninger fra denne adressen å vise frem. - + You are using TCP port %1. (This can be changed in the settings). Du benytter TCP-port %1. (Dette kan endres på i innstillingene). - + Bitmessage Bitmessage - + Identities Identiteter - + New Identity Ny identitet - + Search Søk - + All Alle - + To Til - + From Fra - + Subject Emne - + Message Beskjed - + Received Mottatt - + Messages Meldinger - + Address book Adressebok - + Address Adresse - + Add Contact Legg til kontakt - + Fetch Namecoin ID Hent Namecoin-id - + Subject: Emne: - + From: Fra: - + To: Til: - + Send ordinary Message Send vanlig melding - + Send Message to your Subscribers Send melding til dine abonnementer - + TTL: TTL: - + X days - X dager + X dager - + Subscriptions Abonnement - + Add new Subscription Legg til nytt abonnement - + Chans Kanaler - + Add Chan Legg til kanal - + File Fil - + Settings Innstillinger - + Help Hjelp - + Import keys Importer inn nøkler - + Manage keys Administrer nøkler - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support Kontakt support - + About Om - + Regenerate deterministic addresses Regenerer deterministiske adresser - + Delete all trashed messages Slett alle kastede meldinger - + Join / Create chan Delta i / opprett kanal @@ -1090,55 +1090,71 @@ Are you sure you want to delete the channel? Legg til ny oppføring - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + %n day(s) + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1514,7 +1530,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status Nettverksstatus diff --git a/src/translations/bitmessage_ru.qm b/src/translations/bitmessage_ru.qm index 0055e372f9b00d40714bbe3bacc3535517a576e0..b1d40464436e3381119a389387f33bd7682e00ea 100644 GIT binary patch delta 1711 zcmX9;X;2hr5Ph>Vv$MN1yIUY;;}IYdQ9w~S1Qd}o94f{mh(~~^1Oau4fPe~Epot0y z>i~+9Ee}*gCFn*`@rYNc7>EQ*3*teHVoLEyyb={iTm0(%zS*z)z1Oe%b|HIZ9a}Qk z=^?Vbn?_OZ$CBS6}FxQ#xcbY=%X4io)yFAz@fDV7$U)CU^6fw7;Yvr5c~jMH}Zic_Yqot0l>MwxV+AE%HY$3 z>6s_#a#LS4h9hc25>R~+vl3ST`^F&ph##OifO*OdfaN?=x-~#irmSTQx$W4JX$xfA zpz%x$Fu)0~FFpnQ>KOI*mw+|P*bOA;P7cg)$pJ`cVcg;#0V`4&kDRT*{&r@ZRW0D& z#RSarqIa%LPC8{3v%-aq^ zKYjtzs|W&^4280c0Qtl!Ms|=!F1_+a#xB>W*fVb_$$dt#$4KS+k5x3qQFMz}+{`{t zWK$HKTqyRnU%>0($l+bqNbYExg#jAGlKmIACV z`)C#c^gPQx&7_1=(%FBHO#@sloIaLR-?NvSP#+BJcHn{{_mPg{xUeSD*CByR7Kup4 zC@!O$=*P9oO$xh!nVhB41_<)t&UQJ`t4!`f)=;9&a5t>ak*k_{=66>>`=0lDzJ;}(&s-pTSv))2mgUpR|I8MB8snk|40!{@Ii>@^Ae79Yww>m9%K1$~#> z_-*Sbi^mMUc0Es7%lQ)tl-YZ{CJ1qB-GH#g}Smmxv=plw1OO)v))XADk zWo5(zputgDb?aAPl&E%vVLR3jMnLS#FACm}F#Rx0ybmTc#$Fh|KnoMD=m%H&M)N8M5# zwx+N7cU31F{752|s^4+&HP@D0*raN&plF|`dY$(zk&spIZ&UnepW3E#2ED6L z58C^R$efm6adx@x>g~QX_!$)%$9$@tbxjlBHJK>NnnerEH0LulNgbXv-^2UjroS|+ zys2s!uc`HWOYVK6IWCeJysm4GSH2+cyJ*g@won_NX`XD(0nFz`W=bv1NQbD-A}MXI zh#Iy97}X#;zC2A0lzFS%>0)FA8O_u!PU|Ixdws={GwqZ^A#QCYW66GErP_m-8pX@2 zN!AE|@$x;&>02+}tcV24-id8lPl1DD#rCi=T5iY0F6&{$B~|RQCli+kmmwD^ z4T;mWvDFm>D?yw5I)`?yt9C_DF-fyhd!x}62zAolFP=}5mT3Q5%IWVRAj9yen$5JCf)YA-ZZz9biY*k04wjxTEUQeP}e+)te5ed zt}QZ;$R_v2(llMi!Wh7?QSY`i9oY4~-t#hX-QlL6bd*pzUDQvl@&jgg>gUv*26DXh zHBCLh=2Cras18UC)E~1m1D~DJH>44|pjQ34{uC!J*1s)UL)&#Yb?RgpE4Qe_EnUJL zXN%T7En2?h=AqLrjZe!kE=x{L`#LQ>)skIM?`^$~_Ndm1>2?x(Z4_Mh2u;8L0rVdJ AYXATM delta 2177 zcma)6e^gXu8h-BFd*|1^Gb0GiX320QG>{+(1X581k|?KG6EscvF|#m0GvI)O7>p}g z79fmQP!#8wv5KT*Oc{wkNl(Tu?7DdH;A+RSsk`eTvx8#GruNc!Jax)FegC}Q_ul)x z@B2LO^SxheU@z9N^^b>K1~?ZGG#B7M0OlSBQo?9|4|wHsV5%8d5=#Cnu4KdFVemB^ zFl{~f<|H8M6!?8DK>P2YNKXb1FN9C>FktCJQ2$+El8C7j`hZz)A=2drlAlD(Koww} zf_aT60d#xq%3;?Lecb=>`!dRoOh1tsKYSbt*dWou^v75OkO9U8)Ox{2R#qE+kb%{6%n=74S49*VO?xj|u`jtN4t-zAn4U*#X-L+1HJFYQs`itl=rm4OVlegU$z7-THo@D2WYh zCNky)vrqSb2#69p-BtZ!jbMAWkYh?K z+ov!CDwo%mHL-)&Hv{ZU_F4uNIGtm!mr=m^o$Pm=X+Zc0r&~^}?{48{eUb$HDUeGv z?geryxRhSvHz=1Y5D1841?RX!@UtdLy)r{W8s};D0}>tFiJ=g>Rmz=Q6-=-hZos#j z{60MMk8nWqJs)#pD|N@t$MxI*s$%$O^N7{hcIhcr|NH^oltH9S`wwq(djLO%uUbR3 zx0(2@aTIk?Jil$2zDooA_6-yzs*!Jho2RIa{GnWm9+SiORp(RoucTUbiu0sAbA=mt zW2HRzE+O1lD=)35PPR44n^Ugs*II? zOJ#;hwVXb!TNjF3Yf6f`J${tbdsF?XKw^m1t3PcXChc3*pRMtbjZ}ZV zr4n!-7nu3&^mu{<)heRW?+ZcAo&h563X^Xhr3Om8kF!BArjpQHqe9v}LbxYRs6Td| zVkQgQ`bk*Q453*SMMyh@(`$&<)GFchKgVK@3g?=PK*M*!;HvAu{%3^qDGfB-I)x$M zDZr|O!cZWI!0jhKoxY3&-XYEjBP{vPiHj-<0NFaxbZa@CRehql(G4tqLfkxi0zIV! zadUPm@P|!e#~7t^YQ#=k4(Z|VVi#ivq8(n__HXfs9~DsR5&xD?w&=2WMn{EAy&~Rz zh2lMK6mR#_IpCT`dG%vz=pm_AuD3L3mbW%hStd=vNF~kOVoiBs9Z|DdGtd)G54=!w zxh|VD+^_j>-W-z0pccm|N}azpbZibyuG6NB5M2$sv@e5bs?}-hz9E0YS?$gxv83XS z+P^f%k=iFo8in3@L)#ZY(kt`V4jR`I*mkeoT&%rhS_bGh>LRVBzwcF6j|nw?En0 zALvGF*U@whrcNE+#7bvW&wGXxUxrEv)zhQ~%{b5L$d!vc>#9Am&Isy(FSgJK{pDiF zrTm54=YfYN-~?( zmHxQnF`sdC_h;87V|joc{uFgVX|_FQg{7#(V!NM9I#D$~2CD4Btek>Ei@iiWKg(jx juvkqt2Q)c0tJR!yKko)AU*p5v2@&r3$+$aV>hV7S2#Y+P diff --git a/src/translations/bitmessage_ru.ts b/src/translations/bitmessage_ru.ts index 7d972aba..cf04d4fb 100644 --- a/src/translations/bitmessage_ru.ts +++ b/src/translations/bitmessage_ru.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,123 +245,108 @@ Please type the desired email address (including @mailchuck.com) below: Один из Ваших адресов, %1, является устаревшим адресом версии 1. Адреса версии 1 больше не поддерживаются. Хотите ли Вы удалить его сейчас? - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. Ожидаем ключ шифрования от Вашего собеседника. Запрос будет повторен через некоторое время. - + Encryption key request queued. Запрос ключа шифрования поставлен в очередь. - + Queued. В очереди. - + Message sent. Waiting for acknowledgement. Sent at %1 Сообщение отправлено. Ожидаем подтверждения. Отправлено в %1 - + Message sent. Sent at %1 Сообщение отправлено в %1 - + Need to do work to send message. Work is queued. Нужно провести требуемые вычисления, чтобы отправить сообщение. Вычисления ожидают очереди. - + Acknowledgement of the message received %1 Сообщение доставлено в %1 - + Broadcast queued. Рассылка ожидает очереди. - + Broadcast on %1 Рассылка на %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Проблема: Ваш получатель требует более сложных вычислений, чем максимум, указанный в Ваших настройках. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Проблема: ключ получателя неправильный. Невозможно зашифровать сообщение. %1 - + Forced difficulty override. Send should start soon. Форсирована смена сложности. Отправляем через некоторое время. - + Unknown status: %1 %2 Неизвестный статус: %1 %2 - + Not Connected Не соединено - + Show Bitmessage Показать Bitmessage - + Send Отправить - + Subscribe Подписки - + Channel - + Quit Выйти - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Вы можете управлять Вашими ключами, отредактировав файл keys.dat, находящийся в той же папке, что и эта программа. Создайте резервную копию этого файла перед тем как будете его редактировать. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -370,19 +355,19 @@ It is important that you back up this file. Создайте резервную копию этого файла перед тем как будете его редактировать. - + Open keys.dat? Открыть файл keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Вы можете управлять Вашими ключами, отредактировав файл keys.dat, находящийся в той же папке, что и эта программа. Создайте резервную копию этого файла перед тем как будете его редактировать. Хотели бы Вы открыть этот файл сейчас? (пожалуйста, закройте Bitmessage до того как Вы внесёте в этот файл какие-либо изменения.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -392,122 +377,122 @@ It is important that you back up this file. Would you like to open the file now? (пожалуйста, закройте Bitmessage до того как Вы внесёте в этот файл какие-либо изменения.) - + Delete trash? Очистить корзину? - + Are you sure you want to delete all trashed messages? Вы уверены что хотите очистить корзину? - + bad passphrase Неподходящая секретная фраза - + You must type your passphrase. If you don't have one then this is not the form for you. Вы должны ввести секретную фразу. Если Вы не хотите этого делать, то Вы выбрали неправильную опцию. - + Bad address version number - + Your address version number must be a number: either 3 or 4. - + Your address version number must be either 3 or 4. - + Chan name needed Требуется имя chan-а - + You didn't enter a chan name. Вы не ввели имя chan-a. - + Address already present Адрес уже существует - + Could not add chan because it appears to already be one of your identities. Не могу добавить chan, потому что это один из Ваших уже существующих адресов. - + Success Отлично - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Chan был успешно создан. Чтобы добавить других в сhan, сообщите им имя chan-а и этот Bitmessage адрес: %1. Этот адрес также отображается во вкладке "Ваши Адреса". - + Address too new Адрес слишком новый - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Этот Bitmessage адрес похож на правильный, но версия этого адреса слишком новая. Возможно, Вам необходимо обновить программу Bitmessage. - + Address invalid Неправильный адрес - + That Bitmessage address is not valid. Этот Bitmessage адрес введен неправильно. - + Address does not match chan name Адрес не сходится с именем chan-а - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Вы ввели верный адрес Bitmessage, но он не сходится с именем chan-а. - + Successfully joined chan. Успешно присоединились к chan-у. - + Connection lost Соединение потеряно - + Connected Соединено - + Message trashed Сообщение удалено - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -515,122 +500,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 Ошибка: Bitmessage адреса начинаются с BM- Пожалуйста, проверьте %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Ошибка: адрес %1 внесен или скопирован неправильно. Пожалуйста, перепроверьте. - + Error: The address %1 contains invalid characters. Please check it. Ошибка: адрес %1 содержит запрещённые символы. Пожалуйста, перепроверьте. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Ошибка: версия адреса в %1 слишком новая. Либо Вам нужно обновить Bitmessage, либо Ваш собеседник дал неправильный адрес. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Ошибка: некоторые данные, закодированные в адресе %1, слишком короткие. Возможно, что-то не так с программой Вашего собеседника. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Ошибка: некоторые данные, закодированные в адресе %1, слишком длинные. Возможно, что-то не так с программой Вашего собеседника. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. Ошибка: что-то не так с адресом %1. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Вы должны указать адрес в поле "От кого". Вы можете найти Ваш адрес во вкладе "Ваши Адреса". - + Address version number Версия адреса - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. По поводу адреса %1: Bitmessage не поддерживаем адреса версии %2. Возможно, Вам нужно обновить клиент Bitmessage. - + Stream number Номер потока - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. По поводу адреса %1: Bitmessage не поддерживаем стрим номер %2. Возможно, Вам нужно обновить клиент Bitmessage. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Внимание: Вы не подключены к сети. Bitmessage проделает необходимые вычисления, чтобы отправить сообщение, но не отправит его до тех пор, пока Вы не подсоединитесь к сети. - + Message queued. - + Your 'To' field is empty. Вы не заполнили поле 'Кому'. - + Right click one or more entries in your address book and select 'Send message to this address'. Нажмите правую кнопку мыши на каком-либо адресе и выберите "Отправить сообщение на этот адрес". - + Fetched address from namecoin identity. Получить адрес через Namecoin. - + New Message Новое сообщение - + From От - + Sending email gateway registration request @@ -645,431 +630,426 @@ It is important that you back up this file. Would you like to open the file now? Вы ввели неправильный адрес. Это адрес проигнорирован. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Ошибка: Вы не можете добавлять один и тот же адрес в Адресную Книгу несколько раз. Попробуйте переименовать существующий адрес. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart Перезапустить - + You must restart Bitmessage for the port number change to take effect. Вы должны перезапустить Bitmessage, чтобы смена номера порта имела эффект. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage будет использовать Ваш прокси, начиная прямо сейчас. Тем не менее Вам имеет смысл перезапустить Bitmessage, чтобы закрыть уже существующие соединения. - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch Секретная фраза не подходит - + The passphrase you entered twice doesn't match. Try again. Вы ввели две разные секретные фразы. Пожалуйста, повторите заново. - + Choose a passphrase Придумайте секретную фразу - + You really do need a passphrase. Вы действительно должны ввести секретную фразу. - + Address is gone Адрес утерян - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage не может найти Ваш адрес %1. Возможно Вы удалили его? - + Address disabled Адрес выключен - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Ошибка: адрес, с которого Вы пытаетесь отправить, выключен. Вам нужно будет включить этот адрес во вкладке "Ваши адреса". - + Entry added to the Address Book. Edit the label to your liking. Запись добавлена в Адресную Книгу. Вы можете её отредактировать. - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. Удалено в корзину. - + Undeleted item. - + Save As... Сохранить как ... - + Write error. Ошибка записи. - + No addresses selected. Вы не выбрали адрес. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? - + Start-on-login not yet supported on your OS. - + Minimize-to-tray not yet supported on your OS. - + Tray notifications not yet supported on your OS. - + Testing... Проверяем... - + This is a chan address. You cannot use it as a pseudo-mailing list. Это адрес chan-а. Вы не можете его использовать как адрес рассылки. - + The address should start with ''BM-'' Адрес должен начинаться с "BM-" - + The address is not typed or copied correctly (the checksum failed). Адрес введен или скопирован неверно (контрольная сумма не сходится). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Версия этого адреса более поздняя, чем Ваша программа. Пожалуйста, обновите программу Bitmessage. - + The address contains invalid characters. Адрес содержит запрещённые символы. - + Some data encoded in the address is too short. Данные, закодированные в адресе, слишком короткие. - + Some data encoded in the address is too long. Данные, закодированные в адресе, слишком длинные. - + Some data encoded in the address is malformed. - + Enter an address above. - + Address is an old type. We cannot display its past broadcasts. - + There are no recent broadcasts from this address to display. - + You are using TCP port %1. (This can be changed in the settings). Вы используете TCP порт %1. (Его можно поменять в настройках). - + Bitmessage Bitmessage - + Identities - + New Identity - + Search Поиск - + All По всем полям - + To Кому - + From От кого - + Subject Тема - + Message Текст сообщения - + Received Получено - + Messages - + Address book - + Address Адрес - + Add Contact - + Fetch Namecoin ID Получить Namecoin ID - + Subject: Тема: - + From: От: - + To: Кому: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions Подписки - + Add new Subscription Добавить новую подписку - + Chans - + Add Chan - + File Файл - + Settings Настройки - + Help Помощь - + Import keys Импортировать ключи - + Manage keys Управлять ключами - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About О программе - + Regenerate deterministic addresses Сгенерировать заново все адреса - + Delete all trashed messages Стереть все сообщения из корзины - + Join / Create chan Подсоединиться или создать chan @@ -1094,55 +1074,73 @@ Are you sure you want to delete the channel? Добавить новую запись - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + + + %n day(s) + + + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1517,7 +1515,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status Статус сети diff --git a/src/translations/bitmessage_sk.qm b/src/translations/bitmessage_sk.qm index 8fbed11e98e78b817fb4628ab5b54457ea63b269..da8183a74d368654060544b0d886e1aca21ad669 100644 GIT binary patch delta 2881 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 Z2rp~yR}M9mM=Cw#Rh_N{;gzTo{|nXBLyiCd delta 3395 zcmaJ@33N^87XHq?=iGV7U`&d%kx)Y-d1e)}AaW~)41@@|l|Fm9~@7w#or@oROu99ap zu%`nE0QM{f#B89)mw>bzm~s~w)DCcW1xB6$hL!LZ93e1P|Uf>=Ek z2nvCCw*&1Rr`@&&(h8AhUqD*_3^2b1DUatOpF%3y3RG$!9b5|7FN#nU%7JTdK^Z=P zb}7^Y4$-j9Id6f`ag0@kO%`{Hjv*NyO1ah&9hwjPzh2YV5ioexY) zLYK=Kz(?PrN8>u6+i3)^Jq2hFI_<_t4E|vR;MpCaYaYOkpalqBt6}8Dct3F#aO^UM z&pbj@GM#pHI>MJF0%v|fL;}~#&4}Dj$4zEpw5>aE(TZrrGTL64`hwrtJrpyVGs7|M zkha+m@IQ&!+w4H2Hu%tz3!J!x^)s6TpJt;V!Ho;yJyEoBBv4R}T|K$55j%WSXsz=GRt5-x~U z3>P}irNeXAgzm1zgx(_biS7bS$`MSLd9H=0Fh0t@8CdsBm;eJ{YAVD(=fRzN!O|@s zh@K%V9m@>nxe3_~E6HKLuwfSw_~#CxbSo)~+9n+RM%R zODup#glx_aM56sU*~+PPz>HC{kH_Bv3{kRe(OiFz)>;hs_{u)5JqsN1lARyVaroD= zD|5<7**4i#Lo87Ai|n>&16CiE-CNrjaEp`cR!F3*KyKGp?c>A&xpCn|U`=1S`@Zj( z*}HPDydXxnR^H*_UIyYS?`)k*hA^5y_%hMhER&Qh5REa*fKwS_qa9Jy#8k1V?HJJdjM($@{y{3x1t`>~or#mQPCvaw7|YE9~-V`AzHQnT1ioVm4<8nXXKT+*4G4D%Crt`dN^ zABsiqGD2%hv8dfAz&kC)lDr1MRJnNK?z?o9D4t650b1S{FS`*5YoR1uqa)7)QkMto zfgvxYZWRxJ?S)eJcsUTeSL*x71T^a}h16UEn%7F>=I&>raw#r?l-Ng2l&twBbTmpz z4`f82J&`if89+sxw7wf1F07GqA9CZqDrv(KI*2?YZL9AWwjZV9r4k({N}rA5xL0H8 z@FWHj6C+hFXSI}Fl`d@R2)HblzK!5M7lZUz&P0R#r6>K_)U-Dhu8B6*|M@+N@ze8x zZ6_6zek1gI0u@s}u&~pGDXiZFvTpAvQnCnLMUG<046b(^qsSXl3shfHY`y+95O!a& z!;4hxu2z&}QUlor#pm@LZ?r4Q#~J|dFvX=EZWQ%8#f@+Vct)wHQ}Fxor_g7{1VXnKUD|06o1D&obH>WKC@~es(a7!S?8ZS?P_<`LZPNH=5V z|B9vv7tGPzTQ`@TZN7u~obUGH{;W>tG#c7b}Z7Z?&ZNA{#>_u!VqBj30>h#A~yJjZeLFW8&i~SU%jRhYjp>$Ytm@k%#Wd$b7(Wx9-VB&IgRp zt8VWnVJvv4QviG zsG68~i`fm{eQDJzD8+=Zk)&bHXv(Y4f8E)u#ER!tS&s(T18hQq-o4 z;eJ?4-h$~ye;-1xx^4`#r0^F_wy{$=p+4?n3^~9ILqd%2Zw+Fm?#A)C3)n|ejK#qQ zAlG0#*dm|RmS8MRuH&7OX*}uKkS~dSjkP_g=Fv@!&sOrlxqejAwIhyIjXfO0nzSjY z)ZEl~1i%Y%u;8AmK6C~Dls*Aoaj|JOM_8i=CK=Kh@> z?Eb9%kyuwB5g);6Uj46kWc% ze8aJ7b8|;Qe&gnD2@|cB;3TWf7CSxd)pyhrl42)LPD-#PJErN~eW3}BO|V2HSmLay V&~v-RJn@zHB}_>n2rosM_+M+8ocI6$ diff --git a/src/translations/bitmessage_sk.ts b/src/translations/bitmessage_sk.ts index 642eb61b..3f864102 100644 --- a/src/translations/bitmessage_sk.ts +++ b/src/translations/bitmessage_sk.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: Registrácia zlyhala: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: Požadovaná e-mailová adresa nie je k dispozícii, skúste znova. Vyplňte novú požadovanú e-mailovú adresu (vrátane @mailchuck.com) nižšie: @@ -248,120 +248,120 @@ Vyplňte požadovanú e-mailovú adresu (vrátane @mailchuck.com) nižšie: 1 hour - 1 hodina + 1 hodina %1 hours - %1 hodín + %1 hodín %1 days - %1 dní + %1 dní - + Waiting for their encryption key. Will request it again soon. Čakanie na šifrovací kľúč príjemcu. Čoskoro bude vyžiadaný znova. - + Encryption key request queued. Požiadavka na šifrovací kľúč je vo fronte. - + Queued. Vo fronte. - + Message sent. Waiting for acknowledgement. Sent at %1 Správa odoslaná. Čakanie na potvrdenie. Odoslaná %1 - + Message sent. Sent at %1 Správa odoslaná. Odoslaná %1 - + Need to do work to send message. Work is queued. Potrebné vykonať prácu pre odoslanie správy. Práca je vo fronte. - + Acknowledgement of the message received %1 Potvrdenie prijatia správy %1 - + Broadcast queued. Rozoslanie vo fronte. - + Broadcast on %1 Rozoslané 1% - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 Problém: práca požadovná príjemcom je oveľa ťažšia, než je povolené v nastaveniach. %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 Problém: šifrovací kľúč príjemcu je nesprávny. Nie je možné zašifrovať správu. %1 - + Forced difficulty override. Send should start soon. Obmedzenie obtiažnosti práce zrušené. Odosielanie by malo čoskoro začať. - + Unknown status: %1 %2 Neznámy stav: %1 %2 - + Not Connected Nepripojený - + Show Bitmessage Ukázať Bitmessage - + Send Odoslať - + Subscribe Prihlásiť sa k odberu - + Channel Kanál - + Quit Ukončiť - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Kľúče môžete spravovať úpravou súboru keys.dat, ktorý je uložený v rovnakom adresári ako tento program. Tento súbor je dôležité zálohovať. - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. @@ -370,17 +370,17 @@ It is important that you back up this file. Tento súbor je dôležité zálohovať. - + Open keys.dat? Otvoriť keys.dat? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) Kľúče môžete spravovať úpravou súboru keys.dat, ktorý je uložený v rovnakom adresári ako tento program. Tento súbor je dôležité zálohovať. Chcete tento súbor teraz otvoriť? (Nezabudnite zatvoriť Bitmessage pred vykonaním akýchkoľvek zmien.) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) @@ -389,122 +389,122 @@ It is important that you back up this file. Would you like to open the file now? Tento súbor je dôležité zálohovať. Chcete tento súbor teraz otvoriť? (Nezabudnite zatvoriť Bitmessage pred vykonaním akýchkoľvek zmien.) - + Delete trash? Vyprázdniť kôš? - + Are you sure you want to delete all trashed messages? Ste si istí, že chcete všetky správy z koša odstrániť? - + bad passphrase zlé heslo - + You must type your passphrase. If you don't have one then this is not the form for you. Je nutné zadať prístupové heslo. Ak heslo nemáte, tento formulár nie je pre Vás. - + Bad address version number Nesprávne číslo verzie adresy - + Your address version number must be a number: either 3 or 4. Číslo verzie adresy musí byť číslo: buď 3 alebo 4. - + Your address version number must be either 3 or 4. Vaše číslo verzie adresy musí byť buď 3 alebo 4. - + Chan name needed Potrebný názov kanálu - + You didn't enter a chan name. Nezadali ste meno kanálu. - + Address already present Adresa už existuje - + Could not add chan because it appears to already be one of your identities. Nemožno pridať kanál, pretože sa zdá, že už existuje ako jedna z vašich identít. - + Success Úspešné - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. Úspešne vytvorený kanál. Ak chcete umožniť ostatným pripojiť váš kanál, dajte im meno kanálu a túto Bitmessage adresu: %1. Táto adresa sa objavuje aj vo "Vaše identity". - + Address too new Adresa príliš nová - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. Aj keď Bitmessage adresa vyzerá byť platná, číslo verzie je príliš nové pre tento program. Možno budete musieť upgradovať Bitmessage. - + Address invalid Adresa neplatná - + That Bitmessage address is not valid. Táto Bitmessage adresa nie je platná. - + Address does not match chan name Adresa nezodpovedá názvu kanálu - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. Hoci zadaná Bitmessage adresa je platná, nezodpovedá názvu kanálu. - + Successfully joined chan. Úspešné pripojenie na kanál. - + Connection lost Spojenie bolo stratené - + Connected Spojený - + Message trashed Správa odstránenia - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -512,122 +512,122 @@ Tento súbor je dôležité zálohovať. Chcete tento súbor teraz otvoriť? (Ne - + Message too long Správa je príliš dlhá - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. Správa, ktorú skúšate poslať, má %1 bajtov naviac. (Maximum je 261 644 bajtov). Prosím pred odoslaním skrátiť. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. Chyba: Váš účet nebol registrovaný na e-mailovej bráne. Skúšam registrovať ako %1, prosím počkajte na spracovanie registrácie pred opakovaným odoslaním správy. - + Error: Bitmessage addresses start with BM- Please check %1 Chyba: Bitmessage adresy začínajú s BM- Prosím skontrolujte %1 - + Error: The address %1 is not typed or copied correctly. Please check it. Chyba: adresa %1 nie je na správne napísaná alebo skopírovaná. Prosím skontrolujte ju. - + Error: The address %1 contains invalid characters. Please check it. Chyba: adresa %1 obsahuje neplatné znaky. Prosím skontrolujte ju. - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. Chyba: verzia adresy %1 je príliš veľká. Buď budete musieť aktualizovať program Bitmessage alebo váš známy s vami žartuje. - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. Chyba: niektoré údaje zakódované v adrese %1 sú príliš krátke. Softér vášho známeho možno nefunguje správne. - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. Chyba: niektoré údaje zakódované v adrese %1 sú príliš dlhé. Softvér vášho známeho možno nefunguje správne. - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. Chyba: niektoré údaje zakódované v adrese %1 sú poškodené. Softvér vášho známeho možno nefunguje správne. - + Error: Something is wrong with the address %1. Chyba: niečo s adresou %1 je nie je v poriadku. - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. Chyba: musíte zadať adresu "Od". Ak žiadnu nemáte, prejdite na kartu "Vaše identity". - + Address version number Číslo verzie adresy - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. Čo sa týka adresy %1, Bitmessage nepozná číslo verzie adresy %2. Možno by ste mali upgradenúť Bitmessage na najnovšiu verziu. - + Stream number Číslo prúdu - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. Čo sa týka adresy %1, Bitmessage nespracováva číslo prúdu %2. Možno by ste mali upgradenúť Bitmessage na najnovšiu verziu. - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. Upozornenie: momentálne nie ste pripojení. Bitmessage vykoná prácu potrebnú na odoslanie správy, ale odoslať ju môže, až keď budete pripojení. - + Message queued. Správa vo fronte. - + Your 'To' field is empty. Pole "Komu" je prázdne. - + Right click one or more entries in your address book and select 'Send message to this address'. Vybertie jednu alebo viacero položiek v adresári, pravým tlačidlom myši zvoľte "Odoslať správu na túto adresu". - + Fetched address from namecoin identity. Prebratá adresa z namecoin-ovej identity. - + New Message Nová správa - + From Od - + Sending email gateway registration request Odosielam požiadavku o registráciu na e-mailovej bráne @@ -642,142 +642,142 @@ Tento súbor je dôležité zálohovať. Chcete tento súbor teraz otvoriť? (Ne Zadaná adresa bola neplatná a bude ignorovaná. - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. Chyba: tú istú adresu nemožno pridať do adresára dvakrát. Ak chcete, môžete skúsiť premenovať existujúcu menovku. - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. Chyba: nemožno pridať rovnakú adresu k odberu dvakrát. Keď chcete, môžete premenovať existujúci záznam. - + Restart Reštart - + You must restart Bitmessage for the port number change to take effect. Aby sa zmena čísla portu prejavila, musíte reštartovať Bitmessage. - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). Bitmessage bude odteraz používať proxy, ale ak chcete ukončiť existujúce spojenia, musíte Bitmessage manuálne reštartovať. - + Number needed Číslo potrebné - + Your maximum download and upload rate must be numbers. Ignoring what you typed. Maxímálna rýchlosť príjmu a odoslania musí byť uvedená v číslach. Ignorujem zadané údaje. - + Will not resend ever Nikdy opätovne neodosielať - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. Upozornenie: časový limit, ktorý ste zadali, je menší ako čas, ktorý Bitmessage čaká na prvý pokus o opätovné zaslanie, a preto vaše správy nebudú nikdy opätovne odoslané. - + Sending email gateway unregistration request Odosielam žiadosť o odhlásenie z e-mailovej brány - + Sending email gateway status request Odosielam požiadavku o stave e-mailovej brány - + Passphrase mismatch Nezhoda hesla - + The passphrase you entered twice doesn't match. Try again. Zadané heslá sa rôznia. Skúste znova. - + Choose a passphrase Vyberte heslo - + You really do need a passphrase. Heslo je skutočne potrebné. - + Address is gone Adresa zmizla - + Bitmessage cannot find your address %1. Perhaps you removed it? Bitmessage nemôže nájsť vašu adresu %1. Možno ste ju odstránili? - + Address disabled Adresa deaktivovaná - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. Chyba: adresa, z ktorej sa pokúšate odoslať, je neaktívna. Pred použitím ju musíte aktivovať v karte "Vaše identity". - + Entry added to the Address Book. Edit the label to your liking. Záznam pridaný do adresára. Upravte menovku podľa Vašich predstáv. - + Entry added to the blacklist. Edit the label to your liking. Záznam pridaný na zoznam zakázaných. Upravte označenie podľa vašich predstáv. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. Chyba: tú istú adresu nemožno pridať na zoznam zakázaných dvakrát. Ak chcete, môžete skúsiť premenovať existujúce označenie. - + Moved items to trash. Položky presunuté do koša. - + Undeleted item. Položka obnovená. - + Save As... Uložiť ako... - + Write error. Chyba pri zapisovaní. - + No addresses selected. Nevybraná žiadna adresa. - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? @@ -786,7 +786,7 @@ Are you sure you want to delete the subscription? Ste si istý, že chcete odber odstrániť? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? @@ -795,282 +795,282 @@ Are you sure you want to delete the channel? Ste si istý, že chcete kanál odstrániť? - + Do you really want to remove this avatar? Naozaj chcete odstrániť tento avatar? - + You have already set an avatar for this address. Do you really want to overwrite it? Pre túto adresu ste už ste nastavili avatar. Naozaj ho chcete ho zmeniť? - + Start-on-login not yet supported on your OS. Spustenie pri prihlásení zatiaľ pre váš operačný systém nie je podporované. - + Minimize-to-tray not yet supported on your OS. Minimalizovanie do panelu úloh zatiaľ pre váš operačný systém nie je podporované. - + Tray notifications not yet supported on your OS. Oblasť oznámení zatiaľ pre váš operačný systém nie je podporovaná. - + Testing... Testujem... - + This is a chan address. You cannot use it as a pseudo-mailing list. Toto je adresa kanálu. Nie je možné ju používať ako pseudo poštový zoznam. - + The address should start with ''BM-'' Adresa by mala začínať ''BM-'' - + The address is not typed or copied correctly (the checksum failed). Nesprávne zadaná alebo skopírovaná adresa (kontrolný súčet zlyhal). - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. Číslo verzie tejto adresy je vyššie ako tento softvér podporuje. Prosím inovujte Bitmessage. - + The address contains invalid characters. Adresa obsahuje neplatné znaky. - + Some data encoded in the address is too short. Niektoré dáta zakódované v adrese sú príliš krátke. - + Some data encoded in the address is too long. Niektoré dáta zakódované v adrese sú príliš dlhé. - + Some data encoded in the address is malformed. Niektoré dáta zakódované v adrese sú poškodené. - + Enter an address above. Zadajte adresu vyššie. - + Address is an old type. We cannot display its past broadcasts. Starý typ adresy. Nie je možné zobraziť jej predchádzajúce hromadné správy. - + There are no recent broadcasts from this address to display. Neboli nájdené žiadne nedávne hromadé správy z tejto adresy. - + You are using TCP port %1. (This can be changed in the settings). Používate port TCP %1. (Možno zmeniť v nastaveniach). - + Bitmessage Bitmessage - + Identities Identity - + New Identity Nová identita - + Search Hľadaj - + All Všetky - + To Príjemca - + From Odosielateľ - + Subject Predmet - + Message Správa - + Received Prijaté - + Messages Správy - + Address book Adresár - + Address Adresa - + Add Contact Pridať kontakt - + Fetch Namecoin ID Získať identifikátor namecoin-u - + Subject: Predmet: - + From: Odosielateľ: - + To: Príjemca: - + Send ordinary Message Pošli obyčajnú správu - + Send Message to your Subscribers Poslať správu vašim odberateľom - + TTL: Doba životnosti: - + X days - X dní + X dní - + Subscriptions Odbery - + Add new Subscription Pridať nový odber - + Chans Kanály - + Add Chan Pridať kanál - + File Súbor - + Settings Nastavenia - + Help Pomoc - + Import keys Importovať kľúče - + Manage keys Spravovať kľúče - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support Kontaktovať používateľskú podporu - + About O - + Regenerate deterministic addresses Znova vytvoriť deterministické adresy - + Delete all trashed messages Odstrániť všetky správy z koša - + Join / Create chan Pripojiť / vytvoriť kanál @@ -1095,55 +1095,73 @@ Ste si istý, že chcete kanál odstrániť? Pridať nový záznam - + Display the %1 recent broadcast(s) from this address. Zobraziť posledných %1 hromadných správ z tejto adresy. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + %n hodina + %n hodiny + %n hodín + + + + + %n day(s) + + %n deň + %n dni + %n dní + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1519,7 +1537,7 @@ Predvoľba je pomocou generátora náhodných čísiel, ale deterministické adr - + Network Status Stav siete diff --git a/src/translations/bitmessage_zh_cn.qm b/src/translations/bitmessage_zh_cn.qm index 0873a3b463459adf1ba638e939ef0cfbb6576047..dd41ea3295708d07e5437c271ec65318db0e71cc 100644 GIT binary patch delta 1846 zcmX9I!8=tfIK^(M7D$HWgy3Vq+tAXYpg!S@YfRp0oEp`<&bU zmS+E(n!0B~>H#f(<4u6{ArSNcSTc=gJ;2Iu0H5=~D}lg_@j%W(pw?C&=j%-DgS1Nv zJlhG$&C|(uAsuZ2%FjS|Smdo3=#v&PwqVSndq9jICiRX0o{M2OL;=(9<2i3ucw3D-hRk7x21pc1E{P-(PJh^El1^hLBP0tR3CH#x`WtU&;%6Ou&=_G zlrNzB%T!>@cep-*`O-Qud}aukwp1`4xDP021e>?kl`F{3AR#pU2O!ZR%&cXGjYUGl zm^MoBx-dUw4yg?ajy_7HL<{L_-UH%fAplO;aN!dSB*#0V!M0g4H9z8%{tMJYT zL|z#wbhJ=He^24j00{<85uRwG0l{CRYaqfY|IthzpwuScJWcSX*MN|-uE&C}=J_6% zkH$0CrMX;liaH$9+|rf;%T&$aUQf0&SyXmO%swER&mZUi-J)e%FP~?Le(oqBR274J zj{(L2adu%XWz7~N9ezMnoH#$NADA;+Z2Tn^2$&)^r*5My9=hJuc&_Ob`-k=b8i)8p zasgl$#GwklJv&hR?}-FpVu;p~M)ixkw2_}Iq{;)@Xvbk-(K+psvs82Z3~knj)S$LV zn=iKk@!xAVJto%$+g)bSHa}3??jA?${ZIS#ovF;?r9EBg4_GE?`>dTjKPCxR`L@X} z&AGb|c;=cE-c7S4k4OtCC&6p zxGsByjMG-@HvFc5n4)xrmqG!(w{Bw{yIFQn=Z^gzsM)4#xpoflJF08-`+`2at!saC zEJy8a-6wjYi2tMRVyl(DEz(_2VzrVKy|s@1v>n#J5JTmRNAz+1L_K-AKB=yTu2{NC zpB0izNsIN>HkA!Y(Qn;9kMvIIfA^9X?RY}J^Y6Z#-E!BTw6>5${gGY&01_JYowEqL z!lA$IxJYwW>mT|PPQ-dcnC>US4L2l4ts;yL*8{C>YPX?2knMWm-v-xLtP%0C;kcEz zSMN7`))B?&-(~22|1_n|bwx_HiEkK&Un?f1m4;ugGd@*m9Cs^`x3i5C4solL-gnhV zp3dpUQU~AhG8mgK&0>@6#shPo5ZUu4`&J@a(PGNUB*OB$rn~_@UpzP(GuD_khp}ep zWm8+!BW8QbbW)~;0?wIEy6-Vhm+91&cE)|C!MAIH4GU!>&CC? zM&!$l4j?mL?ynpo%$f3)B@KZ1oqWd{K=_679Y4Bcy;})RN~LQyC@)SUjhH-Tbxl5} z_=1x8APsQp-%_&nlIPr;O8y56h}Wv@ndi-c^HTO?#BxNUl;cicZptv_MBzHBI;3<6 zrCbZmqp|F^^7%LdNj<9kEst^8Ipw^CfP4d#tJS?6^h3(SmCQf(TjgOd&pmR?hFc%8 zmwz#keWAqRlsVXHcm|^UpaivT^rSe8mFkW7SCu94s(T4g7VVdH-HrGQ5LI8Ps@C+0TcUulKFiC0{sLH4WobP-0%Unu+G13$-3-eKTQmI@ zZs{l+;+H1Y(&@oC?WE<=A71C2Jk9Rbo)uj`8mG2zHXQM3Pq8;dxa@YjYA(ns+f-PR RUs|@dY-4HrVEPRE{{a=p3i$v4 delta 2308 zcma)6dr(y8760A6uid?OcVU$fQ5GTsg2>A!s3?MB)ZK^*XjPuOf#tEQ>?)wbI+`?U zjDXh{grc!D^-(dEvC$ee@iBE6C8b0%B;upBv`v*HW0clW>`B*g(uwW#`{&$yzVAEd zcYfdRoPFC>Z97zTBjUCLTs`oz7T}KoF_FNWDDrgxi+=~01YjBYV$48MDo`_`-fZ$L zmcVc0fRO{>o5&j)3jS9uz?$_#I12NwZ-8OfVcty$130`^ycQlfELd3i5gjb` z+Ic?6+*%Bj-$a&uE#R7tB_}A6IteiOlI1qA+wm^XL{87`cLZs!9QvP?fNY5JrTn#@-^TwWfWl*ouunyh?e( zm{j9gB~ayWzpVPa`U3ILqUz&Zz`PXIz1{xwoLQ{Aji>0ntgiDo{nxUFH@j%RkqvH2 zq97@3Y}c;=O*lKzSwpm1*=d$wVC`HsIj0AhRKhkq&IZC)u+71ewF0_!X~o)m2`Vz4*QRj>A)+mbA}vZf7K;!+J~vcaxa%+IRwn+xH(se&6i_1 z+cDyxri?3*T7mQcuHp&RI`gceV}p{zxwfXEKx{1c$=wKw@)CEkDikn;aNWl9B*{LW z`I2sH!}v+x>;*<#=M&mVEKA1miABWV=(m(I)<1oaw`LI&A!gp$+y>}%{D$}r5_3Pl zX@d=LJNUf`6n*LuzVSYt%fHXRyP2Ymdd#d4K7?BBitwRGC>C@JpB*-mZp(z;Ov+ZiR5aF+K7($EQ__ez%@NVuL#Ri+A!gQ9 zlPX@_D%#@gM5#ku7o-OQmy4VBO{elMh(Db_jO2JieEWupde^1=f(weW@w*QTKnMZa;XDsBKoJ@j~ook}~r;rSzv%VtIg6ckT>z|gx4VNoE|_8_maFbe=ab~B_H>gfU#xr zNoN5~#t`{5Ry3`(m>5Il0q7fK1EfFV}TZqqoQdiz)t)EAl`W z`TdG?>b?`el)vfpv-@d+8ZYUFm)@aXE7yfJP~d=e-B{%?1-hxrIoLoIe5xyXSOX;N z*R4&dB?9ww-R;pdDJpe$YV)ZdI&}Xmnn4vu=*cH3(U z7VB?Wvq?>ZhIq$nzj@4Z#aE8eVHjBAAllCm)=p0e;MI`05~FGa6dc z^fY$&7)}N?lim^xr``QDOgx73eq^Ki4UgV=gZg9$y>3lAt9-4AXj`v75~!TX4ORSN zecMKd?M!U@E_Y0rCx&EW#2y;PKVA&E)IW0jKKIb<{lNvfWbp0AAOUnIR3F6#@uUZ>}O?9o>7f8W+QY!xX*d5%PorV6BjrIbkBdyfw na^;m*Jqw}9FU>0`DYd)YT63P=k!5#SofXj0L5Hp2S;~I_O5{6Q diff --git a/src/translations/bitmessage_zh_cn.ts b/src/translations/bitmessage_zh_cn.ts index c320b069..a140d0c1 100644 --- a/src/translations/bitmessage_zh_cn.ts +++ b/src/translations/bitmessage_zh_cn.ts @@ -59,12 +59,12 @@ EmailGatewayRegistrationDialog - + Registration failed: - + The requested email address is not available, please try a new one. Fill out the new desired email address (including @mailchuck.com) below: @@ -245,261 +245,246 @@ Please type the desired email address (including @mailchuck.com) below: 您的地址中的一个, %1,是一个过时的版本1地址. 版本1地址已经不再受到支持了. 我们可以将它删除掉么? - - 1 hour - - - - - %1 hours - - - - - %1 days - - - - + Waiting for their encryption key. Will request it again soon. 正在等待他们的加密密钥,我们会在稍后再次请求。 - + Encryption key request queued. 加密密钥请求已经添加到队列中。 - + Queued. 已经添加到队列。 - + Message sent. Waiting for acknowledgement. Sent at %1 消息已经发送. 正在等待回执. 发送于 %1 - + Message sent. Sent at %1 消息已经发送. 发送于 %1 - + Need to do work to send message. Work is queued. 发生消息需要做工。做工正在队列中等待。 - + Acknowledgement of the message received %1 消息的回执已经收到于 %1 - + Broadcast queued. 广播已经添加到队列中。 - + Broadcast on %1 已经广播于 %1 - + Problem: The work demanded by the recipient is more difficult than you are willing to do. %1 错误: 收件人要求的做工量大于我们的最大接受做工量。 %1 - + Problem: The recipient's encryption key is no good. Could not encrypt message. %1 错误: 收件人的加密密钥是无效的。不能加密消息。 %1 - + Forced difficulty override. Send should start soon. 已经忽略最大做工量限制。发送很快就会开始。 - + Unknown status: %1 %2 未知状态: %1 %2 - + Not Connected 未连接 - + Show Bitmessage 显示比特信 - + Send 发送 - + Subscribe 订阅 - + Channel - + Quit 退出 - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. 您可以通过编辑和程序储存在同一个目录的 keys.dat 来编辑密钥。备份这个文件十分重要。 - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. 您可以通过编辑储存在 %1 的 keys.dat 来编辑密钥。备份这个文件十分重要。 - + Open keys.dat? 打开 keys.dat ? - + You may manage your keys by editing the keys.dat file stored in the same directory as this program. It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) 您可以通过编辑和程序储存在同一个目录的 keys.dat 来编辑密钥。备份这个文件十分重要。您现在想打开这个文件么?(请在进行任何修改前关闭比特信) - + You may manage your keys by editing the keys.dat file stored in %1 It is important that you back up this file. Would you like to open the file now? (Be sure to close Bitmessage before making any changes.) 您可以通过编辑储存在 %1 的 keys.dat 来编辑密钥。备份这个文件十分重要。您现在想打开这个文件么?(请在进行任何修改前关闭比特信) - + Delete trash? 清空回收站? - + Are you sure you want to delete all trashed messages? 您确定要删除全部被回收的消息么? - + bad passphrase 错误的密钥 - + You must type your passphrase. If you don't have one then this is not the form for you. 您必须输入您的密钥。如果您没有的话,这个表单不适用于您。 - + Bad address version number 地址的版本号无效 - + Your address version number must be a number: either 3 or 4. 您的地址的版本号必须是一个数字: 3 或 4. - + Your address version number must be either 3 or 4. 您的地址的版本号必须是 3 或 4. - + Chan name needed 需要频道的名称 - + You didn't enter a chan name. 您没有输入一个频道的名称。 - + Address already present 地址已经在这里了 - + Could not add chan because it appears to already be one of your identities. 无法添加频道,因为它似乎已经是您的身份之一。 - + Success 成功 - + Successfully created chan. To let others join your chan, give them the chan name and this Bitmessage address: %1. This address also appears in 'Your Identities'. 成功的创建了频道。要让他人加入,请告诉他们频道的名称和这个比特信地址 %1 。这个比特信地址也会出现在“您的身份”中。 - + Address too new 地址太新了 - + Although that Bitmessage address might be valid, its version number is too new for us to handle. Perhaps you need to upgrade Bitmessage. 尽管比特信地址也许是有效的,不过比特信地址的版本号比我们能处理的要新。也许您应该升级比特信了。 - + Address invalid 地址有效 - + That Bitmessage address is not valid. 比特信地址无效。 - + Address does not match chan name 地址和频道的名称不符 - + Although the Bitmessage address you entered was valid, it doesn't match the chan name. 尽管您输入的比特信地址是有效的,不过它和频道的名称不符。 - + Successfully joined chan. 成功的加入到频道。 - + Connection lost 连接已丢失 - + Connected 已经连接 - + Message trashed 消息已经移入回收站 - + The TTL, or Time-To-Live is the length of time that the network will hold the message. The recipient must get it during this time. If your Bitmessage client does not hear an acknowledgement, it will resend the message automatically. The longer the Time-To-Live, the @@ -507,122 +492,122 @@ It is important that you back up this file. Would you like to open the file now? - + Message too long - + The message that you are trying to send is too long by %1 bytes. (The maximum is 261644 bytes). Please cut it down before sending. - + Error: Your account wasn't registered at an email gateway. Sending registration now as %1, please wait for the registration to be processed before retrying sending. - + Error: Bitmessage addresses start with BM- Please check %1 错误:比特信地址以BM-开始,请检查 %1 - + Error: The address %1 is not typed or copied correctly. Please check it. 错误:地址 %1 没有被正确的键入或复制。 请检查一下。 - + Error: The address %1 contains invalid characters. Please check it. 错误: 比特信地址 %1 包含无效的字符。请检查一下。 - + Error: The address version in %1 is too high. Either you need to upgrade your Bitmessage software or your acquaintance is being clever. 错误:地址 %1 的版本号过高。您可能需要升级您的比特信软件或者您的朋友正在使用本程序的非主线版本。 - + Error: Some data encoded in the address %1 is too short. There might be something wrong with the software of your acquaintance. 错误:在地址 %1 中编码的部分信息过短。您的朋友的软件可能有点问题。 - + Error: Some data encoded in the address %1 is too long. There might be something wrong with the software of your acquaintance. 错误:在地址 %1 中编码的部分信息过长。您的朋友的软件可能有点问题。 - + Error: Some data encoded in the address %1 is malformed. There might be something wrong with the software of your acquaintance. - + Error: Something is wrong with the address %1. 错误: 地址%1 有为未知的错误。 - + Error: You must specify a From address. If you don't have one, go to the 'Your Identities' tab. 错误: 您必须指出一个表单地址, 如果您没有,请到“您的身份”标签页。 - + Address version number 地址版本号 - + Concerning the address %1, Bitmessage cannot understand address version numbers of %2. Perhaps upgrade Bitmessage to the latest version. 地址 %1 的地址版本号 %2 无法被比特信理解。也许你应该升级你的比特信到最新版本。 - + Stream number 节点流序号 - + Concerning the address %1, Bitmessage cannot handle stream numbers of %2. Perhaps upgrade Bitmessage to the latest version. 地址 %1 的节点流序号 %2 无法被比特信理解。也许你应该升级你的比特信到最新版本。 - + Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won't send until you connect. 警告: 您尚未连接。 比特信将做足够的功来发送消息,但是消息不会被发出直到您连接。 - + Message queued. - + Your 'To' field is empty. “收件人"是空的。 - + Right click one or more entries in your address book and select 'Send message to this address'. 在您的地址本的一个条目上右击,之后选择”发送消息到这个地址“。 - + Fetched address from namecoin identity. 已经自namecoin接收了地址。 - + New Message 新消息 - + From 来自 - + Sending email gateway registration request @@ -637,431 +622,426 @@ It is important that you back up this file. Would you like to open the file now? 您输入的地址是无效的,将被忽略。 - + Error: You cannot add the same address to your address book twice. Try renaming the existing one if you want. 错误:您无法将一个地址添加到您的地址本两次,请尝试重命名已经存在的那个。 - + Error: You cannot add the same address to your subscriptions twice. Perhaps rename the existing one if you want. - + Restart 重启 - + You must restart Bitmessage for the port number change to take effect. 您必须重启以便使比特信对于使用的端口的改变生效。 - + Bitmessage will use your proxy from now on but you may want to manually restart Bitmessage now to close existing connections (if any). 比特信将会从现在开始使用代理,但是您可能想手动重启比特信以便使之前的连接关闭(如果有的话)。 - + Number needed - + Your maximum download and upload rate must be numbers. Ignoring what you typed. - + Will not resend ever 不尝试再次发送 - + Note that the time limit you entered is less than the amount of time Bitmessage waits for the first resend attempt therefore your messages will never be resent. 请注意,您所输入的时间限制小于比特信的最小重试时间,因此您将永远不会重发消息。 - + Sending email gateway unregistration request - + Sending email gateway status request - + Passphrase mismatch 密钥不匹配 - + The passphrase you entered twice doesn't match. Try again. 您两次输入的密码并不匹配,请再试一次。 - + Choose a passphrase 选择一个密钥 - + You really do need a passphrase. 您真的需要一个密码。 - + Address is gone 已经失去了地址 - + Bitmessage cannot find your address %1. Perhaps you removed it? 比特信无法找到你的地址 %1。 也许你已经把它删掉了? - + Address disabled 地址已经禁用 - + Error: The address from which you are trying to send is disabled. You'll have to enable it on the 'Your Identities' tab before using it. 错误: 您想以一个您已经禁用的地址发出消息。在使用之前您需要在“您的身份”处再次启用。 - + Entry added to the Address Book. Edit the label to your liking. 条目已经添加到地址本。您可以去修改您的标签。 - + Entry added to the blacklist. Edit the label to your liking. - + Error: You cannot add the same address to your blacklist twice. Try renaming the existing one if you want. - + Moved items to trash. 已经移动项目到回收站。 - + Undeleted item. - + Save As... 另存为... - + Write error. 写入失败。 - + No addresses selected. 没有选择地址。 - + If you delete the subscription, messages that you already received will become inaccessible. Maybe you can consider disabling the subscription instead. Disabled subscriptions will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the subscription? - + If you delete the channel, messages that you already received will become inaccessible. Maybe you can consider disabling the channel instead. Disabled channels will not receive new messages, but you can still view messages you already received. Are you sure you want to delete the channel? - + Do you really want to remove this avatar? 您真的想移除这个头像么? - + You have already set an avatar for this address. Do you really want to overwrite it? 您已经为这个地址设置了头像了。您真的想移除么? - + Start-on-login not yet supported on your OS. 登录时启动尚未支持您在使用的操作系统。 - + Minimize-to-tray not yet supported on your OS. 最小化到托盘尚未支持您的操作系统。 - + Tray notifications not yet supported on your OS. 托盘提醒尚未支持您所使用的操作系统。 - + Testing... 正在测试... - + This is a chan address. You cannot use it as a pseudo-mailing list. 这是一个频道地址,您无法把它作为伪邮件列表。 - + The address should start with ''BM-'' 地址应该以"BM-"开始 - + The address is not typed or copied correctly (the checksum failed). 地址没有被正确的键入或复制(校验码校验失败)。 - + The version number of this address is higher than this software can support. Please upgrade Bitmessage. 这个地址的版本号大于此软件的最大支持。 请升级比特信。 - + The address contains invalid characters. 这个地址中包含无效字符。 - + Some data encoded in the address is too short. 在这个地址中编码的部分信息过少。 - + Some data encoded in the address is too long. 在这个地址中编码的部分信息过长。 - + Some data encoded in the address is malformed. - + Enter an address above. 请在上方键入地址。 - + Address is an old type. We cannot display its past broadcasts. 地址没有近期的广播。我们无法显示之间的广播。 - + There are no recent broadcasts from this address to display. 没有可以显示的近期广播。 - + You are using TCP port %1. (This can be changed in the settings). 您正在使用TCP端口 %1 。(可以在设置中修改)。 - + Bitmessage 比特信 - + Identities - + New Identity - + Search 搜索 - + All 全部 - + To - + From 来自 - + Subject 标题 - + Message 消息 - + Received 接收时间 - + Messages - + Address book - + Address 地址 - + Add Contact - + Fetch Namecoin ID 接收Namecoin ID - + Subject: 标题: - + From: 来自: - + To: 至: - + Send ordinary Message - + Send Message to your Subscribers - + TTL: - - X days - - - - + Subscriptions 订阅 - + Add new Subscription 添加新的订阅 - + Chans - + Add Chan - + File 文件 - + Settings 设置 - + Help 帮助 - + Import keys 导入密钥 - + Manage keys 管理密钥 - + Ctrl+Q Ctrl+Q - + F1 F1 - + Contact support - + About 关于 - + Regenerate deterministic addresses 重新生成静态地址 - + Delete all trashed messages 彻底删除全部回收站中的消息 - + Join / Create chan 加入或创建一个频道 @@ -1086,55 +1066,69 @@ Are you sure you want to delete the channel? 添加新条目 - + Display the %1 recent broadcast(s) from this address. - + New version of PyBitmessage is available: %1. Download it from https://github.com/Bitmessage/PyBitmessage/releases/latest - - Shutting down PyBitmessage... %1%% - - - - + Waiting for PoW to finish... %1% - + Shutting down Pybitmessage... %1% - + Waiting for objects to be sent... %1% - + Saving settings... %1% - + Shutting down core... %1% - + Stopping notifications... %1% - + Shutdown imminent... %1% + + + %n hour(s) + + + + + + + %n day(s) + + + + + + + Shutting down PyBitmessage... %1% + + NewAddressDialog @@ -1509,7 +1503,7 @@ The 'Random Number' option is selected by default but deterministic ad - + Network Status 网络状态