diff --git a/src/bitmessagekivy/Makefile b/src/bitmessagekivy/Makefile new file mode 100644 index 0000000000..6b33590a22 --- /dev/null +++ b/src/bitmessagekivy/Makefile @@ -0,0 +1,12 @@ +.PHONY: po mo + +po: + xgettext -Lpython --output=messages.pot main.py lang.kv + msgmerge --update --no-fuzzy-matching --backup=off po/en.po messages.pot + msgmerge --update --no-fuzzy-matching --backup=off po/fr.po messages.pot + +mo: + mkdir -p data/locales/en/LC_MESSAGES + mkdir -p data/locales/fr/LC_MESSAGES + msgfmt -c -o data/locales/en/LC_MESSAGES/langapp.mo po/en.po + msgfmt -c -o data/locales/fr/LC_MESSAGES/langapp.mo po/fr.po diff --git a/src/bitmessagekivy/get_platform.py b/src/bitmessagekivy/get_platform.py index 72333aff03..4392da1650 100644 --- a/src/bitmessagekivy/get_platform.py +++ b/src/bitmessagekivy/get_platform.py @@ -46,4 +46,4 @@ def _get_platform(): Other camera provider such as `gi` has some issue upon closing the camera. by setting KIVY_CAMERA environment variable before importing kivy, we are forcing it to use opencv camera provider. """ - environ["KIVY_CAMERA"] = "opencv" \ No newline at end of file + environ["KIVY_CAMERA"] = "opencv" diff --git a/src/bitmessagekivy/kv/chat_list.kv b/src/bitmessagekivy/kv/chat_list.kv index 2a480abfb1..e59c32d754 100644 --- a/src/bitmessagekivy/kv/chat_list.kv +++ b/src/bitmessagekivy/kv/chat_list.kv @@ -11,7 +11,7 @@ tab_display_mode:'text' Tab: - text: "Chats" + text: app.tr._("Chats") BoxLayout: id: chat_box orientation: 'vertical' @@ -23,7 +23,7 @@ MDLabel: font_style: 'Caption' theme_text_color: 'Primary' - text: 'No Chat' + text: app.tr._('No Chat') halign: 'center' size_hint_y: None bold: True @@ -47,7 +47,7 @@ # ImageLeftWidget: # source: './images/text_images/A.png' Tab: - text: "Contacts" + text: app.tr._("Contacts") BoxLayout: id: contact_box orientation: 'vertical' diff --git a/src/bitmessagekivy/kv/chat_room.kv b/src/bitmessagekivy/kv/chat_room.kv index 25edfd69eb..40843c472b 100644 --- a/src/bitmessagekivy/kv/chat_room.kv +++ b/src/bitmessagekivy/kv/chat_room.kv @@ -37,7 +37,7 @@ on_text_validate: root.send_msg() MDRaisedButton: - text: "Send" + text: app.tr._("Send") elevation_normal: 2 opposite_colors: True size_hint: (0.3, 1) diff --git a/src/bitmessagekivy/kv/composer.kv b/src/bitmessagekivy/kv/composer.kv index 4931fd56cc..2f06305d55 100644 --- a/src/bitmessagekivy/kv/composer.kv +++ b/src/bitmessagekivy/kv/composer.kv @@ -4,7 +4,7 @@ BoxLayout: orientation: 'vertical' size_hint_y: None - height: self.minimum_height + 2 * self.parent.height/4 + height: self.minimum_height + 3 * self.parent.height/4 padding: dp(20) spacing: 15 BoxLayout: @@ -51,14 +51,17 @@ size_hint_y: None font_size: '15sp' height: self.parent.height/2 - hint_text: 'type, select or scan QR code for recipients address' + hint_text: app.tr._('type, select or scan QR code for recipients address') RV: id: rv MDIconButton: icon: 'qrcode-scan' pos_hint: {'center_x': 0, 'center_y': .8} on_release: - app.root.ids.scr_mngr.current = 'scanscreen' + if root.is_camara_attached(): app.root.ids.scr_mngr.current = 'scanscreen' + else: root.camera_alert() + on_press: + app.root.ids.sc23.get_screen('composer') MyMDTextField: id: subject @@ -73,17 +76,25 @@ Color: rgba: (0,0,0,1) - MyMDTextField: - id: body - multiline: True - hint_text: 'body' - size_hint_y: None - font_size: '15sp' - required: True - helper_text_mode: "on_error" - canvas.before: - Color: - rgba: (0,0,0,1) + # MyMDTextField: + # id: body + # multiline: True + # hint_text: 'body' + # size_hint_y: None + # font_size: '15sp' + # required: True + # helper_text_mode: "on_error" + # canvas.before: + # Color: + # rgba: (0,0,0,1) + ScrollView: + id: scrlv + TextInput: + id: body + # text: 'srggdfsfhgfg' + hint_text: 'body' + size_hint: 1, None + height: app.window_size[1]/4 BoxLayout: spacing:50 diff --git a/src/bitmessagekivy/kv/credits.kv b/src/bitmessagekivy/kv/credits.kv index f6d037d219..b5eb3db7d0 100644 --- a/src/bitmessagekivy/kv/credits.kv +++ b/src/bitmessagekivy/kv/credits.kv @@ -7,7 +7,7 @@ orientation: 'vertical' OneLineListTitle: id: cred - text: "Available Credits" + text: app.tr._("Available Credits") divider: None theme_text_color: 'Primary' _no_ripple_effect: True @@ -15,7 +15,7 @@ OneLineListTitle: id: cred - text: root.available_credits + text: app.tr._(root.available_credits) divider: None font_style: 'H5' theme_text_color: 'Primary' @@ -24,5 +24,5 @@ AnchorLayout: MDRaisedButton: height: dp(38) - text: "+Add more credits" + text: app.tr._("+Add more credits") on_press: app.root.ids.scr_mngr.current = 'payment' diff --git a/src/bitmessagekivy/kv/login.kv b/src/bitmessagekivy/kv/login.kv index 2b923b90df..6c78d84761 100644 --- a/src/bitmessagekivy/kv/login.kv +++ b/src/bitmessagekivy/kv/login.kv @@ -28,7 +28,7 @@ size_hint_y: None height: dp(50) MDLabel: - text: "Select method to make an address:" + text: app.tr._("Select method to make an address:") bold: True halign: "center" theme_text_color: "Custom" @@ -54,7 +54,7 @@ size_hint_x: None width: dp(200) MDLabel: - text: "Random Number Generator" + text: app.tr._("Random Number Generator") AnchorLayout: size_hint_y: None @@ -74,11 +74,11 @@ size_hint_x: None width: dp(200) MDLabel: - text: "Pseudo Number Generator" + text: app.tr._("Pseudo Number Generator") AnchorLayout: MDFillRoundFlatIconButton: icon: "chevron-double-right" - text: "Proceed Next" + text: app.tr._("Proceed Next") on_release: app.root.ids.scr_mngr.current = 'random' on_press: @@ -160,7 +160,7 @@ size_hint_y: None height: dp(50) MDLabel: - text: "Enter a label to generate address for:" + text: app.tr._("Enter a label to generate address for:") bold: True halign: "center" theme_text_color: "Custom" @@ -185,7 +185,7 @@ AnchorLayout: MDFillRoundFlatIconButton: icon: "chevron-double-right" - text: "Proceed Next" + text: app.tr._("Proceed Next") on_release: app.root.ids.sc7.generateaddress(app) Widget: @@ -245,7 +245,7 @@ MDLabel: theme_text_color: "Custom" text_color: .1,.1,.1,.9 - text: root.section_name + text: app.tr._(root.section_name) bold: True font_style: "Button" @@ -261,4 +261,4 @@ theme_text_color: "Custom" text_color: 0.3,0.3,0.3,1 font_style: "Body1" - text: root.section_text + text: app.tr._(root.section_text) diff --git a/src/bitmessagekivy/kv/maildetail.kv b/src/bitmessagekivy/kv/maildetail.kv index 3d51f65789..72473f944c 100644 --- a/src/bitmessagekivy/kv/maildetail.kv +++ b/src/bitmessagekivy/kv/maildetail.kv @@ -19,7 +19,7 @@ # on_touch_down: root.allclick(self) OneLineListTitle: id: subj - text: root.subject + text: app.tr._(root.subject) divider: None font_style: 'H5' theme_text_color: 'Primary' @@ -27,14 +27,14 @@ long_press_time: 1 TwoLineAvatarIconListItem: id: subaft - text: root.from_addr - secondary_text: 'to ' + root.to_addr + text: app.tr._(root.from_addr) + secondary_text: app.tr._('to ' + root.to_addr) divider: None on_press: root.detailedPopup() BadgeText: size_hint:(None, None) size:[120, 140] if app.app_platform == 'android' else [64, 80] - text: root.time_tag + text: app.tr._(root.time_tag) halign:'center' font_style:'Caption' pos_hint: {'center_y': .8} @@ -42,7 +42,7 @@ font_size: '11sp' MDChip: size_hint: (.16 if app.app_platform == 'android' else .07 , None) - label: root.page_type + label: app.tr._(root.page_type) icon: '' pos_hint: {'center_x': .91 if app.app_platform == 'android' else .95, 'center_y': .3} radius: 8 diff --git a/src/bitmessagekivy/kv/myaddress.kv b/src/bitmessagekivy/kv/myaddress.kv index 39027b1cfa..f0ac822f1b 100644 --- a/src/bitmessagekivy/kv/myaddress.kv +++ b/src/bitmessagekivy/kv/myaddress.kv @@ -14,7 +14,7 @@ height: self.minimum_height MDLabel: id: tag_label - text: 'My Addresses' + text: app.tr._('My Addresses') font_style: 'Subtitle2' FloatLayout: MDScrollViewRefreshLayout: diff --git a/src/bitmessagekivy/kv/network.kv b/src/bitmessagekivy/kv/network.kv index c7cb9a2f2e..f38c8b967f 100644 --- a/src/bitmessagekivy/kv/network.kv +++ b/src/bitmessagekivy/kv/network.kv @@ -5,7 +5,7 @@ tab_display_mode:'text' Tab: - text: "Total connections" + text: app.tr._("Total connections") ScrollView: do_scroll_x: False MDList: @@ -13,7 +13,7 @@ size_hint_y: None height: dp(200) OneLineListItem: - text: "Total Connections" + text: app.tr._("Total Connections") BoxLayout: orientation: 'vertical' size_hint_y: None @@ -27,12 +27,12 @@ pos_hint: {'center_x': .5} MDLabel: font_style: 'H6' - text: root.text_variable_1 + text: app.tr._(root.text_variable_1) font_size: '13sp' color: (1,1,1,1) halign: 'center' Tab: - text: 'Processes' + text: app.tr._('Processes') ScrollView: do_scroll_x: False MDList: @@ -40,7 +40,7 @@ size_hint_y: None height: dp(500) OneLineListItem: - text: "person-to-person" + text: app.tr._("person-to-person") BoxLayout: orientation: 'vertical' size_hint_y: None @@ -54,12 +54,12 @@ pos_hint: {'center_x': .5} MDLabel: font_style: 'H6' - text: root.text_variable_2 + text: app.tr._(root.text_variable_2) font_size: '13sp' color: (1,1,1,1) halign: 'center' OneLineListItem: - text: "Brodcast" + text: app.tr._("Brodcast") BoxLayout: orientation: 'vertical' size_hint_y: None @@ -73,12 +73,12 @@ pos_hint: {'center_x': .5} MDLabel: font_style: 'H6' - text: root.text_variable_3 + text: app.tr._(root.text_variable_3) font_size: '13sp' color: (1,1,1,1) halign: 'center' OneLineListItem: - text: "publickeys" + text: app.tr._("publickeys") BoxLayout: orientation: 'vertical' size_hint_y: None @@ -92,12 +92,12 @@ pos_hint: {'center_x': .5} MDLabel: font_style: 'H6' - text: root.text_variable_4 + text: app.tr._(root.text_variable_4) font_size: '13sp' color: (1,1,1,1) halign: 'center' OneLineListItem: - text: "objects" + text: app.tr._("objects") BoxLayout: orientation: 'vertical' size_hint_y: None @@ -111,7 +111,7 @@ pos_hint: {'center_x': .5} MDLabel: font_style: 'H6' - text: root.text_variable_5 + text: app.tr._(root.text_variable_5) font_size: '13sp' color: (1,1,1,1) halign: 'center' diff --git a/src/bitmessagekivy/kv/popup.kv b/src/bitmessagekivy/kv/popup.kv index 2feaf27d61..3a52afb846 100644 --- a/src/bitmessagekivy/kv/popup.kv +++ b/src/bitmessagekivy/kv/popup.kv @@ -25,7 +25,7 @@ MDTextField: id: label multiline: False - hint_text: "Label" + hint_text: app.tr._("Label") required: True helper_text_mode: "on_error" on_text: root.checkLabel_valid(self) @@ -34,7 +34,7 @@ rgba: (0,0,0,1) MDTextField: id: address - hint_text: "Address" + hint_text: app.tr._("Address") required: True helper_text_mode: "on_error" multiline: False @@ -52,7 +52,7 @@ MDLabel font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "Label" + text: app.tr._("Label") font_size: '17sp' halign: 'left' MDTextField: @@ -60,7 +60,7 @@ font_style: 'Body1' font_size: '15sp' halign: 'left' - text: root.address_label + text: app.tr._(root.address_label) theme_text_color: 'Primary' required: True helper_text_mode: "on_error" @@ -71,7 +71,7 @@ MDLabel: font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "Address" + text: app.tr._("Address") font_size: '17sp' halign: 'left' Widget: @@ -83,7 +83,7 @@ id: address font_style: 'Body1' theme_text_color: 'Primary' - text: root.address + text: app.tr._(root.address) font_size: '15sp' halign: 'left' IconRightSampleWidget: @@ -102,7 +102,7 @@ id: myaddr_label font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "Label" + text: app.tr._("Label") font_size: '17sp' halign: 'left' MDLabel: @@ -114,7 +114,7 @@ MDLabel: font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "Address" + text: app.tr._("Address") font_size: '17sp' halign: 'left' BoxLayout: @@ -123,7 +123,7 @@ id: label_address font_style: 'Body1' theme_text_color: 'Primary' - text: root.address + text: app.tr._(root.address) font_size: '15sp' halign: 'left' IconRightSampleWidget: @@ -142,7 +142,7 @@ on_press: root.send_message_from() MDLabel: font_style: 'H6' - text: 'Send message from' + text: app.tr._('Send message from') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -153,7 +153,7 @@ on_press: app.root.ids.sc15.qrdisplay(root, root.address) MDLabel: font_style: 'H6' - text: 'Show QR code' + text: app.tr._('Show QR code') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -163,7 +163,7 @@ on_press: root.close_pop() MDLabel: font_style: 'H6' - text: 'Cancel' + text: app.tr._('Cancel') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -189,7 +189,7 @@ id: popup_label font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "Bitmessage isn't connected to the network.\n If you quit now, it may cause delivery delays.\n Wait until connected and the synchronisation finishes?" + text: app.tr._("Bitmessage isn't connected to the network.\n If you quit now, it may cause delivery delays.\n Wait until connected and the synchronisation finishes?") font_size: '17sp' halign: 'center' BoxLayout: @@ -203,7 +203,7 @@ on_press: app.stop() MDLabel: font_style: 'H6' - text: 'Yes' + text: app.tr._('Yes') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -213,7 +213,7 @@ on_press: root.closingAction(self.children[0].text) MDLabel: font_style: 'H6' - text: 'No' + text: app.tr._('No') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -224,7 +224,7 @@ on_press: root.closingAction(self.children[0].text) MDLabel: font_style: 'H6' - text: 'Cancel' + text: app.tr._('Cancel') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -248,7 +248,7 @@ id: from_add_label font_style: 'Subtitle2' theme_text_color: 'Primary' - text: "From :" + text: app.tr._("From :") font_size: '15sp' halign: 'left' Widget: @@ -262,7 +262,7 @@ id: sd_label font_style: 'Body2' theme_text_color: 'Primary' - text: "[b]" + root.from_addr + "[/b]" + text: app.tr._("[b]" + root.from_addr + "[/b]") font_size: '15sp' halign: 'left' markup: True @@ -288,7 +288,7 @@ MDLabel: font_style: 'Body2' theme_text_color: 'Primary' - text: "Date : " + root.time_tag + text: app.tr._("Date : " + root.time_tag) font_size: '15sp' halign: 'left' BoxLayout: @@ -301,7 +301,7 @@ pos_hint: {'x': 0.8, 'y': 0} MDLabel: font_style: 'H6' - text: 'Cancel' + text: app.tr._('Cancel') font_size: '13sp' color: (1,1,1,1) halign: 'center' @@ -311,7 +311,7 @@ MDLabel: font_style: 'Body2' theme_text_color: 'Primary' - text: root.to_addr + text: app.tr._(root.to_addr) font_size: '15sp' halign: 'left' IconRightSampleWidget: diff --git a/src/bitmessagekivy/kv/settings.kv b/src/bitmessagekivy/kv/settings.kv index 98307c93eb..5e5ea185ec 100644 --- a/src/bitmessagekivy/kv/settings.kv +++ b/src/bitmessagekivy/kv/settings.kv @@ -5,7 +5,7 @@ tab_display_mode:'text' Tab: - text: "User Interface" + text: app.tr._("User Interface") ScrollView: do_scroll_x: False BoxLayout: @@ -27,7 +27,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Start-on-login not yet supported on your OS" + text: app.tr._("Start-on-login not yet supported on your OS") halign: 'left' pos_hint: {'center_x': 0, 'center_y': 0.6} disabled: True @@ -44,7 +44,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Tray" + text: app.tr._("Tray") halign: 'left' bold: True BoxLayout: @@ -58,7 +58,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Start Bitmessage in the tray(don't show main window)" + text: app.tr._("Start Bitmessage in the tray(don't show main window)") halign: 'left' pos_hint: {'x': 0, 'y': .5} BoxLayout: @@ -72,7 +72,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Minimize to tray" + text: app.tr._("Minimize to tray") halign: 'left' pos_hint: {'x': 0, 'y': .5} BoxLayout: @@ -86,7 +86,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Close to tray" + text: app.tr._("Close to tray") halign: 'left' pos_hint: {'x': 0, 'y': .5} BoxLayout: @@ -104,7 +104,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Hide connection notifications" + text: app.tr._("Hide connection notifications") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} BoxLayout: @@ -118,7 +118,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Show notification when message received" + text: app.tr._("Show notification when message received") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} BoxLayout: @@ -132,7 +132,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Run in Portable Mode" + text: app.tr._("Run in Portable Mode") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} BoxLayout: @@ -140,7 +140,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: 'In portable Mode, messages and config files are stored in the same directory as the program rather then the normal application-data folder. This makes it convenient to run Bitmessage from a USB thumb drive.' + text: app.tr._('In portable Mode, messages and config files are stored in the same directory as the program rather then the normal application-data folder. This makes it convenient to run Bitmessage from a USB thumb drive.') # text: 'huiiiii' halign: 'left' BoxLayout: @@ -157,7 +157,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Willingly include unencrypted destination address when sending to a mobile device" + text: app.tr._("Willingly include unencrypted destination address when sending to a mobile device") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} BoxLayout: @@ -171,7 +171,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Use identicons" + text: app.tr._("Use identicons") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} BoxLayout: @@ -184,7 +184,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Reply below Quote" + text: app.tr._("Reply below Quote") halign: 'left' pos_hint: {'x': 0, 'y': 0.2} Widget: @@ -200,13 +200,13 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Interface Language" + text: app.tr._("Interface Language") # halign: 'right' bold: True MDDropDownItem: id: drop_item # pos_hint: {'center_x': .5, 'center_y': .5} - text: 'italiano' + text: 'System Setting' on_release: root.menu.open() on_press: root.set_caller() # MDDropDownItem: @@ -224,10 +224,11 @@ orientation: 'horizontal' # padding: [0, 10, 0, 0] spacing: 10 + # MDRaisedButton: + # text: app.tr._('Cancel') MDRaisedButton: - text: 'Reset' - MDRaisedButton: - text: 'Ok' + text: app.tr._('Apply') + on_press: root.change_language() Tab: text: 'Network Settings' ScrollView: @@ -243,7 +244,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Listening port" + text: app.tr._("Listening port") halign: 'left' bold: True BoxLayout: @@ -254,14 +255,14 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Listen for connections on port:" + text: app.tr._("Listen for connections on port:") halign: 'left' BoxLayout: orientation: 'horizontal' MDTextFieldRect: size_hint: None, None size: dp(100), dp(30) - text: '8444' + text: app.tr._('8444') pos_hint: {'center_y': .5, 'center_x': .5} input_filter: "int" BoxLayout: @@ -276,7 +277,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "UPnP" + text: app.tr._("UPnP") halign: 'left' pos_hint: {'x': 0, 'y': 0} BoxLayout: @@ -284,7 +285,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Proxy server / Tor" + text: app.tr._("Proxy server / Tor") halign: 'left' bold: True @@ -295,7 +296,7 @@ size_hint_x: None font_style: 'Body1' theme_text_color: 'Primary' - text: "Type:" + text: app.tr._("Type:") halign: 'left' MDDropDownItem: id: dropdown_item2 @@ -314,19 +315,19 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Server hostname:" + text: app.tr._("Server hostname:") halign: 'left' MDTextFieldRect: size_hint: None, None size: dp(app.window_size[0]/4), dp(30) - hint_text: 'localhost' + hint_text: app.tr._('localhost') pos_hint: {'center_y': .5, 'center_x': .5} BoxLayout: orientation: 'horizontal' MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Port:" + text: app.tr._("Port:") halign: 'left' # TextInput: # size_hint: None, None @@ -339,7 +340,7 @@ MDTextFieldRect: size_hint: None, None size: dp(app.window_size[0]/4), dp(30) - hint_text: '9050' + hint_text: app.tr._('9050') pos_hint: {'center_y': .5, 'center_x': .5} input_filter: "int" BoxLayout: @@ -347,7 +348,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Username:" + text: app.tr._("Username:") halign: 'left' MDTextFieldRect: size_hint: None, None @@ -358,7 +359,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Pass:" + text: app.tr._("Pass:") halign: 'left' MDTextFieldRect: size_hint: None, None @@ -376,7 +377,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Authentication" + text: app.tr._("Authentication") halign: 'left' pos_hint: {'x': 0, 'y': 0} BoxLayout: @@ -391,7 +392,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Listen for incoming connections when using proxy" + text: app.tr._("Listen for incoming connections when using proxy") halign: 'left' pos_hint: {'x': 0, 'y': 0} BoxLayout: @@ -406,7 +407,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Only connect to onion services(*.onion)" + text: app.tr._("Only connect to onion services(*.onion)") halign: 'left' pos_hint: {'x': 0, 'y': 0} BoxLayout: @@ -414,7 +415,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Bandwidth limit" + text: app.tr._("Bandwidth limit") halign: 'left' bold: True BoxLayout: @@ -425,12 +426,12 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Maximum download rate (kB/s):[0:unlimited]" + text: app.tr._("Maximum download rate (kB/s):[0:unlimited]") halign: 'left' MDTextFieldRect: size_hint: None, None size: app.window_size[0]/2, dp(30) - hint_text: '0' + hint_text: app.tr._('0') pos_hint: {'center_y': .5, 'center_x': .5} input_filter: "int" BoxLayout: @@ -441,7 +442,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Maximum upload rate (kB/s):[0:unlimited]" + text: app.tr._("Maximum upload rate (kB/s):[0:unlimited]") halign: 'left' MDTextFieldRect: size_hint: None, None @@ -457,7 +458,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Maximum outbound connections:[0:none]" + text: app.tr._("Maximum outbound connections:[0:none]") halign: 'left' MDTextFieldRect: size_hint: None, None @@ -469,10 +470,10 @@ spacing:5 orientation: 'horizontal' # pos_hint: {'x':.76} + # MDRaisedButton: + # text: app.tr._('Cancel') MDRaisedButton: - text: 'Reset' - MDRaisedButton: - text: 'Ok' + text: app.tr._('Apply') Tab: text: 'Resends Expire' ScrollView: @@ -491,7 +492,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: root.exp_text + text: app.tr._(root.exp_text) halign: 'left' BoxLayout: id: box2_height @@ -501,7 +502,7 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Leave these input fields blank for the default behavior." + text: app.tr._("Leave these input fields blank for the default behavior.") halign: 'left' BoxLayout: size_hint_y: None @@ -513,18 +514,18 @@ MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "Give up after" + text: app.tr._("Give up after") halign: 'left' MDTextFieldRect: size_hint: None, None size: dp(70), dp(30) - text: '0' + text: app.tr._('0') pos_hint: {'center_y': .5, 'center_x': .5} input_filter: "int" MDLabel: font_style: 'Body1' theme_text_color: 'Primary' - text: "days and" + text: app.tr._("days and") halign: 'left' MDTextFieldRect: size_hint: None, None @@ -544,7 +545,9 @@ # pos_hint: {'left': 0} # pos_hint: {'x':.75} height: dp(50) + self.minimum_height + # MDRaisedButton: + # text: app.tr._('Cancel') MDRaisedButton: - text: 'Reset' - MDRaisedButton: - text: 'Ok' + text: app.tr._('Apply') + + Loader: \ No newline at end of file diff --git a/src/bitmessagekivy/language_script.py b/src/bitmessagekivy/language_script.py new file mode 100644 index 0000000000..45c45a4a7d --- /dev/null +++ b/src/bitmessagekivy/language_script.py @@ -0,0 +1,94 @@ +import os +import subprocess + +KVFILES = [ + "settings", + "popup", + "allmails", + "draft", + "maildetail", + "common_widgets", + "addressbook", + "myaddress", + "composer", + "payment", + "sent", + "network", + "login", + "credits", + "trash", + "inbox", + "chat_room", + "chat_list" +] + +windowsLanguageMap = { + 'ar': 'Arabic', + 'cs': 'Czech', + 'da': 'Danish', + 'de': 'German', + 'en': 'English', + 'eo': 'Esperanto', + 'fr': 'French', + 'it': 'Italian', + 'ja': 'Japanese', + 'nl': 'Dutch', + 'no': 'Norwegian', + 'pl': 'Polish', + 'pt': 'Portuguese', + 'ru': 'Russian', + 'sk': 'Slovak', + 'zh': 'Chinese', +} + +current_dir_path = os.path.abspath(os.path.join(__file__, '../')) +main_file = os.path.join(current_dir_path, 'mpybit.py') +kv_file = os.path.join(current_dir_path, 'main.kv') + +print("Create .po files for Project") + +translation_command = [ + 'xgettext', + '-Lpython', + '--output=messages.pot', + '--from-code=UTF-8', + main_file, + kv_file +] + +for kv_file in KVFILES: + translation_command.append(f'{current_dir_path}/kv/{kv_file}.kv') + +# print('translation_command..............', translation_command) +subprocess.run(translation_command, stdout=subprocess.DEVNULL) +# print("The exit code1 was: %d" % list_files.returncode) + +# this command is used to create seperate dir for mo and po file +subprocess.run( + ['mkdir', '-p', 'translations/po'], stdout=subprocess.DEVNULL) + + +for key in windowsLanguageMap.keys(): + subprocess.run( + ['touch', f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL) + subprocess.run( + ['msgmerge', '--update', '--no-fuzzy-matching', '--backup=off', + f'{current_dir_path}/translations/po/bitmessage_{key}.po', f'{current_dir_path}/messages.pot'], + stdout=subprocess.DEVNULL + ) + +print("Create .mo file from .po file") + +for key in windowsLanguageMap.keys(): + subprocess.run( + ['mkdir', '-p', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES'], + stdout=subprocess.DEVNULL + ) + subprocess.run( + ['touch', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo'], + stdout=subprocess.DEVNULL + ) + subprocess.run( + ['msgfmt', '-c', '-o', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo', + f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL + ) diff --git a/src/bitmessagekivy/main.kv b/src/bitmessagekivy/main.kv index c14ebe043d..3960b38cde 100644 --- a/src/bitmessagekivy/main.kv +++ b/src/bitmessagekivy/main.kv @@ -16,7 +16,7 @@ #:import MDScrollViewRefreshLayout kivymd.uix.refreshlayout.MDScrollViewRefreshLayout #:import MDSpinner kivymd.uix.spinner.MDSpinner #:import MDTabsBase kivymd.uix.tab.MDTabsBase -#:import ZBarSymbol pyzbar.pyzbar.ZBarSymbol +##:import ZBarSymbol pyzbar.pyzbar.ZBarSymbol #:set color_button (0.784, 0.443, 0.216, 1) # brown @@ -65,6 +65,20 @@ size_hint_y: None height: "200dp" + MDIconButton: + id: reset_image + icon: "refresh" + x: root.parent.x + dp(10) + pos_hint: {"top": 1, 'left': 1} + color: [1,0,0,1] + on_release: app.rest_default_avatar_img() + theme_text_color: "Custom" + text_color: app.theme_cls.primary_color + # opacity: 1 if app.current_address_label() else 0 + # disabled: False if app.current_address_label() else True + opacity: 0 + disabled: True + MDIconButton: id: file_manager icon: "file-image" @@ -100,7 +114,8 @@ height: self.minimum_height NavigationDrawerDivider: NavigationDrawerSubheader: - text: "Accounts" + text: app.tr._('Accounts') + #text: app.tr._('Hello World') height:"35dp" NavigationItem: # size: 50,50 @@ -110,14 +125,14 @@ pos_hint:{"x":0,"y":0} option_cls: Factory.get("MySpinnerOption") font_size: '12.5sp' - text: app.getDefaultAccData() + text: app.getDefaultAccData(self) #background_color: color_button if self.state == 'normal' else color_button_pressed #background_down: 'atlas://data/images/defaulttheme/spinner' color: color_font background_normal: '' background_color: app.theme_cls.primary_color #background_color: (0.62,0.67,0.72,1) - values: app.variable_1 + # values: app.variable_1 on_text:app.getCurrentAccountData(self.text) # Image: # source: app.get_default_image() @@ -127,7 +142,8 @@ ArrowImg: NavigationItem: id: inbox_cnt - text: 'Inbox' + text: app.tr._('Inbox') + #text: app.tr._('Hello World') icon: 'email-open' divider: None on_release: app.root.ids.scr_mngr.current = 'inbox' @@ -135,82 +151,82 @@ on_press: app.load_screen(self) NavigationItem: id: send_cnt - text: 'Sent' + text: app.tr._('Sent') icon: 'send' divider: None on_release: app.root.ids.scr_mngr.current = 'sent' on_release: root.parent.set_state() NavigationItem: id: draft_cnt - text: 'Draft' + text: app.tr._('Draft') icon: 'message-draw' divider: None on_release: app.root.ids.scr_mngr.current = 'draft' on_release: root.parent.set_state() NavigationItem: id: trash_cnt - text: 'Trash' + text: app.tr._('Trash') icon: 'delete' divider: None on_release: app.root.ids.scr_mngr.current = 'trash' on_release: root.parent.set_state() NavigationItem: id: allmail_cnt - text: 'All Mails' + text: app.tr._('All Mails') icon: 'contact-mail' divider: None on_release: app.root.ids.scr_mngr.current = 'allmails' on_release: root.parent.set_state() on_press: app.load_screen(self) - NavigationItem: - id: chat_rm - text: 'Chat Room' - icon: 'wechat' - divider: None - on_release: app.root.ids.scr_mngr.current = 'chlist' - on_release: root.parent.set_state() + # NavigationItem: + # id: chat_rm + # text: app.tr._('Chat Room') + # icon: 'wechat' + # divider: None + # on_release: app.root.ids.scr_mngr.current = 'chlist' + # on_release: root.parent.set_state() NavigationDrawerDivider: NavigationDrawerSubheader: - text: "All labels" + text: app.tr._("All labels") NavigationItem: - text: 'Address Book' + text: app.tr._('Address Book') icon: 'book-multiple' divider: None on_release: app.root.ids.scr_mngr.current = 'addressbook' on_release: root.parent.set_state() NavigationItem: - text: 'Settings' + text: app.tr._('Settings') icon: 'settings' divider: None on_release: app.root.ids.scr_mngr.current = 'set' on_release: root.parent.set_state() NavigationItem: - text: 'Purchase' + text: app.tr._('Purchase') icon: 'shopping' divider: None on_release: app.root.ids.scr_mngr.current = 'payment' on_release: root.parent.set_state() + # NavigationItem: + # text: app.tr._('Credits') + # icon: 'wallet' + # divider: None + # on_release: app.root.ids.scr_mngr.current = 'credits' + # on_release: root.parent.set_state() NavigationItem: - text: 'Credits' - icon: 'wallet' - divider: None - on_release: app.root.ids.scr_mngr.current = 'credits' - on_release: root.parent.set_state() - NavigationItem: - text: 'New address' + text: app.tr._('New address') icon: 'account-plus' divider: None on_release: app.root.ids.scr_mngr.current = 'login' on_release: root.parent.set_state() on_press: app.reset_login_screen() NavigationItem: - text: 'Network status' + text: app.tr._('Network status') icon: 'server-network' divider: None on_release: app.root.ids.scr_mngr.current = 'networkstat' on_release: root.parent.set_state() NavigationItem: - text: 'My addresses' + text: app.tr._('My addresses') icon: 'account-multiple' divider: None on_release: app.root.ids.scr_mngr.current = 'myaddress' @@ -317,7 +333,7 @@ NavigationLayout: size_hint_y: None font_style: 'Body1' theme_text_color: 'Primary' - text: root.address + text: app.tr._(root.address) multiline: True readonly: True line_color_normal: [0,0,0,0] diff --git a/src/bitmessagekivy/messages.pot b/src/bitmessagekivy/messages.pot new file mode 100644 index 0000000000..6d169819fb --- /dev/null +++ b/src/bitmessagekivy/messages.pot @@ -0,0 +1,368 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-20 02:27+0530\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/mpybit.py b/src/bitmessagekivy/mpybit.py index 33316f372a..7d2bdd7a81 100644 --- a/src/bitmessagekivy/mpybit.py +++ b/src/bitmessagekivy/mpybit.py @@ -80,11 +80,16 @@ from kivy.effects.dampedscroll import DampedScrollEffect from kivymd.uix.menu import MDDropdownMenu -from kivy_garden.zbarcam import ZBarCam -from pyzbar.pyzbar import ZBarSymbol +from kivy.lang import Observable +import gettext +import l10n +import locale +from debug import logger if platform != "android": from kivy.config import Config + from kivy_garden.zbarcam import ZBarCam + from pyzbar.pyzbar import ZBarSymbol Config.set("input", "mouse", "mouse, multitouch_on_demand") elif platform == "android": @@ -185,6 +190,44 @@ def chipTag(text): return obj +class Lang(Observable): + observers = [] + lang = None + + def __init__(self, defaultlang): + super(Lang, self).__init__() + self.ugettext = None + self.lang = defaultlang + self.switch_lang(self.lang) + + def _(self, text): + return self.ugettext(text) + + def fbind(self, name, func, args, **kwargs): + if name == "_": + self.observers.append((func, args, kwargs)) + else: + return super(Lang, self).fbind(name, func, *largs, **kwargs) + + def funbind(self, name, func, args, **kwargs): + if name == "_": + key = (func, args, kwargs) + if key in self.observers: + self.observers.remove(key) + else: + return super(Lang, self).funbind(name, func, *args, **kwargs) + + def switch_lang(self, lang): + # get the right locales directory, and instanciate a gettext + locale_dir = os.path.join(os.path.dirname(__file__), 'translations', 'mo', 'locales') + locales = gettext.translation('langapp', locale_dir, languages=[lang]) + self.ugettext = locales.gettext + + # update all the kv rules attached to this text + for func, largs, kwargs in self.observers: + func(largs, None, None) + + class Inbox(Screen): """Inbox Screen class for kivy Ui""" @@ -264,8 +307,12 @@ def loadMessagelist(self, where="", what=""): def set_inboxCount(self, msgCnt): # pylint: disable=no-self-use """This method is used to sent inbox message count""" - src_mng_obj = state.kivyapp.root.ids.content_drawer.ids.inbox_cnt - src_mng_obj.ids.badge_txt.text = showLimitedCnt(int(msgCnt)) + src_mng_obj = state.kivyapp.root.ids.content_drawer.ids + src_mng_obj.inbox_cnt.ids.badge_txt.text = showLimitedCnt(int(msgCnt)) + state.kivyapp.get_sent_count() + state.all_count = str( + int(state.sent_count) + int(state.inbox_count)) + src_mng_obj.allmail_cnt.ids.badge_txt.text = showLimitedCnt(int(state.all_count)) def inboxDataQuery(self, xAddress, where, what, start_indx=0, end_indx=20): """This method is used for retrieving inbox data""" @@ -367,12 +414,14 @@ def delete(self, data_index, instance, *args): msg_count_objs.trash_cnt.ids.badge_txt.text = showLimitedCnt( int(state.trash_count) + 1 ) - msg_count_objs.allmail_cnt.ids.badge_txt.text = showLimitedCnt( - int(state.all_count) - 1 - ) state.inbox_count = str(int(state.inbox_count) - 1) state.trash_count = str(int(state.trash_count) + 1) - state.all_count = str(int(state.all_count) - 1) + if int(state.all_count) > 0: + msg_count_objs.allmail_cnt.ids.badge_txt.text = showLimitedCnt( + int(state.all_count) - 1 + ) + state.all_count = str(int(state.all_count) - 1) + if int(state.inbox_count) <= 0: # self.ids.identi_tag.children[0].text = '' self.ids.tag_label.text = '' @@ -483,16 +532,19 @@ def set_mdList(self, first_index, last_index): try: meny.canvas.children[6].rgba = [0, 0, 0, 0] if is_enable == 'true' else [0.5, 0.5, 0.5, 0.5] except Exception: - meny.canvas.children[9].rgba = [0, 0, 0, 0] if is_enable == 'true' else [0.5, 0.5, 0.5, 0.5] + try: + meny.canvas.children[9].rgba = [0, 0, 0, 0] if is_enable == 'true' else [0.5, 0.5, 0.5, 0.5] + except Exception as e: + print('Exception: ', e) meny.add_widget(AvatarSampleWidget( source=state.imageDir + '/text_images/{}.png'.format( avatarImageFirstLetter(item['text'].strip())))) meny.bind(on_press=partial( self.myadd_detail, item['secondary_text'], item['text'])) - if state.association == item['secondary_text']: + if state.association == item['secondary_text'] and is_enable == 'true': badge_obj = BadgeText( size_hint=(None, None), - size=[85 if platform == 'android' else 50, 60], + size=[90 if platform == 'android' else 50, 60], text='Active', halign='center', font_style='Body1', theme_text_color='Custom', text_color=ThemeClsColor @@ -544,7 +596,8 @@ def myadd_detail(self, fromaddress, label, *args): MDFlatButton( text="Ok", on_release=lambda x: callback_for_menu_items("Ok") ), - ],) + ], + ) dialog_box.open() def callback_for_menu_items(text_item, *arg): @@ -570,6 +623,7 @@ def refresh_callback(interval): self.init_ui() self.ids.refresh_layout.refresh_done() self.tick = 0 + Clock.schedule_once(self.address_permision_callback, 0) Clock.schedule_once(refresh_callback, 1) @staticmethod @@ -928,6 +982,9 @@ def send(self, navApp): state.detailPageType = '' state.send_draft_mail = None self.parent.parent.parent.ids.sc4.update_sent_messagelist() + allmailCnt_obj = state.kivyapp.root.ids.content_drawer.ids.allmail_cnt + allmailCnt_obj.ids.badge_txt.text = showLimitedCnt(int(state.all_count) + 1) + state.all_count = str(int(state.all_count) + 1) Clock.schedule_once(self.callback_for_msgsend, 3) queues.workerQueue.put(('sendmessage', toAddress)) print("sqlExecute successfully #######################") @@ -981,12 +1038,60 @@ def auto_fill_fromaddr(self): self.ids.ti.text = self.ids.btn.text self.ids.ti.focus = True - def qrScanner(self): - """This method is used for scanning Qr code""" + def is_camara_attached(self): + self.parent.parent.parent.ids.sc23.check_camera() + is_available = self.parent.parent.parent.ids.sc23.camera_avaialbe + return is_available + + def camera_alert(self): + width = .8 if platform == 'android' else .55 + altet_txt = 'Currently this feature is not avaialbe!'if platform == 'android' else 'Camera is not available!' + dialog_box = MDDialog( + text=altet_txt, + size_hint=(width, .25), + buttons=[ + MDFlatButton( + text="Ok", on_release=lambda x: callback_for_menu_items("Ok") + ), + ], + ) + dialog_box.open() + + def callback_for_menu_items(text_item, *arg): + """Callback of alert box""" + dialog_box.dismiss() + toast(text_item) class ScanScreen(Screen): - """DropDownWidget class for kivy Ui""" + camera_avaialbe = BooleanProperty(False) + previous_open_screen = StringProperty() + pop_up_instance = ObjectProperty() + + def __init__(self, *args, **kwargs): + """Getting AddressBook Details""" + super(ScanScreen, self).__init__(*args, **kwargs) + self.check_camera() + + def check_camera(self): + """This method is used for checking camera avaibility""" + if platform != "android": + import cv2 + cap = cv2.VideoCapture(0) + while(cap.isOpened()): + print('Camera is available!') + self.camera_avaialbe = True + break + else: + print("Camera is not available!") + self.camera_avaialbe = False + + def get_screen(self, screen_name, instance=None): + """This method is used for getting previous screen name""" + self.previous_open_screen = screen_name + if screen_name != 'composer': + self.pop_up_instance = instance + def on_pre_enter(self): """ on_pre_enter works little better on android @@ -1012,7 +1117,6 @@ def on_enter(self): def on_leave(self): # pass - Clock.schedule_once(self.stop_camera, 0) def start_camera(self, *args): @@ -1682,6 +1786,7 @@ class Create(Screen): def __init__(self, **kwargs): """Getting Labels and address from addressbook""" super(Create, self).__init__(**kwargs) + Window.softinput_mode = "below_target" widget_1 = DropDownWidget() widget_1.ids.txt_input.word_list = [ addr[1] for addr in sqlQuery( @@ -1704,23 +1809,67 @@ class Setting(Screen): Here you may change that behavior by having Bitmessage give up after a certain number of days \ or months." + languages = { + 'ar': 'Arabic', + 'cs': 'Czech', + 'da': 'Danish', + 'de': 'German', + 'en': 'English', + 'eo': 'Esperanto', + 'fr': 'French', + 'it': 'Italian', + 'ja': 'Japanese', + 'nl': 'Dutch', + 'no': 'Norwegian', + 'pl': 'Polish', + 'pt': 'Portuguese', + 'ru': 'Russian', + 'sk': 'Slovak', + 'zh': 'Chinese', + } + newlocale = None + def __init__(self, *args, **kwargs): """Trash method, delete sent message and add in Trash""" super(Setting, self).__init__(*args, **kwargs) + if self.newlocale is None: + self.newlocale = l10n.getTranslationLanguage() + lang = locale.normalize(l10n.getTranslationLanguage()) + langs = [ + lang.split(".")[0] + "." + l10n.encoding, + lang.split(".")[0] + "." + 'UTF-8', + lang + ] + if 'win32' in platform or 'win64' in platform: + langs = [l10n.getWindowsLocale(lang)] + for lang in langs: + try: + l10n.setlocale(locale.LC_ALL, lang) + if 'win32' not in platform and 'win64' not in platform: + l10n.encoding = locale.nl_langinfo(locale.CODESET) + else: + l10n.encoding = locale.getlocale()[1] + logger.info("Successfully set locale to %s", lang) + break + except: + logger.error("Failed to set locale to %s", lang, exc_info=True) + Clock.schedule_once(self.init_ui, 0) def init_ui(self, dt=0): """Initialization for Ui""" - menu_items = [{"text": f"{i}"} for i in ['System Setting', 'U.S. English', 'italiano', - 'Esperanto', 'dansk', 'Deutsch', 'Pirate English', 'francais', - 'Nederlands', 'norsk bokmal', 'polski', 'portugues europeu']] + if self.newlocale is None: + self.newlocale = l10n.getTranslationLanguage() + # state.kivyapp.tr = Lang(self.newlocale) + state.kivyapp.tr = Lang(self.newlocale) + menu_items = [{"text": f"{i}"} for i in self.languages.values()] self.menu = MDDropdownMenu( caller=self, items=menu_items, position="auto", callback=self.set_item, - width_mult=3, - use_icon_item=False, + width_mult=3.5, + # use_icon_item=False, ) def set_caller(self): @@ -1733,6 +1882,21 @@ def set_item(self, instance): self.ids.drop_item.set_item(instance.text) self.menu.dismiss() + def change_language(self): + lang = self.ids.drop_item.current_item + for k, v in self.languages.items(): + if v == lang: + BMConfigParser().set('bitmessagesettings', 'userlocale', k) + BMConfigParser().save() + state.kivyapp.tr = Lang(k) + self.children[0].active = True + Clock.schedule_once(partial(self.language_callback, k), 1) + + def language_callback(self, lang, dt=0): + self.children[0].active = False + state.kivyapp.tr = Lang(lang) + toast('Language changed') + class NavigateApp(MDApp): """Navigation Layout of class""" @@ -1754,6 +1918,7 @@ class NavigateApp(MDApp): file_manager = None state.imageDir = os.path.join('./images', 'kivy') image_path = state.imageDir + tr = Lang("en") # for changing in franch replace en with fr def build(self): """Method builds the widget""" @@ -1787,22 +1952,25 @@ def showmeaddresses(name="text"): def getCurrentAccountData(self, text): """Get Current Address Account Data""" - if os.path.exists(state.imageDir + '/default_identicon/{}.png'.format(text)): - self.load_selected_Image(text) - else: - self.set_identicon(text) - address_label = self.current_address_label( - BMConfigParser().get(text, 'label'), text) - self.root_window.children[1].ids.toolbar.title = address_label - state.association = text - state.searcing_text = '' - LoadingPopup().open() - self.set_message_count() - for nav_obj in self.root.ids.content_drawer.children[ - 0].children[0].children[0].children: - nav_obj.active = True if nav_obj.text == 'Inbox' else False - self.fileManagerSetting() - Clock.schedule_once(self.setCurrentAccountData, 0.5) + if text != '': + if os.path.exists(state.imageDir + '/default_identicon/{}.png'.format(text)): + self.load_selected_Image(text) + else: + self.set_identicon(text) + self.root.ids.content_drawer.ids.reset_image.opacity = 0 + self.root.ids.content_drawer.ids.reset_image.disabled = True + address_label = self.current_address_label( + BMConfigParser().get(text, 'label'), text) + self.root_window.children[1].ids.toolbar.title = address_label + state.association = text + state.searcing_text = '' + LoadingPopup().open() + self.set_message_count() + for nav_obj in self.root.ids.content_drawer.children[ + 0].children[0].children[0].children: + nav_obj.active = True if nav_obj.text == 'Inbox' else False + self.fileManagerSetting() + Clock.schedule_once(self.setCurrentAccountData, 0.5) def fileManagerSetting(self): """This method is for file manager setting""" @@ -1861,7 +2029,8 @@ def addingtoaddressbook(self): on_release=self.close_pop, ), MDRaisedButton( - text="Scan QR code", text_color=self.theme_cls.primary_color + text="Scan QR code", text_color=self.theme_cls.primary_color, + on_release=self.scan_qr_code, ), ], ) @@ -1871,6 +2040,24 @@ def addingtoaddressbook(self): # p = GrashofPopup() # p.open() + def scan_qr_code(self, instance): + """this method is used for showing QR code scanner""" + if self.is_camara_attached(): + self.add_popup.dismiss() + self.root.ids.sc23.get_screen(self.root.ids.scr_mngr.current, self.add_popup) + self.root.ids.scr_mngr.current = 'scanscreen' + else: + altet_txt = ( + 'Currently this feature is not avaialbe!' if platform == 'android' else 'Camera is not available!') + self.add_popup.dismiss() + toast(altet_txt) + + def is_camara_attached(self): + """This method is for checking is camera available or not""" + self.root.ids.sc23.check_camera() + is_available = self.root.ids.sc23.camera_avaialbe + return is_available + def savecontact(self, instance): """Method is used for saving contacts""" pupup_obj = self.add_popup.content_cls @@ -1883,6 +2070,9 @@ def savecontact(self, instance): pupup_obj.ids.address.focus = True elif label == '': pupup_obj.ids.label.focus = True + else: + pupup_obj.ids.address.focus = True + # pupup_obj.ids.label.focus = True stored_address = [addr[1] for addr in kivy_helper_search.search_sql( folder="addressbook")] @@ -1904,26 +2094,30 @@ def close_pop(self, instance): self.add_popup.dismiss() toast('Canceled') - def getDefaultAccData(self): + def getDefaultAccData(self, instance): """Getting Default Account Data""" if BMConfigParser().addresses(): - img = identiconGeneration.generate(BMConfigParser().addresses()[0]) - self.createFolder(state.imageDir + '/default_identicon/') - if platform == 'android': - # android_path = os.path.expanduser - # ("~/user/0/org.test.bitapp/files/app/") - if not os.path.exists(state.imageDir + '/default_identicon/{}.png'.format( - BMConfigParser().addresses()[0])): - android_path = os.path.join( - os.environ['ANDROID_PRIVATE'] + '/app/') - img.texture.save('{1}/images/kivy/default_identicon/{0}.png'.format( - BMConfigParser().addresses()[0], android_path)) - else: - if not os.path.exists(state.imageDir + '/default_identicon/{}.png'.format( - BMConfigParser().addresses()[0])): - img.texture.save(state.imageDir + '/default_identicon/{}.png'.format( - BMConfigParser().addresses()[0])) - return BMConfigParser().addresses()[0] + first_addr = BMConfigParser().addresses()[0] + if BMConfigParser().get(str(first_addr), 'enabled') == 'true': + img = identiconGeneration.generate(first_addr) + # self.createFolder(state.imageDir + '/default_identicon/') + # if platform == 'android': + # # android_path = os.path.expanduser + # # ("~/user/0/org.test.bitapp/files/app/") + # if not os.path.exists(state.imageDir + '/default_identicon/{}.png'.format( + # BMConfigParser().addresses()[0])): + # android_path = os.path.join( + # os.environ['ANDROID_PRIVATE'] + '/app/') + # img.texture.save('{1}/images/kivy/default_identicon/{0}.png'.format( + # BMConfigParser().addresses()[0], android_path)) + # else: + # if not os.path.exists(state.imageDir + '/default_identicon/{}.png'.format( + # BMConfigParser().addresses()[0])): + # img.texture.save(state.imageDir + '/default_identicon/{}.png'.format( + # BMConfigParser().addresses()[0])) + instance.parent.parent.parent.parent.parent.ids.top_box.children[0].texture = ( + img.texture) + return first_addr return 'Select Address' @staticmethod @@ -1947,8 +2141,10 @@ def get_default_image(): def get_default_logo(): """Getting default logo image""" if BMConfigParser().addresses(): - return state.imageDir + '/default_identicon/{}.png'.format( - BMConfigParser().addresses()[0]) + first_addr = BMConfigParser().addresses()[0] + if BMConfigParser().get(str(first_addr), 'enabled') == 'true': + return state.imageDir + '/default_identicon/{}.png'.format( + first_addr) return state.imageDir + '/drawer_logo1.png' @staticmethod @@ -2202,6 +2398,8 @@ def current_address_label(current_add_label=None, current_addr=None): else: addr = BMConfigParser().addresses()[0] first_name = BMConfigParser().get(addr, 'label') + if BMConfigParser().get(addr, 'enabled') != 'true': + return '' f_name = first_name.split() label = f_name[0][:14].capitalize() + '...' if len( f_name[0]) > 15 else f_name[0].capitalize() @@ -2397,9 +2595,24 @@ def load_selected_Image(self, curerentAddr): # spinner_img_obj = self.root.ids.content_drawer.ids.btn.children[1] # spinner_img_obj.source = top_box_obj.source ='./images/default_identicon/{0}.png'.format(curerentAddr) top_box_obj.source = state.imageDir + '/default_identicon/{0}.png'.format(curerentAddr) + self.root.ids.content_drawer.ids.reset_image.opacity = 1 + self.root.ids.content_drawer.ids.reset_image.disabled = False top_box_obj.reload() # spinner_img_obj.reload() + def rest_default_avatar_img(self): + """set default avatar generated image""" + self.set_identicon(state.association) + img_path = state.imageDir + '/default_identicon/{}.png'.format(state.association) + try: + if os.path.exists(img_path): + os.remove(img_path) + self.root.ids.content_drawer.ids.reset_image.opacity = 0 + self.root.ids.content_drawer.ids.reset_image.disabled = True + except Exception as e: + pass + toast('Avatar reset') + def copy_composer_text(self, text): # pylint: disable=no-self-use """Copy the data from mail detail page""" Clipboard.copy(text) @@ -2425,9 +2638,19 @@ def _after_scan(self, text): if platform == 'android': text = cast(CharSequence, String(text)) show_toast(text, Toast.LENGTH_SHORT) - else: + elif self.root.ids.sc23.previous_open_screen == 'composer': self.root.ids.sc3.children[1].ids.txt_input.text = text self.root.ids.scr_mngr.current = 'create' + elif self.root.ids.sc23.previous_open_screen: + back_screen = self.root.ids.sc23.previous_open_screen + self.root.ids.scr_mngr.current = 'inbox' if back_screen == 'scanscreen' else back_screen + add_obj = self.root.ids.sc23.pop_up_instance + add_obj.content_cls.ids.address.text = text + Clock.schedule_once(partial(self.open_popup, add_obj), .5) + + def open_popup(self, instance, dt): + """This method is used for opening popup""" + instance.open() class GrashofPopup(BoxLayout): @@ -2965,6 +3188,8 @@ def __init__(self, *args, **kwargs): """Method used for setting size of spinner""" super(CustomSpinner, self).__init__(*args, **kwargs) self.dropdown_cls.max_height = Window.size[1] / 3 + self.values = list(addr for addr in BMConfigParser().addresses() + if BMConfigParser().get(str(addr), 'enabled') == 'true') class Allmails(Screen): @@ -3123,10 +3348,11 @@ def swipe_delete(self, unique_id, folder, instance, *args): state.sent_count = str(int(state.sent_count) - 1) nav_lay_obj.sc4.ids.ml.clear_widgets() nav_lay_obj.sc4.loadSent(state.association) + if folder != 'inbox': + msg_count_objs.allmail_cnt.ids.badge_txt.text = showLimitedCnt(int(state.all_count) - 1) + state.all_count = str(int(state.all_count) - 1) msg_count_objs.trash_cnt.ids.badge_txt.text = showLimitedCnt(int(state.trash_count) + 1) - msg_count_objs.allmail_cnt.ids.badge_txt.text = showLimitedCnt(int(state.all_count) - 1) state.trash_count = str(int(state.trash_count) + 1) - state.all_count = str(int(state.all_count) - 1) if int(state.all_count) <= 0: self.ids.tag_label.text = '' nav_lay_obj.sc5.clear_widgets() diff --git a/src/bitmessagekivy/translations/mo/locales/ar/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/ar/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/ar/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/cs/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/cs/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/cs/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/da/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/da/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/da/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/de/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/de/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/de/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/en/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/en/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/en/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/eo/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/eo/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/eo/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/fr/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/fr/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/fr/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/it/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/it/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/it/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/ja/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/ja/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/ja/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/nl/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/nl/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/nl/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/no/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/no/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/no/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/pl/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/pl/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/pl/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/pt/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/pt/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/pt/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/ru/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/ru/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/ru/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/sk/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/sk/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..396080d2c2 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/sk/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/mo/locales/zh/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/zh/LC_MESSAGES/langapp.mo new file mode 100644 index 0000000000..596f636e46 Binary files /dev/null and b/src/bitmessagekivy/translations/mo/locales/zh/LC_MESSAGES/langapp.mo differ diff --git a/src/bitmessagekivy/translations/po/bitmessage_ar.po b/src/bitmessagekivy/translations/po/bitmessage_ar.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_ar.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_cs.po b/src/bitmessagekivy/translations/po/bitmessage_cs.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_cs.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_da.po b/src/bitmessagekivy/translations/po/bitmessage_da.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_da.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_de.po b/src/bitmessagekivy/translations/po/bitmessage_de.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_de.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_en.po b/src/bitmessagekivy/translations/po/bitmessage_en.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_en.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_eo.po b/src/bitmessagekivy/translations/po/bitmessage_eo.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_eo.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_fr.po b/src/bitmessagekivy/translations/po/bitmessage_fr.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_fr.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_it.po b/src/bitmessagekivy/translations/po/bitmessage_it.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_it.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_ja.po b/src/bitmessagekivy/translations/po/bitmessage_ja.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_ja.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_nl.po b/src/bitmessagekivy/translations/po/bitmessage_nl.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_nl.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_no.po b/src/bitmessagekivy/translations/po/bitmessage_no.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_no.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_pl.po b/src/bitmessagekivy/translations/po/bitmessage_pl.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_pl.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_pt.po b/src/bitmessagekivy/translations/po/bitmessage_pt.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_pt.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_ru.po b/src/bitmessagekivy/translations/po/bitmessage_ru.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_ru.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_sk.po b/src/bitmessagekivy/translations/po/bitmessage_sk.po new file mode 100644 index 0000000000..325d57db54 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_sk.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: English\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagekivy/translations/po/bitmessage_zh.po b/src/bitmessagekivy/translations/po/bitmessage_zh.po new file mode 100644 index 0000000000..c99d689962 --- /dev/null +++ b/src/bitmessagekivy/translations/po/bitmessage_zh.po @@ -0,0 +1,367 @@ +# Example for an internationalized Kivy app +# Copyright (C) 2013 Mathieu Virbel +# This file is distributed under the same license as the Kivy package. +# Mathieu Virbel , 2013 +# +msgid "" +msgstr "" +"Project-Id-Version: 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-08-29 21:29+0530\n" +"PO-Revision-Date: 2013-08-01 15:36+0200\n" +"Last-Translator: Mathieu Virbel \n" +"Language-Team: Mathieu Virbel \n" +"Language: Chinese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:103 +msgid "Accounts" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:131 +msgid "Inbox" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:140 +msgid "Sent" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:147 +msgid "Draft" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:154 +msgid "Trash" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:161 +msgid "All Mails" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:176 +msgid "All labels" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:178 +msgid "Address Book" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:184 +msgid "Settings" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:190 +msgid "Purchase" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:202 +msgid "New address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:209 +msgid "Network status" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/main.kv:215 +msgid "My addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:8 +msgid "User Interface" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:30 +msgid "Start-on-login not yet supported on your OS" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:47 +msgid "Tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:61 +msgid "Start Bitmessage in the tray(don't show main window)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:75 +msgid "Minimize to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:89 +msgid "Close to tray" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:107 +msgid "Hide connection notifications" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:121 +msgid "Show notification when message received" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:135 +msgid "Run in Portable Mode" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:143 +msgid "" +"In portable Mode, messages and config files are stored in the same directory " +"as the program rather then the normal application-data folder. This makes it " +"convenient to run Bitmessage from a USB thumb drive." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:160 +msgid "" +"Willingly include unencrypted destination address when sending to a mobile " +"device" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:174 +msgid "Use identicons" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:187 +msgid "Reply below Quote" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:203 +msgid "Interface Language" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:230 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:476 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:551 +msgid "Apply" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:247 +msgid "Listening port" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:258 +msgid "Listen for connections on port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:265 +msgid "8444" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:280 +msgid "UPnP" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:288 +msgid "Proxy server / Tor" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:299 +msgid "Type:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:318 +msgid "Server hostname:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:323 +msgid "localhost" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:330 +msgid "Port:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:343 +msgid "9050" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:351 +msgid "Username:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:362 +msgid "Pass:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:380 +msgid "Authentication" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:395 +msgid "Listen for incoming connections when using proxy" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:410 +msgid "Only connect to onion services(*.onion)" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:418 +msgid "Bandwidth limit" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:429 +msgid "Maximum download rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:434 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:522 +msgid "0" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:445 +msgid "Maximum upload rate (kB/s):[0:unlimited]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:461 +msgid "Maximum outbound connections:[0:none]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:505 +msgid "Leave these input fields blank for the default behavior." +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:517 +msgid "Give up after" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/settings.kv:528 +msgid "days and" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:28 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:55 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:105 +msgid "Label" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:37 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:74 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:117 +msgid "Address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:145 +msgid "Send message from" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:156 +msgid "Show QR code" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:166 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:227 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:304 +msgid "Cancel" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:192 +msgid "" +"Bitmessage isn't connected to the network.\n" +" If you quit now, it may cause delivery delays.\n" +" Wait until connected and the synchronisation finishes?" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:206 +msgid "Yes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:216 +msgid "No" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:251 +msgid "From :" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:265 +msgid "[b]" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/popup.kv:291 +msgid "Date : " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/maildetail.kv:31 +msgid "to " +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/myaddress.kv:17 +msgid "My Addresses" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/composer.kv:54 +msgid "type, select or scan QR code for recipients address" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:8 +msgid "Total connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:16 +msgid "Total Connections" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:35 +msgid "Processes" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:43 +msgid "person-to-person" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:62 +msgid "Brodcast" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:81 +msgid "publickeys" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/network.kv:100 +msgid "objects" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:31 +msgid "Select method to make an address:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:57 +msgid "Random Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:77 +msgid "Pseudo Number Generator" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:81 +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:188 +msgid "Proceed Next" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/login.kv:163 +msgid "Enter a label to generate address for:" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:10 +msgid "Available Credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/credits.kv:27 +msgid "+Add more credits" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_room.kv:40 +msgid "Send" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:14 +msgid "Chats" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:26 +msgid "No Chat" +msgstr "" + +#: /home/cis/py3porting/Chatroom/PyBitmessage/src/bitmessagekivy/kv/chat_list.kv:50 +msgid "Contacts" +msgstr "" diff --git a/src/bitmessagemain.py b/src/bitmessagemain.py index 70f0180657..2f609074cc 100755 --- a/src/bitmessagemain.py +++ b/src/bitmessagemain.py @@ -53,7 +53,6 @@ depends.check_dependencies() - def _fixSocket(): if sys.platform.startswith('linux'): socket.SO_BINDTODEVICE = 25 diff --git a/src/bmconfigparser.py b/src/bmconfigparser.py index 3056741d25..a7e1b673f4 100644 --- a/src/bmconfigparser.py +++ b/src/bmconfigparser.py @@ -126,11 +126,13 @@ def items(self, section, raw=False, variables=None): def addresses(self, hidden=False): """Return a list of local bitmessage addresses (from section labels)""" - return [x for x in BMConfigParser().sections() if x.startswith('BM-') and (hidden or not BMConfigParser().safeGetBoolean(x, 'hidden'))] + return [x for x in BMConfigParser().sections() if x.startswith('BM-') and ( + hidden or not BMConfigParser().safeGetBoolean(x, 'hidden'))] def paymentaddress(self): """Return a list of local payment addresses (from section labels)""" - return ''.join([x for x in BMConfigParser().sections() if x.startswith('BM-') and BMConfigParser().safeGetBoolean(x, 'payment')]) + return ''.join([x for x in BMConfigParser().sections() if x.startswith( + 'BM-') and BMConfigParser().safeGetBoolean(x, 'payment')]) def read(self, filenames): configparser.ConfigParser.read(self, filenames) diff --git a/src/buildozer.spec b/src/buildozer.spec index 810d2183f9..6f0039186b 100644 --- a/src/buildozer.spec +++ b/src/buildozer.spec @@ -13,7 +13,7 @@ package.domain = org.test source.dir = . # (list) Source files to include (let empty to include all the files) -source.include_exts = py,png,jpg,kv,atlas,gif,zip, json, css, ttf,java +source.include_exts = py,png,jpg,kv,atlas,gif,zip, json, css, ttf,java, po, mo # (list) List of inclusions using pattern matching #source.include_patterns = assets/*,images/*.png, ../images1/*/*.png @@ -41,8 +41,8 @@ requirements = android, openssl, sqlite3, - kivy, - pyjnius, + kivy==1.11.1, + pyjnius==1.2.1, libiconv, libzbar, pillow, diff --git a/src/helper_search.py b/src/helper_search.py index c572c5b1e5..5b06ca7e27 100644 --- a/src/helper_search.py +++ b/src/helper_search.py @@ -79,7 +79,6 @@ def search_sql( return sqlQuery(sqlStatementBase, sqlArguments) - def check_match( toAddress, fromAddress, subject, message, where=None, what=None): """ diff --git a/src/images/kivy/default_identicon/BM-2cVBL4cpxW5p1EuK78huuRFj3nhbP9QdfL.png b/src/images/kivy/default_identicon/BM-2cVBL4cpxW5p1EuK78huuRFj3nhbP9QdfL.png deleted file mode 100644 index 3b007a9771..0000000000 Binary files a/src/images/kivy/default_identicon/BM-2cVBL4cpxW5p1EuK78huuRFj3nhbP9QdfL.png and /dev/null differ diff --git a/src/main.py b/src/main.py index 3c2aea7b99..06b5d98767 100644 --- a/src/main.py +++ b/src/main.py @@ -5,4 +5,4 @@ state.kivy = True print("Kivy Loading......") from bitmessagemain import main - main() \ No newline at end of file + main() diff --git a/src/plugins/menu_qrcode.py b/src/plugins/menu_qrcode.py index 4cdedb2d62..ea322a4940 100644 --- a/src/plugins/menu_qrcode.py +++ b/src/plugins/menu_qrcode.py @@ -39,7 +39,7 @@ def drawrect(self, row, col): QtCore.Qt.black) -class QRCodeDialog(QtGui.QDialog): +class QRCodeDialog(QtGui.QDialog): """The dialog""" def __init__(self, parent): super(QRCodeDialog, self).__init__(parent)