Merge pull request #81 from jaicis/Chatroom
implemented script for creating .mo and .po files.
This commit is contained in:
commit
05c7704807
12
src/bitmessagekivy/Makefile
Normal file
12
src/bitmessagekivy/Makefile
Normal file
|
@ -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
|
Binary file not shown.
|
@ -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"
|
||||
environ["KIVY_CAMERA"] = "opencv"
|
||||
|
|
|
@ -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:
|
94
src/bitmessagekivy/language_script.py
Normal file
94
src/bitmessagekivy/language_script.py
Normal file
|
@ -0,0 +1,94 @@
|
|||
import os
|
||||
import subprocess
|
||||
|
||||
KVFILES = [
|
||||
"settings",
|
||||
"popup",
|
||||
"allmails",
|
||||
"draft",
|
||||
"maildetail",
|
||||
"common_widgets",
|
||||
"addressbook",
|
||||
"myaddress",
|
||||
"composer",
|
||||
"payment",
|
||||
"sent",
|
||||
"network",
|
||||
"login",
|
||||
"credits",
|
||||
"trash",
|
||||
"inbox",
|
||||
"chat_room",
|
||||
"chat_list"
|
||||
]
|
||||
|
||||
windowsLanguageMap = {
|
||||
'ar': 'Arabic',
|
||||
'cs': 'Czech',
|
||||
'da': 'Danish',
|
||||
'de': 'German',
|
||||
'en': 'English',
|
||||
'eo': 'Esperanto',
|
||||
'fr': 'French',
|
||||
'it': 'Italian',
|
||||
'ja': 'Japanese',
|
||||
'nl': 'Dutch',
|
||||
'no': 'Norwegian',
|
||||
'pl': 'Polish',
|
||||
'pt': 'Portuguese',
|
||||
'ru': 'Russian',
|
||||
'sk': 'Slovak',
|
||||
'zh': 'Chinese',
|
||||
}
|
||||
|
||||
current_dir_path = os.path.abspath(os.path.join(__file__, '../'))
|
||||
main_file = os.path.join(current_dir_path, 'mpybit.py')
|
||||
kv_file = os.path.join(current_dir_path, 'main.kv')
|
||||
|
||||
print("Create .po files for Project")
|
||||
|
||||
translation_command = [
|
||||
'xgettext',
|
||||
'-Lpython',
|
||||
'--output=messages.pot',
|
||||
'--from-code=UTF-8',
|
||||
main_file,
|
||||
kv_file
|
||||
]
|
||||
|
||||
for kv_file in KVFILES:
|
||||
translation_command.append(f'{current_dir_path}/kv/{kv_file}.kv')
|
||||
|
||||
# print('translation_command..............', translation_command)
|
||||
subprocess.run(translation_command, stdout=subprocess.DEVNULL)
|
||||
# print("The exit code1 was: %d" % list_files.returncode)
|
||||
|
||||
# this command is used to create seperate dir for mo and po file
|
||||
subprocess.run(
|
||||
['mkdir', '-p', 'translations/po'], stdout=subprocess.DEVNULL)
|
||||
|
||||
|
||||
for key in windowsLanguageMap.keys():
|
||||
subprocess.run(
|
||||
['touch', f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL)
|
||||
subprocess.run(
|
||||
['msgmerge', '--update', '--no-fuzzy-matching', '--backup=off',
|
||||
f'{current_dir_path}/translations/po/bitmessage_{key}.po', f'{current_dir_path}/messages.pot'],
|
||||
stdout=subprocess.DEVNULL
|
||||
)
|
||||
|
||||
print("Create .mo file from .po file")
|
||||
|
||||
for key in windowsLanguageMap.keys():
|
||||
subprocess.run(
|
||||
['mkdir', '-p', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES'],
|
||||
stdout=subprocess.DEVNULL
|
||||
)
|
||||
subprocess.run(
|
||||
['touch', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo'],
|
||||
stdout=subprocess.DEVNULL
|
||||
)
|
||||
subprocess.run(
|
||||
['msgfmt', '-c', '-o', f'{current_dir_path}/translations/mo/locales/{key}/LC_MESSAGES/langapp.mo',
|
||||
f'{current_dir_path}/translations/po/bitmessage_{key}.po'], stdout=subprocess.DEVNULL
|
||||
)
|
|
@ -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'
|
||||
|
|
368
src/bitmessagekivy/messages.pot
Normal file
368
src/bitmessagekivy/messages.pot
Normal file
|
@ -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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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 ""
|
|
@ -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
|
||||
|
||||
|
@ -309,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(
|
||||
|
@ -534,14 +536,14 @@ 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']))
|
||||
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
|
||||
|
@ -575,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",
|
||||
|
@ -588,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):
|
||||
|
@ -785,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(
|
||||
|
@ -1011,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=[
|
||||
|
@ -1026,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"""
|
||||
|
@ -1058,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):
|
||||
|
@ -1337,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
|
||||
|
@ -1694,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]))
|
||||
|
@ -1747,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),
|
||||
|
@ -1756,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()
|
||||
|
@ -1827,26 +1830,70 @@ 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):
|
||||
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
|
||||
|
||||
|
@ -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"""
|
||||
|
@ -1873,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"""
|
||||
|
@ -1976,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(
|
||||
|
@ -2582,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"""
|
||||
|
||||
|
@ -2648,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"
|
||||
|
@ -3211,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]))
|
||||
|
@ -3492,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=[
|
||||
|
@ -3500,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()
|
||||
|
@ -3593,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]))
|
||||
|
|
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
367
src/bitmessagekivy/translations/po/bitmessage_ar.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ar.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_cs.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_cs.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_da.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_da.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_de.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_de.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_en.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_en.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_eo.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_eo.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_fr.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_fr.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_it.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_it.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_ja.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ja.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_nl.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_nl.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_no.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_no.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_pl.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_pl.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_pt.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_pt.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_ru.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_ru.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_sk.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_sk.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
367
src/bitmessagekivy/translations/po/bitmessage_zh.po
Normal file
367
src/bitmessagekivy/translations/po/bitmessage_zh.po
Normal file
|
@ -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 <mat@kivy.org>, 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 <mat@kivy.org>\n"
|
||||
"Language-Team: Mathieu Virbel <mat@kivy.org>\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 ""
|
|
@ -53,7 +53,6 @@ sys.path.insert(0, app_dir)
|
|||
depends.check_dependencies()
|
||||
|
||||
|
||||
|
||||
def _fixSocket():
|
||||
if sys.platform.startswith('linux'):
|
||||
socket.SO_BINDTODEVICE = 25
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -42,7 +42,7 @@ requirements =
|
|||
openssl,
|
||||
sqlite3,
|
||||
kivy,
|
||||
pyjnius,
|
||||
pyjnius==1.2.1,
|
||||
libiconv,
|
||||
libzbar,
|
||||
pillow,
|
||||
|
|
|
@ -79,7 +79,6 @@ def search_sql(
|
|||
return sqlQuery(sqlStatementBase, sqlArguments)
|
||||
|
||||
|
||||
|
||||
def check_match(
|
||||
toAddress, fromAddress, subject, message, where=None, what=None):
|
||||
"""
|
||||
|
|
|
@ -5,4 +5,4 @@ if __name__ == '__main__':
|
|||
state.kivy = True
|
||||
print("Kivy Loading......")
|
||||
from bitmessagemain import main
|
||||
main()
|
||||
main()
|
||||
|
|
|
@ -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)
|
||||
|
|
Reference in New Issue
Block a user