From 17cf2071596220966553fd1f3af2867a78a587a6 Mon Sep 17 00:00:00 2001 From: navjot Date: Tue, 20 Oct 2020 02:33:22 +0530 Subject: [PATCH 1/3] Implemented python script for creating .mo and .po files --- src/bitmessagekivy/Makefile | 12 + .../data/locales/fr/LC_MESSAGES/langapp.mo | Bin 509 -> 0 bytes src/bitmessagekivy/kv/settings.kv | 23 +- src/bitmessagekivy/language_script.py | 90 +++++ src/bitmessagekivy/main.kv | 26 +- src/bitmessagekivy/messages.pot | 368 ++++++++++++++++++ src/bitmessagekivy/mpybit.py | 76 +++- src/bitmessagekivy/po/en.po | 29 -- src/bitmessagekivy/po/fr.po | 29 -- .../mo/locales/ar}/LC_MESSAGES/langapp.mo | Bin 386 -> 386 bytes .../mo/locales/cs/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/da/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/de/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/en/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/eo/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/fr/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/it/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/ja/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/nl/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/no/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/pl/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/pt/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/ru/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/sk/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../mo/locales/zh/LC_MESSAGES/langapp.mo | Bin 0 -> 386 bytes .../translations/po/bitmessage_ar.po | 367 +++++++++++++++++ .../translations/po/bitmessage_cs.po | 367 +++++++++++++++++ .../translations/po/bitmessage_da.po | 367 +++++++++++++++++ .../translations/po/bitmessage_de.po | 367 +++++++++++++++++ .../translations/po/bitmessage_en.po | 367 +++++++++++++++++ .../translations/po/bitmessage_eo.po | 367 +++++++++++++++++ .../translations/po/bitmessage_fr.po | 367 +++++++++++++++++ .../translations/po/bitmessage_it.po | 367 +++++++++++++++++ .../translations/po/bitmessage_ja.po | 367 +++++++++++++++++ .../translations/po/bitmessage_nl.po | 367 +++++++++++++++++ .../translations/po/bitmessage_no.po | 367 +++++++++++++++++ .../translations/po/bitmessage_pl.po | 367 +++++++++++++++++ .../translations/po/bitmessage_pt.po | 367 +++++++++++++++++ .../translations/po/bitmessage_ru.po | 367 +++++++++++++++++ .../translations/po/bitmessage_sk.po | 367 +++++++++++++++++ .../translations/po/bitmessage_zh.po | 367 +++++++++++++++++ 41 files changed, 6437 insertions(+), 88 deletions(-) create mode 100644 src/bitmessagekivy/Makefile delete mode 100644 src/bitmessagekivy/data/locales/fr/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/language_script.py create mode 100644 src/bitmessagekivy/messages.pot delete mode 100644 src/bitmessagekivy/po/en.po delete mode 100644 src/bitmessagekivy/po/fr.po rename src/bitmessagekivy/{data/locales/en => translations/mo/locales/ar}/LC_MESSAGES/langapp.mo (89%) create mode 100644 src/bitmessagekivy/translations/mo/locales/cs/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/da/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/de/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/en/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/eo/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/fr/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/it/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/ja/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/nl/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/no/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/pl/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/pt/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/ru/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/sk/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/mo/locales/zh/LC_MESSAGES/langapp.mo create mode 100644 src/bitmessagekivy/translations/po/bitmessage_ar.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_cs.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_da.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_de.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_en.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_eo.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_fr.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_it.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_ja.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_nl.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_no.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_pl.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_pt.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_ru.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_sk.po create mode 100644 src/bitmessagekivy/translations/po/bitmessage_zh.po diff --git a/src/bitmessagekivy/Makefile b/src/bitmessagekivy/Makefile new file mode 100644 index 00000000..6b33590a --- /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/data/locales/fr/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/data/locales/fr/LC_MESSAGES/langapp.mo deleted file mode 100644 index 1e85ba7a1dc75796528c1793b80c4fb2155cfef4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 509 zcma)&%SyvQ6oyBw7vfHE=VJCUHEB^wtfH+g78)!i)Qy{Ia+*w?&cvBXu{$5Yt*_>? zTVKNy1;LGYn2-O!{G8kRp!P;EYRD1NMz)a$q>2LBMV^oyWQFV_FUVknkXO{|{~hx^ z)HUiM>IW*muevB?3)!rap30=KIq4fvNltD-N=@&zktrD&J%_}xLCPjztk5c?LEZPp zP-x>=WHXVnPMKL2>yUb*yO?ziaEC^A!ySaQ;Rj9Tx0oN$;52NW9s3R6MDa2g~~$OnhNKU cYdkWxz$1V6A|0*fx-``3(oqR?p;Zdx6Y}DTS^xk5 diff --git a/src/bitmessagekivy/kv/settings.kv b/src/bitmessagekivy/kv/settings.kv index 164ae346..5e5ea185 100644 --- a/src/bitmessagekivy/kv/settings.kv +++ b/src/bitmessagekivy/kv/settings.kv @@ -206,7 +206,7 @@ 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: app.tr._('Reset') - MDRaisedButton: - text: app.tr._('Ok') + text: app.tr._('Apply') + on_press: root.change_language() Tab: text: 'Network Settings' ScrollView: @@ -469,10 +470,10 @@ spacing:5 orientation: 'horizontal' # pos_hint: {'x':.76} + # MDRaisedButton: + # text: app.tr._('Cancel') MDRaisedButton: - text: app.tr._('Reset') - MDRaisedButton: - text: app.tr._('Ok') + text: app.tr._('Apply') Tab: text: 'Resends Expire' ScrollView: @@ -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: app.tr._('Reset') - MDRaisedButton: - text: app.tr._('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 00000000..d970f035 --- /dev/null +++ b/src/bitmessagekivy/language_script.py @@ -0,0 +1,90 @@ +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 87cd62f7..a6cb479a 100644 --- a/src/bitmessagekivy/main.kv +++ b/src/bitmessagekivy/main.kv @@ -164,13 +164,13 @@ 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: app.tr._('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: app.tr._("All labels") @@ -192,12 +192,12 @@ 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: app.tr._('Credits') + # icon: 'wallet' + # divider: None + # on_release: app.root.ids.scr_mngr.current = 'credits' + # on_release: root.parent.set_state() NavigationItem: text: app.tr._('New address') icon: 'account-plus' diff --git a/src/bitmessagekivy/messages.pot b/src/bitmessagekivy/messages.pot new file mode 100644 index 00000000..6d169819 --- /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 f255ca49..a4b72220 100644 --- a/src/bitmessagekivy/mpybit.py +++ b/src/bitmessagekivy/mpybit.py @@ -81,6 +81,9 @@ from kivymd.uix.menu import MDDropdownMenu from kivy.lang import Observable import gettext +import l10n +import locale +from debug import logger if platform != "android": from kivy.config import Config @@ -214,7 +217,7 @@ class Lang(Observable): def switch_lang(self, lang): # get the right locales directory, and instanciate a gettext - locale_dir = os.path.join(os.path.dirname(__file__), 'data', 'locales') + locale_dir = os.path.join(os.path.dirname(__file__), 'translations', 'mo', 'locales') locales = gettext.translation('langapp', locale_dir, languages=[lang]) self.ugettext = locales.gettext @@ -541,7 +544,7 @@ class MyAddress(Screen): if state.association == item['secondary_text']: 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 @@ -1827,22 +1830,66 @@ 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): - 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): @@ -1854,6 +1901,21 @@ class Setting(Screen): 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""" diff --git a/src/bitmessagekivy/po/en.po b/src/bitmessagekivy/po/en.po deleted file mode 100644 index d2e23f53..00000000 --- a/src/bitmessagekivy/po/en.po +++ /dev/null @@ -1,29 +0,0 @@ -# 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: 2013-08-01 15:36+0200\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" - -#: lang.kv:8 -msgid "Hello World" -msgstr "" - -#: lang.kv:17 -msgid "French" -msgstr "" - -#: lang.kv:21 -msgid "English" -msgstr "" diff --git a/src/bitmessagekivy/po/fr.po b/src/bitmessagekivy/po/fr.po deleted file mode 100644 index 64d6a625..00000000 --- a/src/bitmessagekivy/po/fr.po +++ /dev/null @@ -1,29 +0,0 @@ -# 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: 2013-08-01 15:36+0200\n" -"PO-Revision-Date: 2013-08-01 15:36+0200\n" -"Last-Translator: Mathieu Virbel \n" -"Language-Team: Mathieu Virbel \n" -"Language: Francais\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lang.kv:8 -msgid "Hello World" -msgstr "Bonjour tout le monde" - -#: lang.kv:17 -msgid "French" -msgstr "Francais" - -#: lang.kv:21 -msgid "English" -msgstr "Anglais" diff --git a/src/bitmessagekivy/data/locales/en/LC_MESSAGES/langapp.mo b/src/bitmessagekivy/translations/mo/locales/ar/LC_MESSAGES/langapp.mo similarity index 89% rename from src/bitmessagekivy/data/locales/en/LC_MESSAGES/langapp.mo rename to src/bitmessagekivy/translations/mo/locales/ar/LC_MESSAGES/langapp.mo index 896a32433a73b77e730c100df33f2da93c11e7e3..396080d2c2a6d5904404e014a2a59ad3157ceb8c 100644 GIT binary patch delta 28 jcmZo-ZepHLD`aG#Yha;kWT{|eXk}!nZD49VvHvpwWmgBc delta 12 TcmZo-ZepHLJ8`MV#EBmP9ux(2 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..396080d2c2a6d5904404e014a2a59ad3157ceb8c GIT binary patch literal 386 zcma)%&rZTX5Qi~(>d~`@J$S>xZ3(8Ve_})uNo*vf;l9AIT`jxK?v%)b@OnOr(+i0= zf613Q%r}#npUaD5k8{RcG1tsFbHjAWnKy2ZxpvMe^WZ;mO)%TQ5<|4!DUl9jvcSd% zf+8BbftS`qD7_NN{G)_PKus*dt0q(;lbHmWLpBy!s^zx@ zbfkuNeV&uayN(29&@R@Rd{Cm$R9S4r(uNh*;$f%h`OEGP10T#2>&~>=Ae5+g|CN=P zI#b(NCB>|m{{3^}9iihB4h{c8_)WJ>t*yHk>q>`+^w`oC^5o=or*1L8)UEx-I-^9s IvXu0G0XtZ1(*OVf literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..596f636e46ad074bb43883f18fc3819f3adbe32d GIT binary patch literal 386 zcma)%&q~8U5Qi&z%F(ljJ$S2AHz}25{eu__77UgWdf&FwWVPK5yOUxcq_5|*IJpG8 z`Gb!+%s0c#&*jBwz&T^Cm}};oxna7b%o{f|uAS3o?%gM@31%Buq7TMdCE}5c7T7pX zP=v~C;H9kslun6g{!v2iQ4@>sstJ`yWFkSPkYpl>Rgw+mWGq>P1s+Vdu=nC|=gC;a z6E(gY@|=v`bs#9cwqd8qc_j)>wZT>_jbGtTJnS_+f0@H^F_2`!&+Z1@+#Z@O)E+Sq%suC)(Hk1cH>je4&;b&DRRcI`ICR!XER HL($+DH#Ka? literal 0 HcmV?d00001 diff --git a/src/bitmessagekivy/translations/po/bitmessage_ar.po b/src/bitmessagekivy/translations/po/bitmessage_ar.po new file mode 100644 index 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..325d57db --- /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 00000000..c99d6899 --- /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 "" From 67292f2ea03eb1abd35b98755d0bca2ab9a91d4b Mon Sep 17 00:00:00 2001 From: navjot Date: Wed, 25 Nov 2020 15:41:10 +0530 Subject: [PATCH 2/3] fixed android app file manager crashing issue --- src/buildozer.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buildozer.spec b/src/buildozer.spec index a2f07b14..85343d31 100644 --- a/src/buildozer.spec +++ b/src/buildozer.spec @@ -42,7 +42,7 @@ requirements = openssl, sqlite3, kivy, - pyjnius, + pyjnius==1.2.1, libiconv, libzbar, pillow, From 5be08babf5cd8cae9a2f94ad10eb20789c955eba Mon Sep 17 00:00:00 2001 From: navjot Date: Thu, 26 Nov 2020 19:53:27 +0530 Subject: [PATCH 3/3] fixed flake8 CQ fixed for mpybit, language_script and some other modules --- src/bitmessagekivy/get_platform.py | 2 +- src/bitmessagekivy/language_script.py | 40 +++++++------- src/bitmessagekivy/mpybit.py | 75 ++++++++++++++------------- src/bitmessagemain.py | 1 - src/bmconfigparser.py | 6 ++- src/helper_search.py | 1 - src/main.py | 2 +- src/plugins/menu_qrcode.py | 2 +- 8 files changed, 67 insertions(+), 62 deletions(-) diff --git a/src/bitmessagekivy/get_platform.py b/src/bitmessagekivy/get_platform.py index 72333aff..4392da16 100644 --- a/src/bitmessagekivy/get_platform.py +++ b/src/bitmessagekivy/get_platform.py @@ -46,4 +46,4 @@ if platform not in ("android", "unknown"): 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/language_script.py b/src/bitmessagekivy/language_script.py index d970f035..45c45a4a 100644 --- a/src/bitmessagekivy/language_script.py +++ b/src/bitmessagekivy/language_script.py @@ -41,29 +41,29 @@ windowsLanguageMap = { 'zh': 'Chinese', } -current_dir_path = os.path.abspath(os.path.join(__file__ , '../')) +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, + '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') + translation_command.append(f'{current_dir_path}/kv/{kv_file}.kv') -print('translation_command..............', translation_command) +# 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 +# this command is used to create seperate dir for mo and po file subprocess.run( ['mkdir', '-p', 'translations/po'], stdout=subprocess.DEVNULL) @@ -72,19 +72,23 @@ 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) + ['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) + ['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) + ['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) + ['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/mpybit.py b/src/bitmessagekivy/mpybit.py index a4b72220..176fae71 100644 --- a/src/bitmessagekivy/mpybit.py +++ b/src/bitmessagekivy/mpybit.py @@ -312,7 +312,6 @@ class Inbox(Screen): 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""" self.queryreturn = kivy_helper_search.search_sql( @@ -537,7 +536,7 @@ class MyAddress(Screen): except Exception: meny.canvas.children[9].rgba = [0, 0, 0, 0] if is_enable == 'true' else [0.5, 0.5, 0.5, 0.5] meny.add_widget(AvatarSampleWidget( - source= state.imageDir + '/text_images/{}.png'.format( + source=state.imageDir + '/text_images/{}.png'.format( avatarImageFirstLetter(item['text'].strip())))) meny.bind(on_press=partial( self.myadd_detail, item['secondary_text'], item['text'])) @@ -578,7 +577,7 @@ class MyAddress(Screen): if BMConfigParser().get(fromaddress, 'enabled') == 'true': obj = MyaddDetailPopup() self.address_label = obj.address_label = label - self.text_address = obj.address =fromaddress + self.text_address = obj.address = fromaddress width = .9 if platform == 'android' else .8 self.myadddetail_popup = MDDialog( type="custom", @@ -591,14 +590,15 @@ class MyAddress(Screen): # p.set_address(fromaddress, label) else: width = .8 if platform == 'android' else .55 - dialog_box=MDDialog( - text='Address is not currently active. Please click on Toggle button to active it.', - size_hint=(width, .25), - buttons=[ - MDFlatButton( - text="Ok", on_release=lambda x: callback_for_menu_items("Ok") - ), - ],) + dialog_box = MDDialog( + text='Address is not currently active. Please click on Toggle button to active it.', + 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): @@ -788,7 +788,7 @@ class AddressBook(Screen): buttons=[ MDRaisedButton( text="Send message to", - text_color=state.kivyapp.theme_cls.primary_color, + text_color=state.kivyapp.theme_cls.primary_color, on_release=self.send_message_to, ), MDRaisedButton( @@ -1014,7 +1014,7 @@ class DropDownWidget(BoxLayout): def address_error_message(self, msg): """Generates error message""" width = .8 if platform == 'android' else .55 - dialog_box=MDDialog( + dialog_box = MDDialog( text=msg, size_hint=(width, .25), buttons=[ @@ -1029,7 +1029,6 @@ class DropDownWidget(BoxLayout): dialog_box.dismiss() toast(text_item) - # @staticmethod # def callback_for_menu_items(text_item, *arg): # """Callback of alert box""" @@ -1061,14 +1060,15 @@ class DropDownWidget(BoxLayout): 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 = 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): @@ -1340,8 +1340,8 @@ class Random(Screen): entered_label = str(self.ids.add_random_bx.children[0].ids.lab.text).strip() if not entered_label: self.ids.add_random_bx.children[0].ids.lab.focus = True - #self.ids.lab.error = True - #self.ids.lab.helper_text = 'This field is required' + # self.ids.lab.error = True + # self.ids.lab.helper_text = 'This field is required' streamNumberForAddress = 1 eighteenByteRipe = False nonceTrialsPerByte = 1000 @@ -1697,7 +1697,7 @@ class Trash(Screen): theme_text_color='Custom', text_color=ThemeClsColor) meny._txt_right_pad = dp(70) - img_latter =state.imageDir + '/text_images/{}.png'.format( + img_latter = state.imageDir + '/text_images/{}.png'.format( subject[0].upper() if (subject[0].upper() >= 'A' and subject[0].upper() <= 'Z') else '!') meny.add_widget(AvatarSampleWidget(source=img_latter)) meny.add_widget(AddTimeWidget(item[7])) @@ -1750,7 +1750,7 @@ class Trash(Screen): def delete_confirmation(self): """Show confirmation delete popup""" width = .8 if platform == 'android' else .55 - dialog_box=MDDialog( + dialog_box = MDDialog( text='Are you sure you want to delete this' ' message permanently from trash?', size_hint=(width, .25), @@ -1759,7 +1759,7 @@ class Trash(Screen): text="Yes", on_release=lambda x: callback_for_delete_msg("Yes") ), MDFlatButton( - text="No",on_release=lambda x: callback_for_delete_msg("No"), + text="No", on_release=lambda x: callback_for_delete_msg("No"), ), ],) dialog_box.open() @@ -1893,7 +1893,7 @@ class Setting(Screen): ) def set_caller(self): - self.menu.caller= self.ids.drop_item + self.menu.caller = self.ids.drop_item # self.menu.use_icon_item = False self.menu.target_height = 250 @@ -1903,7 +1903,7 @@ class Setting(Screen): def change_language(self): lang = self.ids.drop_item.current_item - for k,v in self.languages.items(): + for k, v in self.languages.items(): if v == lang: BMConfigParser().set('bitmessagesettings', 'userlocale', k) BMConfigParser().save() @@ -1935,10 +1935,10 @@ class NavigateApp(MDApp): count = 0 manager_open = False file_manager = None - #state.imageDir = os.path.join(os.path.abspath(os.path.join(__file__ ,"../../..")),'images', 'kivy') + # state.imageDir = os.path.join(os.path.abspath(os.path.join(__file__ ,"../../..")),'images', 'kivy') state.imageDir = os.path.join('./images', 'kivy') image_path = state.imageDir - tr = Lang("en") # for changing in franch replace en with fr + tr = Lang("en") # for changing in franch replace en with fr def build(self): """Method builds the widget""" @@ -2038,7 +2038,7 @@ class NavigateApp(MDApp): buttons=[ MDRaisedButton( text="Save", - text_color=self.theme_cls.primary_color, + text_color=self.theme_cls.primary_color, on_release=self.savecontact, ), MDRaisedButton( @@ -2644,6 +2644,7 @@ class NavigateApp(MDApp): """This method is used for opening popup""" instance.open() + class GrashofPopup(BoxLayout): """Moule for save contacts and error messages""" @@ -2710,7 +2711,7 @@ class GrashofPopup(BoxLayout): text = ( "The address is not typed or copied correctly" # " (the checksum failed)." - ) + ) elif status == 'versiontoohigh': text = ( "The version number of this address is higher than this" @@ -3273,7 +3274,7 @@ class Allmails(Screen): text_color=ThemeClsColor) meny._txt_right_pad = dp(70) meny.add_widget(AvatarSampleWidget( - source= state.imageDir +'/text_images/{}.png'.format( + source=state.imageDir + '/text_images/{}.png'.format( avatarImageFirstLetter(body.strip())))) meny.bind(on_press=partial( self.mail_detail, item[5], item[4])) @@ -3554,7 +3555,7 @@ class OneLineListTitle(OneLineListItem): """this method is for displaying dialog box""" self.title_text = title_text width = .8 if platform == 'android' else .55 - self.dialog_box=MDDialog( + self.dialog_box = MDDialog( text=title_text, size_hint=(width, .25), buttons=[ @@ -3562,7 +3563,7 @@ class OneLineListTitle(OneLineListItem): text="Copy", on_release=self.callback_for_copy_title ), MDFlatButton( - text="Cancel",on_release=self.callback_for_copy_title, + text="Cancel", on_release=self.callback_for_copy_title, ), ],) self.dialog_box.open() @@ -3655,7 +3656,7 @@ class ChatList(Screen): text=item[0], secondary_text=item[1], theme_text_color='Custom', text_color=ThemeClsColor) meny.add_widget(AvatarSampleWidget( - source= state.imageDir + '/text_images/{}.png'.format( + source=state.imageDir + '/text_images/{}.png'.format( avatarImageFirstLetter(item[0].strip())))) meny.bind(on_release=partial( self.redirect_to_chat, item[0], item[1])) diff --git a/src/bitmessagemain.py b/src/bitmessagemain.py index 70f01806..2f609074 100755 --- a/src/bitmessagemain.py +++ b/src/bitmessagemain.py @@ -53,7 +53,6 @@ sys.path.insert(0, app_dir) 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 3056741d..a7e1b673 100644 --- a/src/bmconfigparser.py +++ b/src/bmconfigparser.py @@ -126,11 +126,13 @@ class BMConfigParser(configparser.ConfigParser): 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/helper_search.py b/src/helper_search.py index c572c5b1..5b06ca7e 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/main.py b/src/main.py index 3c2aea7b..06b5d987 100644 --- a/src/main.py +++ b/src/main.py @@ -5,4 +5,4 @@ if __name__ == '__main__': 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 4cdedb2d..ea322a49 100644 --- a/src/plugins/menu_qrcode.py +++ b/src/plugins/menu_qrcode.py @@ -39,7 +39,7 @@ class Image(qrcode.image.base.BaseImage): # pylint: disable=abstract-method QtCore.Qt.black) -class QRCodeDialog(QtGui.QDialog): +class QRCodeDialog(QtGui.QDialog): """The dialog""" def __init__(self, parent): super(QRCodeDialog, self).__init__(parent)